From d6882bab46d7940553db21ebb7d8650b315523c4 Mon Sep 17 00:00:00 2001 From: arsabutispik Date: Fri, 2 Jul 2021 12:39:38 +0300 Subject: [PATCH 01/79] artifacts --- src/managers/artifactsManager.ts | 53 ++++++++++++++++++++++++++++++++ src/structures/action.ts | 19 ++++++++++++ 2 files changed, 72 insertions(+) create mode 100644 src/managers/artifactsManager.ts create mode 100644 src/structures/action.ts diff --git a/src/managers/artifactsManager.ts b/src/managers/artifactsManager.ts new file mode 100644 index 0000000..1a68775 --- /dev/null +++ b/src/managers/artifactsManager.ts @@ -0,0 +1,53 @@ +import { Response } from "node-fetch"; +import Client from "../structures/client"; +import Manager from "./manager"; + +class ArtifactsManager extends Manager { + owner: string; + repo: string; + constructor({ client }: { client: Client }, {owner, repo}: {owner: string, repo: string}){ + super({ client }) + this.owner = owner; + this.repo = repo; + } + async list(options: { + page?: number + per_page?: number + }) { + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts`, {query: options}) + .get() + .then(async (res: Response) => { + return await res.json() + }) + .catch((e: any) => { + throw new Error(e); + }) + } + async get(artifactId: number) { + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) + .get() + .then(async (res: Response) => { + return await res.json() + }) + } + async delete(artifactId: number){ + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) + .delete() + .then(async (res: Response) => { + return await res.json() + }) + } + async download(artifactId: number){ + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}/zip`) + .get() + .then(async (res: Response) => { + return await res.json() + }) + } +} + +export default ArtifactsManager; \ No newline at end of file diff --git a/src/structures/action.ts b/src/structures/action.ts new file mode 100644 index 0000000..d612af9 --- /dev/null +++ b/src/structures/action.ts @@ -0,0 +1,19 @@ +import ArtifactsManager from '../managers/artifactsManager'; +import Base from './base'; +import Client from "./client"; + +class Actions extends Base { + artifacts: ArtifactsManager; + owner: string; + repo: string; + constructor(client: Client, {owner, repo}: {owner: string, repo: string}){ + super(client); + this.owner = owner; + this.repo = repo; + this.artifacts = new ArtifactsManager({client: this.client}, {owner: this.owner, repo: this.repo}); + } + + +} + +export default Actions; \ No newline at end of file From 7ad4d3be2937baedc5eca24719091ab1031f0210 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Fri, 2 Jul 2021 15:35:59 +0530 Subject: [PATCH 02/79] fix(artifactmanager): minor fix and renamed action.ts to actions.ts --- src/managers/artifactsManager.ts | 96 ++++++++++++------------ src/structures/{action.ts => actions.ts} | 0 src/structures/artifact.ts | 0 src/utils/apidata.ts | 80 ++++++++++++++++++++ 4 files changed, 130 insertions(+), 46 deletions(-) rename src/structures/{action.ts => actions.ts} (100%) create mode 100644 src/structures/artifact.ts create mode 100644 src/utils/apidata.ts diff --git a/src/managers/artifactsManager.ts b/src/managers/artifactsManager.ts index 1a68775..1b5a819 100644 --- a/src/managers/artifactsManager.ts +++ b/src/managers/artifactsManager.ts @@ -3,51 +3,55 @@ import Client from "../structures/client"; import Manager from "./manager"; class ArtifactsManager extends Manager { - owner: string; - repo: string; - constructor({ client }: { client: Client }, {owner, repo}: {owner: string, repo: string}){ - super({ client }) - this.owner = owner; - this.repo = repo; - } - async list(options: { - page?: number - per_page?: number - }) { - return await this.client.api - .req(`/repos/${this.owner}/${this.repo}/actions/artifacts`, {query: options}) - .get() - .then(async (res: Response) => { - return await res.json() - }) - .catch((e: any) => { - throw new Error(e); - }) - } - async get(artifactId: number) { - return await this.client.api - .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) - .get() - .then(async (res: Response) => { - return await res.json() - }) - } - async delete(artifactId: number){ - return await this.client.api - .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) - .delete() - .then(async (res: Response) => { - return await res.json() - }) - } - async download(artifactId: number){ - return await this.client.api - .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}/zip`) - .get() - .then(async (res: Response) => { - return await res.json() - }) - } + owner: string; + repo: string; + constructor( + { client }: { client: Client }, + { owner, repo }: { owner: string; repo: string } + ) { + super({ client }); + this.owner = owner; + this.repo = repo; + } + async list(options: { page?: number; perPage?: number }) { + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts`, { + query: options, + }) + .get() + .then((res: Response) => { + return res.json(); + }) + .catch((e: any) => { + throw new Error(e); + }); + } + async get(artifactId: number) { + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) + .get() + .then((res: Response) => { + return res.json(); + }); + } + async delete(artifactId: number) { + return await this.client.api + .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) + .delete() + .then((res: Response) => { + return res.json(); + }); + } + async download(artifactId: number) { + return await this.client.api + .req( + `/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}/zip` + ) + .get() + .then((res: Response) => { + return res.json(); + }); + } } -export default ArtifactsManager; \ No newline at end of file +export default ArtifactsManager; diff --git a/src/structures/action.ts b/src/structures/actions.ts similarity index 100% rename from src/structures/action.ts rename to src/structures/actions.ts diff --git a/src/structures/artifact.ts b/src/structures/artifact.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/utils/apidata.ts b/src/utils/apidata.ts new file mode 100644 index 0000000..a0d70dc --- /dev/null +++ b/src/utils/apidata.ts @@ -0,0 +1,80 @@ +import User from "../structures/user"; + +export interface GistData { + url: string; + forks_url: string; + commits_url: string; + id: string; + node_id: string; + git_pull_url: string; + git_push_url: string; + html_url: string; + files: Record< + string, + { + filename: string; + type: string; + language: string | null; + raw_url: string; + size: number; + } + >; + public: boolean; + created_at: string; + updated_at: string; + description: string; + comments: number; + user: null | any; + comments_url: string; + owner: User; + forks: any[]; + history: [ + { + user: User; + version: string; + committed_at: string; + change_status: { + total: number; + additions: number; + deletions: number; + }; + url: string; + } + ]; + truncated: boolean; +} + +export interface UserData { + login: "GmBodhi"; + id: 71921036; + node_id: "MDQ6VXNlcjcxOTIxMDM2"; + avatar_url: "https://avatars.githubusercontent.com/u/71921036?v=4"; + gravatar_id: ""; + url: "https://api.github.com/users/GmBodhi"; + html_url: "https://github.com/GmBodhi"; + followers_url: "https://api.github.com/users/GmBodhi/followers"; + following_url: "https://api.github.com/users/GmBodhi/following{/other_user}"; + gists_url: "https://api.github.com/users/GmBodhi/gists{/gist_id}"; + starred_url: "https://api.github.com/users/GmBodhi/starred{/owner}{/repo}"; + subscriptions_url: "https://api.github.com/users/GmBodhi/subscriptions"; + organizations_url: "https://api.github.com/users/GmBodhi/orgs"; + repos_url: "https://api.github.com/users/GmBodhi/repos"; + events_url: "https://api.github.com/users/GmBodhi/events{/privacy}"; + received_events_url: "https://api.github.com/users/GmBodhi/received_events"; + type: "User"; + site_admin: false; + name: null; + company: "@Exim-Studio "; + blog: "http://eximstudio.com"; + location: "Solar System"; + email: null; + hireable: null; + bio: "I have nothing to write here..."; + twitter_username: "GmBodhi"; + public_repos: 24; + public_gists: 0; + followers: 2; + following: 2; + created_at: "2020-09-26T07:41:58Z"; + updated_at: "2021-07-01T05:00:49Z"; +} From 0209caf5278ba99c842188c1bd3679d9a4fc6cfa Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Fri, 2 Jul 2021 16:43:06 +0530 Subject: [PATCH 03/79] feat(rawdata): raw data from api (minor updates) --- src/utils/apidata.ts | 80 -------------------------------------------- src/utils/rawdata.ts | 80 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 80 insertions(+), 80 deletions(-) delete mode 100644 src/utils/apidata.ts create mode 100644 src/utils/rawdata.ts diff --git a/src/utils/apidata.ts b/src/utils/apidata.ts deleted file mode 100644 index a0d70dc..0000000 --- a/src/utils/apidata.ts +++ /dev/null @@ -1,80 +0,0 @@ -import User from "../structures/user"; - -export interface GistData { - url: string; - forks_url: string; - commits_url: string; - id: string; - node_id: string; - git_pull_url: string; - git_push_url: string; - html_url: string; - files: Record< - string, - { - filename: string; - type: string; - language: string | null; - raw_url: string; - size: number; - } - >; - public: boolean; - created_at: string; - updated_at: string; - description: string; - comments: number; - user: null | any; - comments_url: string; - owner: User; - forks: any[]; - history: [ - { - user: User; - version: string; - committed_at: string; - change_status: { - total: number; - additions: number; - deletions: number; - }; - url: string; - } - ]; - truncated: boolean; -} - -export interface UserData { - login: "GmBodhi"; - id: 71921036; - node_id: "MDQ6VXNlcjcxOTIxMDM2"; - avatar_url: "https://avatars.githubusercontent.com/u/71921036?v=4"; - gravatar_id: ""; - url: "https://api.github.com/users/GmBodhi"; - html_url: "https://github.com/GmBodhi"; - followers_url: "https://api.github.com/users/GmBodhi/followers"; - following_url: "https://api.github.com/users/GmBodhi/following{/other_user}"; - gists_url: "https://api.github.com/users/GmBodhi/gists{/gist_id}"; - starred_url: "https://api.github.com/users/GmBodhi/starred{/owner}{/repo}"; - subscriptions_url: "https://api.github.com/users/GmBodhi/subscriptions"; - organizations_url: "https://api.github.com/users/GmBodhi/orgs"; - repos_url: "https://api.github.com/users/GmBodhi/repos"; - events_url: "https://api.github.com/users/GmBodhi/events{/privacy}"; - received_events_url: "https://api.github.com/users/GmBodhi/received_events"; - type: "User"; - site_admin: false; - name: null; - company: "@Exim-Studio "; - blog: "http://eximstudio.com"; - location: "Solar System"; - email: null; - hireable: null; - bio: "I have nothing to write here..."; - twitter_username: "GmBodhi"; - public_repos: 24; - public_gists: 0; - followers: 2; - following: 2; - created_at: "2020-09-26T07:41:58Z"; - updated_at: "2021-07-01T05:00:49Z"; -} diff --git a/src/utils/rawdata.ts b/src/utils/rawdata.ts new file mode 100644 index 0000000..cd6e02f --- /dev/null +++ b/src/utils/rawdata.ts @@ -0,0 +1,80 @@ +import User from "../structures/user"; + +export interface GistData { + url: string; + forks_url: string; + commits_url: string; + id: string; + node_id: string; + git_pull_url: string; + git_push_url: string; + html_url: string; + files: Record< + string, + { + filename: string; + type: string; + language: string | null; + raw_url: string; + size: number; + } + >; + public: boolean; + created_at: string; + updated_at: string; + description: string; + comments: number; + user: null | any; + comments_url: string; + owner: User; + forks: any[]; + history: [ + { + user: User; + version: string; + committed_at: string; + change_status: { + total: number; + additions: number; + deletions: number; + }; + url: string; + } + ]; + truncated: boolean; +} + +export interface UserData { + login: string; + id: number; + node_id: string; + avatar_url: string; + gravatar_id: string; + url: string; + html_url: string; + followers_url: string; + following_url: string; + gists_url: string; + starred_url: string; + subscriptions_url: string; + organizations_url: string; + repos_url: string; + events_url: string; + received_events_url: string; + type: string; + site_admin: boolean; + name: null | string; + company: string; + blog: string; + location: string; + email: null; + hireable: null; + bio: string; + twitter_username: string | null; + public_repos: number; + public_gists: number; + followers: number; + following: number; + created_at: string; + updated_at: string; +} From 9a7e113e96b2f3bfa0e9c4757668f018c93b552b Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Fri, 2 Jul 2021 17:04:02 +0530 Subject: [PATCH 04/79] fix(rawData): minor fixes and added types --- src/structures/clientuser.ts | 15 ++++---- src/structures/user.ts | 51 +++++++++++++------------- src/utils/rawdata.ts | 69 +++++++++++++++++++++--------------- 3 files changed, 75 insertions(+), 60 deletions(-) diff --git a/src/structures/clientuser.ts b/src/structures/clientuser.ts index f502670..4acf8db 100644 --- a/src/structures/clientuser.ts +++ b/src/structures/clientuser.ts @@ -3,6 +3,7 @@ import Blocks from "../structures/blocks"; import Emails from "./emails"; import Client from "./client"; import { Response } from "node-fetch"; +import { ClientUserData } from "../utils/rawdata"; class ClientUser extends User { privateGists: string; @@ -13,15 +14,15 @@ class ClientUser extends User { twoFactorAuthentication: boolean; blocks: Blocks; emails: Emails; - plan?: { - name: string; - space: number; - privateRepos: number; - collaborators: number; + plan: { + name?: string; + space?: number; + privateRepos?: number; + collaborators?: number; }; - constructor(data: any, { client }: { client: Client }) { + constructor(data: ClientUserData, { client }: { client: Client }) { super(data, { client }); - let { plan = {} }: any = data; + let { plan = {} }: { plan: ClientUserData["plan"] } = data; this.privateGists = data.private_gists; this.totalPrivateRepos = data.total_private_repos; this.ownedPrivateRepos = data.owned_private_repos; diff --git a/src/structures/user.ts b/src/structures/user.ts index e7043d2..48559f6 100644 --- a/src/structures/user.ts +++ b/src/structures/user.ts @@ -1,3 +1,4 @@ +import { UserData } from "../utils/rawdata"; import Client from "./client"; /** @@ -17,31 +18,31 @@ class User { gravatarId: string; url: string; htmlUrl: string; - followingUrl: string; - followersUrl: string; - gistsUrl: string; - starredUrl: string; - subscriptionsUrl: string; - organizationsUrl: string; - reposUrl: string; - eventsUrl: string; - receivedEventsUrl: string; - type: string; - siteAdmin: boolean; - company: string; - blog: string; - location: string; - email: string; - hireable: boolean; - bio: string; - twitterUsername: string; - publicRepos: number; - publicGists: number; - followers: number; - following: number; - createdAt: string; - updatedAt: string; - constructor(data: any = {}, { client }: { client: Client }) { + followingUrl?: string; + followersUrl?: string; + gistsUrl?: string; + starredUrl?: string; + subscriptionsUrl?: string; + organizationsUrl?: string; + reposUrl?: string; + eventsUrl?: string; + receivedEventsUrl?: string; + type?: string; + siteAdmin?: boolean; + company?: string; + blog?: string; + location?: string; + email?: string | null; + hireable?: boolean | null; + bio?: string; + twitterUsername?: string | null; + publicRepos?: number; + publicGists?: number; + followers?: number; + following?: number; + createdAt?: string; + updatedAt?: string; + constructor(data: UserData, { client }: { client: Client }) { this.client = client; this.login = data.login; this.id = data.id; diff --git a/src/utils/rawdata.ts b/src/utils/rawdata.ts index cd6e02f..c2476b3 100644 --- a/src/utils/rawdata.ts +++ b/src/utils/rawdata.ts @@ -1,5 +1,3 @@ -import User from "../structures/user"; - export interface GistData { url: string; forks_url: string; @@ -26,11 +24,11 @@ export interface GistData { comments: number; user: null | any; comments_url: string; - owner: User; + owner: UserData; forks: any[]; history: [ { - user: User; + user: UserData; version: string; committed_at: string; change_status: { @@ -52,29 +50,44 @@ export interface UserData { gravatar_id: string; url: string; html_url: string; - followers_url: string; - following_url: string; - gists_url: string; - starred_url: string; - subscriptions_url: string; - organizations_url: string; - repos_url: string; - events_url: string; - received_events_url: string; - type: string; - site_admin: boolean; + followers_url?: string; + following_url?: string; + gists_url?: string; + starred_url?: string; + subscriptions_url?: string; + organizations_url?: string; + repos_url?: string; + events_url?: string; + received_events_url?: string; + type?: string; + site_admin?: boolean; name: null | string; - company: string; - blog: string; - location: string; - email: null; - hireable: null; - bio: string; - twitter_username: string | null; - public_repos: number; - public_gists: number; - followers: number; - following: number; - created_at: string; - updated_at: string; + company?: string; + blog?: string; + location?: string; + email?: null; + hireable?: null; + bio?: string; + twitter_username?: string | null; + public_repos?: number; + public_gists?: number; + followers?: number; + following?: number; + created_at?: string; + updated_at?: string; +} + +export interface ClientUserData extends UserData { + plan: { + name?: string; + space?: number; + private_repos?: number; + collaborators?: number; + }; + two_factor_authentication: boolean; + collaborators: number; + disk_usage: number; + total_private_repos: number; + owned_private_repos: number; + private_gists: string; } From fbcdaffdbed0f08e2a2efb2e9fca6d07b79992a9 Mon Sep 17 00:00:00 2001 From: Crispy <61794525+Crispy-Cream@users.noreply.github.com> Date: Fri, 2 Jul 2021 18:37:50 -0500 Subject: [PATCH 05/79] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f0fb6b6..453b317 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ -# github-api +# Github-api Information -**Still in Development.** +**This package is still in development.** A wrapper for interacting with GitHub's api.
-[Discord](https://discord.gg/U8c8H3sRZW) +Join our [Discord server](https://discord.gg/U8c8H3sRZW)! +

+Documentation coming soon! Check progress [here](https://github.com/GmBodhi/github-api/issues/8) - Crispy From eb95898890efa71b8a53c77b0aaa7f353dd43118 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 3 Jul 2021 06:13:34 +0530 Subject: [PATCH 06/79] fix(blocks): minor --- package.json | 9 ++-- src/managers/issuemanager.ts | 5 +++ src/structures/blocks.ts | 7 ++- src/utils/constants.ts | 7 +++ src/utils/rest.ts | 4 +- yarn.lock | 83 +++--------------------------------- 6 files changed, 30 insertions(+), 85 deletions(-) diff --git a/package.json b/package.json index 7ed0994..3aa5a67 100644 --- a/package.json +++ b/package.json @@ -12,15 +12,14 @@ "license": "ISC", "dependencies": { "@discordjs/collection": "^0.1.6", - "@types/node-fetch": "^2.5.10", - "chai": "^4.3.4", - "mocha": "^9.0.0", "node-fetch": "^2.6.1" }, "devDependencies": { - "@types/node": "^15.12.2", + "chai": "^4.3.4", + "mocha": "^9.0.0", + "@types/node-fetch": "^2.5.10", + "@types/node": "^15.14.0", "jsdoc-json": "^2.0.2", - "ts-node": "^10.0.0", "tslib": "^2.3.0", "typedoc": "^0.21.2", "typescript": "^4.3.2" diff --git a/src/managers/issuemanager.ts b/src/managers/issuemanager.ts index 9f12d66..8148106 100644 --- a/src/managers/issuemanager.ts +++ b/src/managers/issuemanager.ts @@ -7,6 +7,11 @@ class IssueManager extends Manager { super({ client, url }); } + /** + * fetch the issue using it's number + * @param {number} id - issue number + * @param {FetchOptions} options + */ async fetch(id: number, options: FetchOptions = {}) {} } diff --git a/src/structures/blocks.ts b/src/structures/blocks.ts index f37f828..845d83a 100644 --- a/src/structures/blocks.ts +++ b/src/structures/blocks.ts @@ -1,5 +1,6 @@ import { Response } from "node-fetch"; import GHError from "../utils/error"; +import { UserData } from "../utils/rawdata"; import Base from "./base"; import Client from "./client"; import User from "./user"; @@ -14,8 +15,10 @@ class Blocks extends Base { .req("user/blocks") .get() .then(async (r: Response) => { - const body = await r.json(); - body.forEach((u: object) => (u = new User(r, { client: this.client }))); + const body: User[] = []; + (await r.json()).forEach((u: UserData) => + body.push(new User(u, { client: this.client })) + ); return body; }) .catch((e: any) => { diff --git a/src/utils/constants.ts b/src/utils/constants.ts index a48265d..96b93f7 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -2,3 +2,10 @@ export interface FetchOptions { cache?: boolean; force?: boolean; } + +/** + * Options for fetching the api + * @typedef {Object} FetchOptions + * @property {boolean} cache - returned resource should be cached or not + * @property {boolean} force - Force skip the cache check before requesting the api + */ diff --git a/src/utils/rest.ts b/src/utils/rest.ts index 8c7c4fb..c6a965d 100644 --- a/src/utils/rest.ts +++ b/src/utils/rest.ts @@ -55,8 +55,8 @@ class RestManager { patch: Function; } { const { query = {}, headers = {}, body = {}, _ } = options ?? {}; - headers["accept"] = "application/vnd.github.v3+json"; - headers["Authorization"] = `token ${this.client.token}`; + headers["accept"] ??= "application/vnd.github.v3+json"; + headers["Authorization"] ??= `token ${this.client.token}`; return { post: () => makeReq({ path, query, body, headers, method: "post", _ }), get: () => makeReq({ path, query, body, headers, method: "get", _ }), diff --git a/yarn.lock b/yarn.lock index 8d5ae0a..000455e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,26 +7,6 @@ resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-0.1.6.tgz#9e9a7637f4e4e0688fd8b2b5c63133c91607682c" integrity sha512-utRNxnd9kSS2qhyivo9lMlt5qgAUasH2gb7BEOn6p0efFh24gjGomHzWKMAPn2hEReOPQZCJaRKoURwRotKucQ== -"@tsconfig/node10@^1.0.7": - version "1.0.8" - resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" - integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== - -"@tsconfig/node12@^1.0.7": - version "1.0.8" - resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.8.tgz#a883d62f049a64fea1e56a6bbe66828d11c6241b" - integrity sha512-LM6XwBhjZRls1qJGpiM/It09SntEwe9M0riXRfQ9s6XlJQG0JPGl92ET18LtGeYh/GuOtafIXqwZeqLOd0FNFQ== - -"@tsconfig/node14@^1.0.0": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" - integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== - -"@tsconfig/node16@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.1.tgz#a6ca6a9a0ff366af433f42f5f0e124794ff6b8f1" - integrity sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA== - "@types/node-fetch@^2.5.10": version "2.5.10" resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.10.tgz#9b4d4a0425562f9fcea70b12cb3fcdd946ca8132" @@ -35,11 +15,16 @@ "@types/node" "*" form-data "^3.0.0" -"@types/node@*", "@types/node@^15.12.2": +"@types/node@*": version "15.12.2" resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.2.tgz#1f2b42c4be7156ff4a6f914b2fb03d05fa84e38d" integrity sha512-zjQ69G564OCIWIOHSXyQEEDpdpGl+G348RAKY0XXy9Z5kU9Vzv1GMNnkar/ZJ8dzXB3COzD9Mo9NtRZ4xfgUww== +"@types/node@^15.14.0": + version "15.14.0" + resolved "https://registry.yarnpkg.com/@types/node/-/node-15.14.0.tgz#74dbf254fb375551a9d2a71faf6b9dbc2178dc53" + integrity sha512-um/+/ip3QZmwLfIkWZSNtQIJNVAqrJ92OkLMeuZrjZMTAJniI7fh8N8OICyDhAJ2mzgk/fmYFo72jRr5HyZ1EQ== + "@ungap/promise-all-settled@1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" @@ -75,11 +60,6 @@ anymatch@~3.1.1: normalize-path "^3.0.0" picomatch "^2.0.4" -arg@^4.1.0: - version "4.1.3" - resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" - integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== - argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" @@ -125,11 +105,6 @@ browser-stdout@1.3.1: resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - camelcase@^6.0.0: version "6.2.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" @@ -208,11 +183,6 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= -create-require@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" - integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== - debug@4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" @@ -242,11 +212,6 @@ diff@5.0.0: resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== -diff@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" - integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== - emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -470,11 +435,6 @@ lunr@^2.3.9: resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== -make-error@^1.1.1: - version "1.3.6" - resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" - integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== - marked@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" @@ -658,15 +618,7 @@ shiki@^0.9.3: onigasm "^2.2.5" vscode-textmate "5.2.0" -source-map-support@^0.5.17: - version "0.5.19" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" - integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0, source-map@^0.6.1: +source-map@^0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -728,22 +680,6 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" -ts-node@^10.0.0: - version "10.0.0" - resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.0.0.tgz#05f10b9a716b0b624129ad44f0ea05dac84ba3be" - integrity sha512-ROWeOIUvfFbPZkoDis0L/55Fk+6gFQNZwwKPLinacRl6tsxstTF1DbAcLKkovwnpKMVvOMHP1TIbnwXwtLg1gg== - dependencies: - "@tsconfig/node10" "^1.0.7" - "@tsconfig/node12" "^1.0.7" - "@tsconfig/node14" "^1.0.0" - "@tsconfig/node16" "^1.0.1" - arg "^4.1.0" - create-require "^1.1.0" - diff "^4.0.1" - make-error "^1.1.1" - source-map-support "^0.5.17" - yn "3.1.1" - tslib@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" @@ -870,11 +806,6 @@ yargs@16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" -yn@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" - integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== - yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" From e57af10512bd2d25b9cd194436a6e02e2fccc95d Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Sat, 3 Jul 2021 10:44:54 +0530 Subject: [PATCH 07/79] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 453b317..168a1db 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **This package is still in development.** -A wrapper for interacting with GitHub's api.
+An Object-Oriented wrapper for interacting with GitHub's api.
Join our [Discord server](https://discord.gg/U8c8H3sRZW)!

Documentation coming soon! Check progress [here](https://github.com/GmBodhi/github-api/issues/8) - Crispy From e99daa47507b4ee45812a562fe9c5325408063ae Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 3 Jul 2021 13:05:12 +0530 Subject: [PATCH 08/79] feat(gist): starter gist class and forkmanager. --- src/managers/forkmanager.ts | 10 ++++++++++ src/structures/gist.ts | 23 +++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 src/managers/forkmanager.ts diff --git a/src/managers/forkmanager.ts b/src/managers/forkmanager.ts new file mode 100644 index 0000000..85864d9 --- /dev/null +++ b/src/managers/forkmanager.ts @@ -0,0 +1,10 @@ +import { Manager } from "."; +import { Client } from "../structures"; + +class ForkManager extends Manager { + constructor(client: Client, { url }: { url: string }) { + super({ client, url }); + } +} + +export default ForkManager; diff --git a/src/structures/gist.ts b/src/structures/gist.ts index e69de29..87b3d92 100644 --- a/src/structures/gist.ts +++ b/src/structures/gist.ts @@ -0,0 +1,23 @@ +import ForkManager from "../managers/forkmanager"; +import { GistData } from "../utils/rawdata"; +import Base from "./base"; +import Client from "./client"; + +class Gist extends Base { + private readonly data: GistData; + public readonly forks: ForkManager; + constructor(data: GistData, { client }: { client: Client }) { + super(client); + this.data = data; + this.forks = new ForkManager(client, { url: data.forks_url }); + } + + get url() { + return this.data.url; + } + get htmlUrl() { + return this.data.html_url; + } +} + +export default Gist; From bd798a37f0409d408c7bb0e00bcd6af43e569ace Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Sun, 4 Jul 2021 07:48:53 +0530 Subject: [PATCH 09/79] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 168a1db..3c81347 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ **This package is still in development.** An Object-Oriented wrapper for interacting with GitHub's api.
+Fast as hell
Join our [Discord server](https://discord.gg/U8c8H3sRZW)!

Documentation coming soon! Check progress [here](https://github.com/GmBodhi/github-api/issues/8) - Crispy From 4ff8a2c29b873ae0bde299399769c8fa3cb389f9 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 5 Jul 2021 12:53:48 +0530 Subject: [PATCH 10/79] feat(rawdata): Added rawdata types dependency --- package.json | 7 ++- src/managers/forkmanager.ts | 2 +- src/structures/clientuser.ts | 21 +++---- src/utils/rawdata.ts | 114 +++++++---------------------------- yarn.lock | 12 ++++ 5 files changed, 49 insertions(+), 107 deletions(-) diff --git a/package.json b/package.json index 3aa5a67..0d473b9 100644 --- a/package.json +++ b/package.json @@ -15,11 +15,12 @@ "node-fetch": "^2.6.1" }, "devDependencies": { - "chai": "^4.3.4", - "mocha": "^9.0.0", - "@types/node-fetch": "^2.5.10", + "@octokit/types": "^6.18.0", "@types/node": "^15.14.0", + "@types/node-fetch": "^2.5.10", + "chai": "^4.3.4", "jsdoc-json": "^2.0.2", + "mocha": "^9.0.0", "tslib": "^2.3.0", "typedoc": "^0.21.2", "typescript": "^4.3.2" diff --git a/src/managers/forkmanager.ts b/src/managers/forkmanager.ts index 85864d9..5d5dce2 100644 --- a/src/managers/forkmanager.ts +++ b/src/managers/forkmanager.ts @@ -2,7 +2,7 @@ import { Manager } from "."; import { Client } from "../structures"; class ForkManager extends Manager { - constructor(client: Client, { url }: { url: string }) { + constructor(client: Client, { url }: { url?: string }) { super({ client, url }); } } diff --git a/src/structures/clientuser.ts b/src/structures/clientuser.ts index 4acf8db..08ca77e 100644 --- a/src/structures/clientuser.ts +++ b/src/structures/clientuser.ts @@ -6,12 +6,11 @@ import { Response } from "node-fetch"; import { ClientUserData } from "../utils/rawdata"; class ClientUser extends User { - privateGists: string; - totalPrivateRepos: number; - ownedPrivateRepos: number; - diskUsage: number; - collaborators: number; - twoFactorAuthentication: boolean; + privateGists?: number; + totalPrivateRepos?: number; + ownedPrivateRepos?: number; + diskUsage?: number; + collaborators?: number; blocks: Blocks; emails: Emails; plan: { @@ -22,20 +21,18 @@ class ClientUser extends User { }; constructor(data: ClientUserData, { client }: { client: Client }) { super(data, { client }); - let { plan = {} }: { plan: ClientUserData["plan"] } = data; this.privateGists = data.private_gists; this.totalPrivateRepos = data.total_private_repos; this.ownedPrivateRepos = data.owned_private_repos; this.diskUsage = data.disk_usage; this.collaborators = data.collaborators; - this.twoFactorAuthentication = data.two_factor_authentication; this.blocks = new Blocks(client); this.emails = new Emails(client); this.plan = { - name: plan.name, - space: plan.space, - privateRepos: plan.private_repos, - collaborators: plan.collaborators, + name: data.plan?.name, + space: data.plan?.space, + privateRepos: data.plan?.private_repos, + collaborators: data.plan?.collaborators, }; } diff --git a/src/utils/rawdata.ts b/src/utils/rawdata.ts index c2476b3..5b8d2df 100644 --- a/src/utils/rawdata.ts +++ b/src/utils/rawdata.ts @@ -1,93 +1,25 @@ -export interface GistData { - url: string; - forks_url: string; - commits_url: string; - id: string; - node_id: string; - git_pull_url: string; - git_push_url: string; - html_url: string; - files: Record< - string, - { - filename: string; - type: string; - language: string | null; - raw_url: string; - size: number; - } - >; - public: boolean; - created_at: string; - updated_at: string; - description: string; - comments: number; - user: null | any; - comments_url: string; - owner: UserData; - forks: any[]; - history: [ - { - user: UserData; - version: string; - committed_at: string; - change_status: { - total: number; - additions: number; - deletions: number; - }; - url: string; - } - ]; - truncated: boolean; -} +import { Endpoints } from "@octokit/types"; -export interface UserData { - login: string; - id: number; - node_id: string; - avatar_url: string; - gravatar_id: string; - url: string; - html_url: string; - followers_url?: string; - following_url?: string; - gists_url?: string; - starred_url?: string; - subscriptions_url?: string; - organizations_url?: string; - repos_url?: string; - events_url?: string; - received_events_url?: string; - type?: string; - site_admin?: boolean; - name: null | string; - company?: string; - blog?: string; - location?: string; - email?: null; - hireable?: null; - bio?: string; - twitter_username?: string | null; - public_repos?: number; - public_gists?: number; - followers?: number; - following?: number; - created_at?: string; - updated_at?: string; -} +export type UserData = Endpoints["GET /users/{username}"]["response"]["data"]; -export interface ClientUserData extends UserData { - plan: { - name?: string; - space?: number; - private_repos?: number; - collaborators?: number; - }; - two_factor_authentication: boolean; - collaborators: number; - disk_usage: number; - total_private_repos: number; - owned_private_repos: number; - private_gists: string; -} +export type UserListData = Endpoints["GET /users"]["response"]["data"]; + +export type ClientUserData = Endpoints["GET /user"]["response"]["data"]; + +export type ArtifactData = + Endpoints["GET /repos/{owner}/{repo}/actions/artifacts/{artifact_id}"]["response"]["data"]; + +export type ArtifactListData = + Endpoints["GET /repos/{owner}/{repo}/actions/artifacts"]["response"]["data"]; + +export type GistData = Endpoints["GET /gists/{gist_id}"]["response"]["data"]; + +export type GistListData = Endpoints["GET /gists"]["response"]["data"]; + +export type GistPublicData = Endpoints["GET /gists/public"]["response"]["data"]; + +export type RepoData = + Endpoints["GET /repos/{owner}/{repo}"]["response"]["data"]; + +export type ClientUserRepoListData = + Endpoints["GET /user/repos"]["response"]["data"]; diff --git a/yarn.lock b/yarn.lock index 000455e..713eaea 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,6 +7,18 @@ resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-0.1.6.tgz#9e9a7637f4e4e0688fd8b2b5c63133c91607682c" integrity sha512-utRNxnd9kSS2qhyivo9lMlt5qgAUasH2gb7BEOn6p0efFh24gjGomHzWKMAPn2hEReOPQZCJaRKoURwRotKucQ== +"@octokit/openapi-types@^8.2.0": + version "8.2.0" + resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-8.2.0.tgz#25a590c3f41ff9c1a3ffc9897e0f668d9962e04f" + integrity sha512-113BfIPwDYBAUA5bDSd4q/DzRDSZlUanupjLHeRAtb3Sw99XJwiP8KHGsGoOwPtzUaszVscf3wbfaA3VCR3uHA== + +"@octokit/types@^6.18.0": + version "6.18.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-6.18.0.tgz#f547ee5141d8d8d672940f3699d0ab0c13055ad3" + integrity sha512-H2xk9vlPWrG1oRzWkOCI/lcYUzskmnrF+suUKaCz+XylmmjyZWl0l+RIuuWX8EGW+uX15kBTRNKE/jpSmPA0IA== + dependencies: + "@octokit/openapi-types" "^8.2.0" + "@types/node-fetch@^2.5.10": version "2.5.10" resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.10.tgz#9b4d4a0425562f9fcea70b12cb3fcdd946ca8132" From 1e20e549a056667e99df884beaad6e1810e21f37 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 5 Jul 2021 13:20:53 +0530 Subject: [PATCH 11/79] feat(repo): added some props and minor fix --- src/structures/repo.ts | 96 ++++++++++++++++++++++++++++++++++++++++-- src/utils/index.ts | 4 +- src/utils/rest.ts | 2 +- 3 files changed, 96 insertions(+), 6 deletions(-) diff --git a/src/structures/repo.ts b/src/structures/repo.ts index 0686030..1dd64b6 100644 --- a/src/structures/repo.ts +++ b/src/structures/repo.ts @@ -1,7 +1,97 @@ -class Repo { - id: number; - constructor(data: any) { +import ForkManager from "../managers/forkmanager"; +import { RepoData } from "../utils"; +import Base from "./base"; +import Client from "./client"; + +class Repo extends Base { + public readonly id: number; + public readonly forks: ForkManager; + private readonly data: RepoData; + constructor(client: Client, data: RepoData) { + super(client); this.id = data.id; + this.data = data; + this.forks = new ForkManager(this.client, { url: data.forks_url }); + } + + public get forkCount() { + return this.data.forks_count; + } + + public get fork() { + return this.data.fork; + } + + public get fullName() { + return this.data.full_name; + } + + public get allowMergeCommit() { + return this.data.allow_merge_commit; + } + + public get allowRebaseMerge() { + return this.data.allow_rebase_merge; + } + + public get allowSquashMerge() { + return this.data.allow_squash_merge; + } + + public get anonymusAccessEnabled() { + return this.data.anonymous_access_enabled; + } + + public get archiveUrl() { + return this.data.archive_url; + } + + public get archived() { + return this.data.archived; + } + + public get assigneesUrl() { + return this.data.assignees_url; + } + + public get blobsUrl() { + return this.data.blobs_url; + } + + public get branchesUrl() { + return this.data.branches_url; + } + + public get cloneUrl() { + return this.data.clone_url; + } + + public get codeOfConduct() { + return this.data.code_of_conduct; + } + + public get collaboratorsUrl() { + return this.data.collaborators_url; + } + + public get commentsUrl() { + return this.data.comments_url; + } + + public get commitsUrl() { + return this.data.commits_url; + } + + public get compareUrl() { + return this.data.compare_url; + } + + public get contentsUrl() { + return this.data.contents_url; + } + + public get contributorsUrl() { + return this.data.contributors_url; } } diff --git a/src/utils/index.ts b/src/utils/index.ts index b64f067..3147071 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -1,4 +1,4 @@ export { snakeCasify } from "./snakecase"; -import RestManager from "./rest"; +export { RestManager } from "./rest"; export * from "./constants"; -export { RestManager }; +export * from "./rawdata"; diff --git a/src/utils/rest.ts b/src/utils/rest.ts index c6a965d..f7f1270 100644 --- a/src/utils/rest.ts +++ b/src/utils/rest.ts @@ -68,4 +68,4 @@ class RestManager { } } -export default RestManager; +export { RestManager }; From 1aeb1ea0aab172d6934d884c63f7cf082b65566a Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 7 Jul 2021 15:44:07 +0530 Subject: [PATCH 12/79] feat(build script): minor --- package.json | 3 ++- src/structures/repo.ts | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0d473b9..44b7d44 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "dist/index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "docs": "typedoc src/index.ts --json docs/doc.json" + "docs": "typedoc src/index.ts --json docs/doc.json", + "build": "tsc -p tsconfig.json" }, "keywords": [], "author": "", diff --git a/src/structures/repo.ts b/src/structures/repo.ts index 1dd64b6..382648e 100644 --- a/src/structures/repo.ts +++ b/src/structures/repo.ts @@ -93,6 +93,14 @@ class Repo extends Base { public get contributorsUrl() { return this.data.contributors_url; } + + public get createdAt() { + return this.data.created_at; + } + + // public get() { + // return this.data + // } } export default Repo; From 062ef50ecfcce2a1fb9d9b1b0f0810aae147cc6c Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 10 Jul 2021 15:00:16 +0530 Subject: [PATCH 13/79] feat(tests): minor --- .gitignore | 5 +- .npmignore | Bin 0 -> 26 bytes package.json | 8 +- src/managers/usermanager.ts | 2 +- src/utils/rest.ts | 8 +- yarn.lock | 151 ++++++++++++++++++++++++++++-------- 6 files changed, 134 insertions(+), 40 deletions(-) create mode 100644 .npmignore diff --git a/.gitignore b/.gitignore index d137720..6bd806b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules -test.js -dist \ No newline at end of file +dist +tests +.env diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000000000000000000000000000000000000..175077a2c10d7008ab3f327a12e6c6ab5ee975b5 GIT binary patch literal 26 ccmezWub82TA(?@ffs3JpA(f#RNEU;60A|z$rvLx| literal 0 HcmV?d00001 diff --git a/package.json b/package.json index 44b7d44..0bacbbc 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "", "main": "dist/index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", + "test": "mocha -r ts-node/register tests/**/*.test.ts", "docs": "typedoc src/index.ts --json docs/doc.json", "build": "tsc -p tsconfig.json" }, @@ -17,11 +17,15 @@ }, "devDependencies": { "@octokit/types": "^6.18.0", + "@types/chai": "^4.2.21", + "@types/mocha": "^8.2.3", "@types/node": "^15.14.0", "@types/node-fetch": "^2.5.10", "chai": "^4.3.4", + "dotenv": "^10.0.0", "jsdoc-json": "^2.0.2", - "mocha": "^9.0.0", + "mocha": "^9.0.2", + "ts-node": "^10.0.0", "tslib": "^2.3.0", "typedoc": "^0.21.2", "typescript": "^4.3.2" diff --git a/src/managers/usermanager.ts b/src/managers/usermanager.ts index 9d7cae2..caa0f18 100644 --- a/src/managers/usermanager.ts +++ b/src/managers/usermanager.ts @@ -20,7 +20,7 @@ class UserManager extends Manager { const res: Response = await this.client.api .req(`users/${username}`) .get(); - res.json().then((b: any) => { + return res.json().then((b: any) => { if (cache) return this.add(b.login, b); return new User(b, { client: this.client }); }); diff --git a/src/utils/rest.ts b/src/utils/rest.ts index f7f1270..c3e14bd 100644 --- a/src/utils/rest.ts +++ b/src/utils/rest.ts @@ -10,14 +10,14 @@ async function makeReq({ path, query = {}, headers = {}, - body = {}, + body, method = "get", _, }: { path: string; query?: Partial>; headers?: Record; - body?: Record; + body?: Record | undefined; method?: "post" | "get" | "delete" | "patch" | "put"; _?: boolean | undefined; }): Promise { @@ -26,7 +26,7 @@ async function makeReq({ { method, headers, - body: JSON.stringify(snakeCasify(body)), + body: body ? JSON.stringify(snakeCasify(body)) : undefined, } ); if (!res.ok && !_) throw new GHError(res, await res.json()); @@ -54,7 +54,7 @@ class RestManager { delete: Function; patch: Function; } { - const { query = {}, headers = {}, body = {}, _ } = options ?? {}; + const { query = {}, headers = {}, body, _ } = options ?? {}; headers["accept"] ??= "application/vnd.github.v3+json"; headers["Authorization"] ??= `token ${this.client.token}`; return { diff --git a/yarn.lock b/yarn.lock index 713eaea..d27bba5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -19,6 +19,36 @@ dependencies: "@octokit/openapi-types" "^8.2.0" +"@tsconfig/node10@^1.0.7": + version "1.0.8" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.8.tgz#c1e4e80d6f964fbecb3359c43bd48b40f7cadad9" + integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== + +"@tsconfig/node12@^1.0.7": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.9.tgz#62c1f6dee2ebd9aead80dc3afa56810e58e1a04c" + integrity sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw== + +"@tsconfig/node14@^1.0.0": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.1.tgz#95f2d167ffb9b8d2068b0b235302fafd4df711f2" + integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== + +"@tsconfig/node16@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.1.tgz#a6ca6a9a0ff366af433f42f5f0e124794ff6b8f1" + integrity sha512-FTgBI767POY/lKNDNbIzgAX6miIDBs6NTCbdlDb8TrWovHsSvaVIZDlTqym29C6UqhzwcJx4CYr+AlrMywA0cA== + +"@types/chai@^4.2.21": + version "4.2.21" + resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.21.tgz#9f35a5643129df132cf3b5c1ec64046ea1af0650" + integrity sha512-yd+9qKmJxm496BOV9CMNaey8TWsikaZOwMRwPHQIjcOJM9oV+fi9ZMNw3JsVnbEEbo2gRTDnGEBv8pjyn67hNg== + +"@types/mocha@^8.2.3": + version "8.2.3" + resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-8.2.3.tgz#bbeb55fbc73f28ea6de601fbfa4613f58d785323" + integrity sha512-ekGvFhFgrc2zYQoX4JeZPmVzZxw6Dtllga7iGHzfbYIYkAMUx/sAFP2GdFpLff+vdHXu5fl7WX9AT+TtqYcsyw== + "@types/node-fetch@^2.5.10": version "2.5.10" resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.10.tgz#9b4d4a0425562f9fcea70b12cb3fcdd946ca8132" @@ -64,7 +94,7 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" -anymatch@~3.1.1: +anymatch@~3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== @@ -72,6 +102,11 @@ anymatch@~3.1.1: normalize-path "^3.0.0" picomatch "^2.0.4" +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" @@ -117,6 +152,11 @@ browser-stdout@1.3.1: resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + camelcase@^6.0.0: version "6.2.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" @@ -147,20 +187,20 @@ check-error@^1.0.2: resolved "https://registry.yarnpkg.com/check-error/-/check-error-1.0.2.tgz#574d312edd88bb5dd8912e9286dd6c0aed4aac82" integrity sha1-V00xLt2Iu13YkS6Sht1sCu1KrII= -chokidar@3.5.1: - version "3.5.1" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" - integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== +chokidar@3.5.2: + version "3.5.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" + integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== dependencies: - anymatch "~3.1.1" + anymatch "~3.1.2" braces "~3.0.2" - glob-parent "~5.1.0" + glob-parent "~5.1.2" is-binary-path "~2.1.0" is-glob "~4.0.1" normalize-path "~3.0.0" - readdirp "~3.5.0" + readdirp "~3.6.0" optionalDependencies: - fsevents "~2.3.1" + fsevents "~2.3.2" cliui@^7.0.2: version "7.0.4" @@ -195,6 +235,11 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + debug@4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" @@ -224,6 +269,16 @@ diff@5.0.0: resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + +dotenv@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" + integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== + emoji-regex@^8.0.0: version "8.0.0" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" @@ -273,7 +328,7 @@ fs.realpath@^1.0.0: resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= -fsevents@~2.3.1: +fsevents@~2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== @@ -288,7 +343,7 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= -glob-parent@~5.1.0: +glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== @@ -447,6 +502,11 @@ lunr@^2.3.9: resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + marked@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" @@ -476,15 +536,15 @@ minimist@^1.2.5: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== -mocha@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.0.0.tgz#67ce848170cb6426f9e84c57e38376dc9017bab4" - integrity sha512-GRGG/q9bIaUkHJB9NL+KZNjDhMBHB30zW3bZW9qOiYr+QChyLjPzswaxFWkI1q6lGlSL28EQYzAi2vKWNkPx+g== +mocha@^9.0.2: + version "9.0.2" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-9.0.2.tgz#e84849b61f406a680ced85af76425f6f3108d1a0" + integrity sha512-FpspiWU+UT9Sixx/wKimvnpkeW0mh6ROAKkIaPokj3xZgxeRhcna/k5X57jJghEr8X+Cgu/Vegf8zCX5ugSuTA== dependencies: "@ungap/promise-all-settled" "1.1.2" ansi-colors "4.1.1" browser-stdout "1.3.1" - chokidar "3.5.1" + chokidar "3.5.2" debug "4.3.1" diff "5.0.0" escape-string-regexp "4.0.0" @@ -497,12 +557,12 @@ mocha@^9.0.0: minimatch "3.0.4" ms "2.1.3" nanoid "3.1.23" - serialize-javascript "5.0.1" + serialize-javascript "6.0.0" strip-json-comments "3.1.1" supports-color "8.1.1" which "2.0.2" wide-align "1.1.3" - workerpool "6.1.4" + workerpool "6.1.5" yargs "16.2.0" yargs-parser "20.2.4" yargs-unparser "2.0.0" @@ -597,10 +657,10 @@ randombytes@^2.1.0: dependencies: safe-buffer "^5.1.0" -readdirp@~3.5.0: - version "3.5.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" - integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== +readdirp@~3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" + integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== dependencies: picomatch "^2.2.1" @@ -614,10 +674,10 @@ safe-buffer@^5.1.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== -serialize-javascript@5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" - integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== +serialize-javascript@6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" + integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== dependencies: randombytes "^2.1.0" @@ -630,7 +690,15 @@ shiki@^0.9.3: onigasm "^2.2.5" vscode-textmate "5.2.0" -source-map@^0.6.1: +source-map-support@^0.5.17: + version "0.5.19" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" + integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== @@ -692,6 +760,22 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" +ts-node@^10.0.0: + version "10.0.0" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.0.0.tgz#05f10b9a716b0b624129ad44f0ea05dac84ba3be" + integrity sha512-ROWeOIUvfFbPZkoDis0L/55Fk+6gFQNZwwKPLinacRl6tsxstTF1DbAcLKkovwnpKMVvOMHP1TIbnwXwtLg1gg== + dependencies: + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + source-map-support "^0.5.17" + yn "3.1.1" + tslib@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" @@ -756,10 +840,10 @@ wordwrap@^1.0.0: resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= -workerpool@6.1.4: - version "6.1.4" - resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.4.tgz#6a972b6df82e38d50248ee2820aa98e2d0ad3090" - integrity sha512-jGWPzsUqzkow8HoAvqaPWTUPCrlPJaJ5tY8Iz7n1uCz3tTp6s3CDG0FF1NsX42WNlkRSW6Mr+CDZGnNoSsKa7g== +workerpool@6.1.5: + version "6.1.5" + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.5.tgz#0f7cf076b6215fd7e1da903ff6f22ddd1886b581" + integrity sha512-XdKkCK0Zqc6w3iTxLckiuJ81tiD/o5rBE/m+nXpRCB+/Sq4DqkfXZ/x0jW02DG1tGsfUGXbTJyZDP+eu67haSw== wrap-ansi@^7.0.0: version "7.0.0" @@ -818,6 +902,11 @@ yargs@16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" From 25e90d4e9e783cdbd52db82c2a4588ae25d1cb27 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 10 Jul 2021 21:15:27 +0530 Subject: [PATCH 14/79] feat: tests --- .gitignore | 1 - tests/clientuser.test.js | 60 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 tests/clientuser.test.js diff --git a/.gitignore b/.gitignore index 6bd806b..9c97bbd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ node_modules dist -tests .env diff --git a/tests/clientuser.test.js b/tests/clientuser.test.js new file mode 100644 index 0000000..854092c --- /dev/null +++ b/tests/clientuser.test.js @@ -0,0 +1,60 @@ +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __generator = (this && this.__generator) || function (thisArg, body) { + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; + function verb(n) { return function (v) { return step([n, v]); }; } + function step(op) { + if (f) throw new TypeError("Generator is already executing."); + while (_) try { + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; + if (y = 0, t) op = [op[0] & 2, t.value]; + switch (op[0]) { + case 0: case 1: t = op; break; + case 4: _.label++; return { value: op[1], done: false }; + case 5: _.label++; y = op[1]; op = [0]; continue; + case 7: op = _.ops.pop(); _.trys.pop(); continue; + default: + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } + if (t[2]) _.ops.pop(); + _.trys.pop(); continue; + } + op = body.call(thisArg, _); + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; + } +}; +var _this = this; +var assert = require("chai").assert; +var Client = require("../dist").Client; +var sinon = require("sinon"); +var client = new Client({ + token: "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" +}); +describe("hmm", function () { + it("matches even if received contains additional elements", function () { return __awaiter(_this, void 0, void 0, function () { + var user; + return __generator(this, function (_a) { + switch (_a.label) { + case 0: return [4 /*yield*/, client.users.fetch("gmbodhi")]; + case 1: + user = _a.sent(); + assert(typeof user !== "undefined", "got one user"); + client.on("ready", function () { + client.user.setName("hmm"); + }); + return [2 /*return*/]; + } + }); + }); }); +}); From 44e88f59541c7819c9e30e87ea191e566c1e7c5a Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 10 Jul 2021 21:17:06 +0530 Subject: [PATCH 15/79] feat(tests): minor --- tests/clientuser.test.js | 60 ---------------------------------------- tests/clientuser.test.ts | 35 +++++++++++++++++++++++ 2 files changed, 35 insertions(+), 60 deletions(-) delete mode 100644 tests/clientuser.test.js create mode 100644 tests/clientuser.test.ts diff --git a/tests/clientuser.test.js b/tests/clientuser.test.js deleted file mode 100644 index 854092c..0000000 --- a/tests/clientuser.test.js +++ /dev/null @@ -1,60 +0,0 @@ -var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { - function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } - return new (P || (P = Promise))(function (resolve, reject) { - function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } - function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } - function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } - step((generator = generator.apply(thisArg, _arguments || [])).next()); - }); -}; -var __generator = (this && this.__generator) || function (thisArg, body) { - var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; - return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; - function verb(n) { return function (v) { return step([n, v]); }; } - function step(op) { - if (f) throw new TypeError("Generator is already executing."); - while (_) try { - if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; - if (y = 0, t) op = [op[0] & 2, t.value]; - switch (op[0]) { - case 0: case 1: t = op; break; - case 4: _.label++; return { value: op[1], done: false }; - case 5: _.label++; y = op[1]; op = [0]; continue; - case 7: op = _.ops.pop(); _.trys.pop(); continue; - default: - if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } - if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } - if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } - if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } - if (t[2]) _.ops.pop(); - _.trys.pop(); continue; - } - op = body.call(thisArg, _); - } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } - if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; - } -}; -var _this = this; -var assert = require("chai").assert; -var Client = require("../dist").Client; -var sinon = require("sinon"); -var client = new Client({ - token: "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" -}); -describe("hmm", function () { - it("matches even if received contains additional elements", function () { return __awaiter(_this, void 0, void 0, function () { - var user; - return __generator(this, function (_a) { - switch (_a.label) { - case 0: return [4 /*yield*/, client.users.fetch("gmbodhi")]; - case 1: - user = _a.sent(); - assert(typeof user !== "undefined", "got one user"); - client.on("ready", function () { - client.user.setName("hmm"); - }); - return [2 /*return*/]; - } - }); - }); }); -}); diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts new file mode 100644 index 0000000..7b1f26b --- /dev/null +++ b/tests/clientuser.test.ts @@ -0,0 +1,35 @@ +import { expect } from "chai"; + +const assert = require("chai").assert; +const { Client } = require("../dist"); +require("dotenv").config(); + +const client = new Client({ + token: process.env.TEST, +}); + +describe("Login client and fetch a user", function () { + this.timeout(5000); + it("fetch gmbodhi", (done) => { + client.users.fetch("gmbodhi").then((user: any) => { + assert(typeof user !== "undefined", "got one user"); + done(); + }); + }); + it("login the client", (done) => { + client.on("ready", () => { + expect(client.user, "user not null").not.to.be.equal(null); + done(); + console.log(`Logged in as ${client.user.login}`); + describe("changing user's profile details", function () { + this.timeout(5000); + it("change user's name to a random value", (done) => { + let name = + String.fromCharCode(65 + Math.floor(Math.random() * 26)) + + Date.now(); + client.user.setName(name).then(() => done()); + }); + }); + }); + }); +}); From ffa80adfafdb5e749885fce81724379e0654173d Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 10 Jul 2021 22:12:25 +0530 Subject: [PATCH 16/79] feat: tests automation --- .github/workflows/tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..40242e4 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,16 @@ +name: Tests + +on: + push: + branches: [dev] + +jobs: + Test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Install dependencies + run: yarn -D + - name: Run Tests + run: npm t From 7869663b4f95b4ddf8a8aa917d2c85c18387fe9d Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 10 Jul 2021 22:15:42 +0530 Subject: [PATCH 17/79] fix: tests automation --- .github/workflows/tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 40242e4..2bc2b5f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,15 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v2 + - name: Install Node v14 + uses: actions/setup-node@v2 + with: + node-version: 14 - name: Install dependencies run: yarn -D + - name: Build + run: yarn build - name: Run Tests run: npm t + env: + TEST: ${{ secrets.TEST }} From 13895ed79e1fcd70ef7af98935a07176703bb76d Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sun, 11 Jul 2021 12:00:56 +0530 Subject: [PATCH 18/79] feat(test): minor --- tests/client.test.ts | 29 +++++++++++++++++++++++++++++ tests/clientuser.test.ts | 21 ++++++++++----------- 2 files changed, 39 insertions(+), 11 deletions(-) create mode 100644 tests/client.test.ts diff --git a/tests/client.test.ts b/tests/client.test.ts new file mode 100644 index 0000000..4517d11 --- /dev/null +++ b/tests/client.test.ts @@ -0,0 +1,29 @@ +import { expect } from "chai"; + +const assert = require("chai").assert; +const { Client } = require("../dist"); +require("dotenv").config(); + +const client = new Client({ + token: process.env.TEST, +}); + +const getRandom = () => + String.fromCharCode(65 + Math.floor(Math.random() * 26)) + Date.now(); + +describe("Login client and fetch a user", function () { + this.timeout(5000); + it("fetch gmbodhi", (done) => { + client.users.fetch("gmbodhi").then((user: any) => { + assert(typeof user !== "undefined", "got one user"); + done(); + }); + }); + it("login the client", (done) => { + client.on("ready", () => { + expect(client.user, "user not null").not.to.be.equal(null); + done(); + console.log(`Logged in as ${client.user.login}`); + }); + }); +}); diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index 7b1f26b..004316f 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -8,26 +8,25 @@ const client = new Client({ token: process.env.TEST, }); +const getRandom = () => + String.fromCharCode(65 + Math.floor(Math.random() * 26)) + Date.now(); + describe("Login client and fetch a user", function () { this.timeout(5000); - it("fetch gmbodhi", (done) => { - client.users.fetch("gmbodhi").then((user: any) => { - assert(typeof user !== "undefined", "got one user"); - done(); - }); - }); it("login the client", (done) => { client.on("ready", () => { expect(client.user, "user not null").not.to.be.equal(null); done(); - console.log(`Logged in as ${client.user.login}`); describe("changing user's profile details", function () { this.timeout(5000); it("change user's name to a random value", (done) => { - let name = - String.fromCharCode(65 + Math.floor(Math.random() * 26)) + - Date.now(); - client.user.setName(name).then(() => done()); + client.user.setName(getRandom()).then(() => done()); + }); + it("change user's bio to a random value", (done) => { + client.user.setBio(getRandom()).then(() => done()); + }); + it("change user's location to a random value", (done) => { + client.user.setLocation(getRandom()).then(() => done()); }); }); }); From 9fca4a929fc899667d4d921372de2902ce1dd4ba Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sun, 11 Jul 2021 12:05:10 +0530 Subject: [PATCH 19/79] feat(tests): fix? --- tests/clientuser.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index 004316f..83f6db6 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -18,7 +18,7 @@ describe("Login client and fetch a user", function () { expect(client.user, "user not null").not.to.be.equal(null); done(); describe("changing user's profile details", function () { - this.timeout(5000); + this.timeout(10000); it("change user's name to a random value", (done) => { client.user.setName(getRandom()).then(() => done()); }); From 406b023173e1352888215f74e747b67d46451a7f Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sun, 11 Jul 2021 12:12:03 +0530 Subject: [PATCH 20/79] feat(test): increased timeout --- .github/workflows/tests.yml | 2 +- tests/client.test.ts | 2 +- tests/clientuser.test.ts | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2bc2b5f..76871b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,6 +19,6 @@ jobs: - name: Build run: yarn build - name: Run Tests - run: npm t + run: yarn test env: TEST: ${{ secrets.TEST }} diff --git a/tests/client.test.ts b/tests/client.test.ts index 4517d11..2cffd3d 100644 --- a/tests/client.test.ts +++ b/tests/client.test.ts @@ -12,7 +12,7 @@ const getRandom = () => String.fromCharCode(65 + Math.floor(Math.random() * 26)) + Date.now(); describe("Login client and fetch a user", function () { - this.timeout(5000); + this.timeout(10000); it("fetch gmbodhi", (done) => { client.users.fetch("gmbodhi").then((user: any) => { assert(typeof user !== "undefined", "got one user"); diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index 83f6db6..e9c5f00 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -11,14 +11,14 @@ const client = new Client({ const getRandom = () => String.fromCharCode(65 + Math.floor(Math.random() * 26)) + Date.now(); -describe("Login client and fetch a user", function () { - this.timeout(5000); +describe("Login client and test clientuser", function () { + this.timeout(10000); it("login the client", (done) => { client.on("ready", () => { expect(client.user, "user not null").not.to.be.equal(null); done(); describe("changing user's profile details", function () { - this.timeout(10000); + this.timeout(20000); it("change user's name to a random value", (done) => { client.user.setName(getRandom()).then(() => done()); }); From 5f5c31683cf5d31ff28b45f61f787c0b4e667ba0 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sun, 11 Jul 2021 12:26:36 +0530 Subject: [PATCH 21/79] feat(tests): invokation From 4af1d9ab03c696c1d32b6dbf132bc0c4b54b5e99 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 12 Jul 2021 11:25:27 +0530 Subject: [PATCH 22/79] feat(docs): generate docs according to versions --- .github/workflows/docs.yml | 0 docgen.js | 8 ++++++++ docgen.sh | 2 ++ docs/{doc.json => 1.0.0.json} | 0 package.json | 3 ++- typedoc.json | 1 + 6 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/docs.yml create mode 100644 docgen.js create mode 100644 docgen.sh rename docs/{doc.json => 1.0.0.json} (100%) create mode 100644 typedoc.json diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml new file mode 100644 index 0000000..e69de29 diff --git a/docgen.js b/docgen.js new file mode 100644 index 0000000..5ef60d6 --- /dev/null +++ b/docgen.js @@ -0,0 +1,8 @@ +const { version } = require("./package.json"); +const { readFileSync, writeFileSync } = require("fs"); + +const json = JSON.parse(readFileSync("./typedoc.json")); + +json.json = `docs/${version}.json`; + +writeFileSync("./typedoc.json", JSON.stringify(json)); diff --git a/docgen.sh b/docgen.sh new file mode 100644 index 0000000..d2a2061 --- /dev/null +++ b/docgen.sh @@ -0,0 +1,2 @@ +node docgen +yarn gendoc diff --git a/docs/doc.json b/docs/1.0.0.json similarity index 100% rename from docs/doc.json rename to docs/1.0.0.json diff --git a/package.json b/package.json index 0bacbbc..3b03551 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "dist/index.js", "scripts": { "test": "mocha -r ts-node/register tests/**/*.test.ts", - "docs": "typedoc src/index.ts --json docs/doc.json", + "docs": "sh docgen.sh", + "gendoc": "typedoc", "build": "tsc -p tsconfig.json" }, "keywords": [], diff --git a/typedoc.json b/typedoc.json new file mode 100644 index 0000000..a8ab760 --- /dev/null +++ b/typedoc.json @@ -0,0 +1 @@ +{"entryPoints":["./src/index.ts"],"json":"docs/1.1.0.json"} \ No newline at end of file From 3796016e3cadc3da705d55769f5ed4047d691a47 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 12 Jul 2021 12:36:30 +0530 Subject: [PATCH 23/79] feat(actions): added automated docs generation on push --- .github/workflows/docs.yml | 25 +++++++++++++++++++++++++ docgen.js | 2 +- typedoc.json | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e69de29..bb92cf8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -0,0 +1,25 @@ +name: Docs + +on: push + +jobs: + Test: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Install Node v14 + uses: actions/setup-node@v2 + with: + node-version: 14 + - name: Install dependencies + run: yarn -D + - name: Run Docs + run: yarn docs + - name: Commit docs + uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "automated(docs): docs json file generated (actions)" + file_pattern: docs/*.json typedoc.json + skip_dirty_check: false + skip_fetch: false diff --git a/docgen.js b/docgen.js index 5ef60d6..5a5ab80 100644 --- a/docgen.js +++ b/docgen.js @@ -5,4 +5,4 @@ const json = JSON.parse(readFileSync("./typedoc.json")); json.json = `docs/${version}.json`; -writeFileSync("./typedoc.json", JSON.stringify(json)); +writeFileSync("./typedoc.json", JSON.stringify(json) + "\n"); diff --git a/typedoc.json b/typedoc.json index a8ab760..9ebeed7 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1 +1 @@ -{"entryPoints":["./src/index.ts"],"json":"docs/1.1.0.json"} \ No newline at end of file +{"entryPoints":["./src/index.ts"],"json":"docs/1.0.0.json"} From 11e4cd9724bc7633d810116ae3bc176cabc5a511 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 12 Jul 2021 12:37:40 +0530 Subject: [PATCH 24/79] feat: minor --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bb92cf8..5a9b80c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -3,7 +3,7 @@ name: Docs on: push jobs: - Test: + Docs: runs-on: ubuntu-latest steps: - name: Checkout repository From f33ae2bd771a1371705b22ee9d6c210a9fe588d2 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 12 Jul 2021 12:38:57 +0530 Subject: [PATCH 25/79] feat: minor --- docs/1.0.0.json | 2376 ----------------------------------------------- 1 file changed, 2376 deletions(-) delete mode 100644 docs/1.0.0.json diff --git a/docs/1.0.0.json b/docs/1.0.0.json deleted file mode 100644 index f637244..0000000 --- a/docs/1.0.0.json +++ /dev/null @@ -1,2376 +0,0 @@ -{ - "id": 0, - "name": "github-api", - "kind": 0, - "kindString": "Project", - "flags": {}, - "originalName": "", - "children": [ - { - "id": 1, - "name": "Client", - "kind": 128, - "kindString": "Class", - "flags": {}, - "children": [ - { - "id": 28, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, - "signatures": [ - { - "id": 29, - "name": "new Client", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 30, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ClientOptions" - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "overwrites": { - "type": "reference", - "name": "Events.EventEmitter.constructor" - } - } - ], - "overwrites": { - "type": "reference", - "name": "Events.EventEmitter.constructor" - } - }, - { - "id": 36, - "name": "api", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 18, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "RestManager" - } - }, - { - "id": 32, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true, - "isOptional": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 14, - "character": 23 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] - } - }, - { - "id": 33, - "name": "ready", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 15, - "character": 14 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 31, - "name": "token", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true, - "isOptional": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 13, - "character": 23 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] - } - }, - { - "id": 34, - "name": "user", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 16, - "character": 13 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "name": "ClientUser" - } - ] - } - }, - { - "id": 35, - "name": "users", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 17, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "UserManager" - } - }, - { - "id": 25, - "name": "captureRejectionSymbol", - "kind": 1024, - "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 46, - "character": 46 - } - ], - "type": { - "type": "query", - "queryType": { - "type": "reference", - "id": 25, - "name": "captureRejectionSymbol" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.captureRejectionSymbol" - } - }, - { - "id": 26, - "name": "captureRejections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true - }, - "comment": { - "shortText": "Sets or gets the default captureRejection value for all emitters." - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 52, - "character": 32 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.captureRejections" - } - }, - { - "id": 27, - "name": "defaultMaxListeners", - "kind": 1024, - "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 53, - "character": 34 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.defaultMaxListeners" - } - }, - { - "id": 24, - "name": "errorMonitor", - "kind": 1024, - "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true, - "isReadonly": true - }, - "comment": { - "shortText": "This symbol shall be used to install a listener for only monitoring `'error'`\nevents. Listeners installed using this symbol are called before the regular\n`'error'` listeners are called.", - "text": "Installing a listener using this symbol does not change the behavior once an\n`'error'` event is emitted, therefore the process will still crash if no\nregular `'error'` listener is installed.\n" - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 45, - "character": 36 - } - ], - "type": { - "type": "query", - "queryType": { - "type": "reference", - "id": 24, - "name": "errorMonitor" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.errorMonitor" - } - }, - { - "id": 37, - "name": "addListener", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 38, - "name": "addListener", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 39, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 40, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 41, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 42, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 43, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.addListener" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.addListener" - } - }, - { - "id": 86, - "name": "emit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 87, - "name": "emit", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 88, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 89, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.emit" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.emit" - } - }, - { - "id": 107, - "name": "eventNames", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 108, - "name": "eventNames", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.eventNames" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.eventNames" - } - }, - { - "id": 78, - "name": "getMaxListeners", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 79, - "name": "getMaxListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.getMaxListeners" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.getMaxListeners" - } - }, - { - "id": 90, - "name": "listenerCount", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 91, - "name": "listenerCount", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 92, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listenerCount" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listenerCount" - } - }, - { - "id": 80, - "name": "listeners", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 81, - "name": "listeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 82, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "Function" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listeners" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listeners" - } - }, - { - "id": 65, - "name": "off", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 66, - "name": "off", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 67, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 68, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 69, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 70, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 71, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.off" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.off" - } - }, - { - "id": 44, - "name": "on", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 45, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 46, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 47, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 48, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 49, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 50, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.on" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.on" - } - }, - { - "id": 51, - "name": "once", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 52, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 53, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 54, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 55, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 56, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 57, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } - }, - { - "id": 93, - "name": "prependListener", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 94, - "name": "prependListener", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 95, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 96, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 97, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 98, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 99, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.prependListener" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.prependListener" - } - }, - { - "id": 100, - "name": "prependOnceListener", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 101, - "name": "prependOnceListener", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 102, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 103, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 104, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 105, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 106, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.prependOnceListener" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.prependOnceListener" - } - }, - { - "id": 83, - "name": "rawListeners", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 84, - "name": "rawListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 85, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "Function" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.rawListeners" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.rawListeners" - } - }, - { - "id": 72, - "name": "removeAllListeners", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 73, - "name": "removeAllListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 74, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.removeAllListeners" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.removeAllListeners" - } - }, - { - "id": 58, - "name": "removeListener", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 59, - "name": "removeListener", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 60, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 61, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 62, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 63, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 64, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.removeListener" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.removeListener" - } - }, - { - "id": 75, - "name": "setMaxListeners", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 76, - "name": "setMaxListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 77, - "name": "n", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "intrinsic", - "name": "number" - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.setMaxListeners" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.setMaxListeners" - } - }, - { - "id": 20, - "name": "getEventListener", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExternal": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 34, - "character": 31 - } - ], - "signatures": [ - { - "id": 21, - "name": "getEventListener", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "comment": { - "shortText": "Returns a list listener for a specific emitter event name." - }, - "parameters": [ - { - "id": 22, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "DOMEventTarget" - }, - { - "type": "reference", - "name": "EventEmitter" - } - ] - } - }, - { - "id": 23, - "name": "name", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "Function" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.getEventListener" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.getEventListener" - } - }, - { - "id": 16, - "name": "listenerCount", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExternal": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 30, - "character": 28 - } - ], - "signatures": [ - { - "id": 17, - "name": "listenerCount", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "comment": { - "tags": [ - { - "tag": "deprecated", - "text": "since v4.0.0" - } - ] - }, - "parameters": [ - { - "id": 18, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "EventEmitter" - } - }, - { - "id": 19, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listenerCount" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listenerCount" - } - }, - { - "id": 11, - "name": "on", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExternal": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 27, - "character": 17 - } - ], - "signatures": [ - { - "id": 12, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 13, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "EventEmitter" - } - }, - { - "id": 14, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 15, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isOptional": true - }, - "type": { - "type": "reference", - "name": "StaticEventEmitterOptions" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "AsyncIterableIterator" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.on" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.on" - } - }, - { - "id": 2, - "name": "once", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExternal": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 25, - "character": 19 - } - ], - "signatures": [ - { - "id": 3, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 4, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "NodeEventTarget" - } - }, - { - "id": 5, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 6, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isOptional": true - }, - "type": { - "type": "reference", - "name": "StaticEventEmitterOptions" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - ], - "name": "Promise" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } - }, - { - "id": 7, - "name": "once", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 8, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "DOMEventTarget" - } - }, - { - "id": 9, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 10, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isOptional": true - }, - "type": { - "type": "reference", - "name": "StaticEventEmitterOptions" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - ], - "name": "Promise" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } - } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 28 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 36, - 32, - 33, - 31, - 34, - 35, - 25, - 26, - 27, - 24 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 37, - 86, - 107, - 78, - 90, - 80, - 65, - 44, - 51, - 93, - 100, - 83, - 72, - 58, - 75, - 20, - 16, - 11, - 2 - ] - } - ], - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 12, - "character": 12 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "EventEmitter" - } - ] - }, - { - "id": 109, - "name": "Manager", - "kind": 128, - "kindString": "Class", - "flags": {}, - "children": [ - { - "id": 110, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": {}, - "signatures": [ - { - "id": 111, - "name": "new Manager", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 112, - "name": "__namedParameters", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 113, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 114, - "name": "client", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 8, - "character": 39 - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - } - }, - { - "id": 115, - "name": "url", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 8, - "character": 52 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 114, - 115 - ] - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 109, - "name": "BaseManager" - } - } - ] - }, - { - "id": 118, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - } - }, - { - "id": 116, - "name": "client", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 5, - "character": 8 - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - } - }, - { - "id": 117, - "name": "url", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 6, - "character": 5 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 119, - "name": "add", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 14, - "character": 5 - } - ], - "signatures": [ - { - "id": 120, - "name": "add", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 121, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - }, - { - "id": 122, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - ] - }, - { - "id": 123, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 124, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 125, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 110 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 118, - 116, - 117 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 119, - 123 - ] - } - ], - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 4, - "character": 17 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 1, - 109 - ] - } - ], - "sources": [ - { - "fileName": "src/index.ts", - "line": 1, - "character": 0 - } - ] -} \ No newline at end of file From 295e2367efcbd4036112d07be497c92e3e4a457c Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Mon, 12 Jul 2021 07:09:35 +0000 Subject: [PATCH 26/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 2376 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 2376 insertions(+) create mode 100644 docs/1.0.0.json diff --git a/docs/1.0.0.json b/docs/1.0.0.json new file mode 100644 index 0000000..f637244 --- /dev/null +++ b/docs/1.0.0.json @@ -0,0 +1,2376 @@ +{ + "id": 0, + "name": "github-api", + "kind": 0, + "kindString": "Project", + "flags": {}, + "originalName": "", + "children": [ + { + "id": 1, + "name": "Client", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 28, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 29, + "name": "new Client", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 30, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "ClientOptions" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "overwrites": { + "type": "reference", + "name": "Events.EventEmitter.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "name": "Events.EventEmitter.constructor" + } + }, + { + "id": 36, + "name": "api", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 18, + "character": 21 + } + ], + "type": { + "type": "reference", + "name": "RestManager" + } + }, + { + "id": 32, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isOptional": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 14, + "character": 23 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 33, + "name": "ready", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 15, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 31, + "name": "token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isOptional": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 13, + "character": 23 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 34, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 16, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "name": "ClientUser" + } + ] + } + }, + { + "id": 35, + "name": "users", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 17, + "character": 23 + } + ], + "type": { + "type": "reference", + "name": "UserManager" + } + }, + { + "id": 25, + "name": "captureRejectionSymbol", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 46, + "character": 46 + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "id": 25, + "name": "captureRejectionSymbol" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.captureRejectionSymbol" + } + }, + { + "id": 26, + "name": "captureRejections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true + }, + "comment": { + "shortText": "Sets or gets the default captureRejection value for all emitters." + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 52, + "character": 32 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.captureRejections" + } + }, + { + "id": 27, + "name": "defaultMaxListeners", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 53, + "character": 34 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.defaultMaxListeners" + } + }, + { + "id": 24, + "name": "errorMonitor", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true, + "isReadonly": true + }, + "comment": { + "shortText": "This symbol shall be used to install a listener for only monitoring `'error'`\nevents. Listeners installed using this symbol are called before the regular\n`'error'` listeners are called.", + "text": "Installing a listener using this symbol does not change the behavior once an\n`'error'` event is emitted, therefore the process will still crash if no\nregular `'error'` listener is installed.\n" + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 45, + "character": 36 + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "id": 24, + "name": "errorMonitor" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.errorMonitor" + } + }, + { + "id": 37, + "name": "addListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 38, + "name": "addListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 39, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 40, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 41, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 42, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 43, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.addListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.addListener" + } + }, + { + "id": 86, + "name": "emit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 87, + "name": "emit", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 88, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 89, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.emit" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.emit" + } + }, + { + "id": 107, + "name": "eventNames", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 108, + "name": "eventNames", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.eventNames" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.eventNames" + } + }, + { + "id": 78, + "name": "getMaxListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 79, + "name": "getMaxListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getMaxListeners" + } + }, + { + "id": 90, + "name": "listenerCount", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 91, + "name": "listenerCount", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 92, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listenerCount" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listenerCount" + } + }, + { + "id": 80, + "name": "listeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 81, + "name": "listeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 82, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "name": "Function" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listeners" + } + }, + { + "id": 65, + "name": "off", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 66, + "name": "off", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 67, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 68, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 69, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 70, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 71, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.off" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.off" + } + }, + { + "id": 44, + "name": "on", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 45, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 46, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 47, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 48, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 49, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 50, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + }, + { + "id": 51, + "name": "once", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 52, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 53, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 54, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 55, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 56, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 57, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + }, + { + "id": 93, + "name": "prependListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 94, + "name": "prependListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 95, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 96, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 97, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 98, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 99, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependListener" + } + }, + { + "id": 100, + "name": "prependOnceListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 101, + "name": "prependOnceListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 102, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 103, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 104, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 105, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 106, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependOnceListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependOnceListener" + } + }, + { + "id": 83, + "name": "rawListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 84, + "name": "rawListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 85, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "name": "Function" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.rawListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.rawListeners" + } + }, + { + "id": 72, + "name": "removeAllListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 73, + "name": "removeAllListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 74, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeAllListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeAllListeners" + } + }, + { + "id": 58, + "name": "removeListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 59, + "name": "removeListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 60, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 61, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 62, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 63, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 64, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeListener" + } + }, + { + "id": 75, + "name": "setMaxListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 76, + "name": "setMaxListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 77, + "name": "n", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.setMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.setMaxListeners" + } + }, + { + "id": 20, + "name": "getEventListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 34, + "character": 31 + } + ], + "signatures": [ + { + "id": 21, + "name": "getEventListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns a list listener for a specific emitter event name." + }, + "parameters": [ + { + "id": 22, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "name": "DOMEventTarget" + }, + { + "type": "reference", + "name": "EventEmitter" + } + ] + } + }, + { + "id": 23, + "name": "name", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "name": "Function" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getEventListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getEventListener" + } + }, + { + "id": 16, + "name": "listenerCount", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 30, + "character": 28 + } + ], + "signatures": [ + { + "id": 17, + "name": "listenerCount", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "comment": { + "tags": [ + { + "tag": "deprecated", + "text": "since v4.0.0" + } + ] + }, + "parameters": [ + { + "id": 18, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "EventEmitter" + } + }, + { + "id": 19, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listenerCount" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listenerCount" + } + }, + { + "id": 11, + "name": "on", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 27, + "character": 17 + } + ], + "signatures": [ + { + "id": 12, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 13, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "EventEmitter" + } + }, + { + "id": 14, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 15, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "name": "StaticEventEmitterOptions" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "AsyncIterableIterator" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + }, + { + "id": 2, + "name": "once", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 25, + "character": 19 + } + ], + "signatures": [ + { + "id": 3, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 4, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "NodeEventTarget" + } + }, + { + "id": 5, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 6, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "name": "StaticEventEmitterOptions" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + }, + { + "id": 7, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 8, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "DOMEventTarget" + } + }, + { + "id": 9, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 10, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "name": "StaticEventEmitterOptions" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 28 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 36, + 32, + 33, + 31, + 34, + 35, + 25, + 26, + 27, + 24 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 37, + 86, + 107, + 78, + 90, + 80, + 65, + 44, + 51, + 93, + 100, + 83, + 72, + 58, + 75, + 20, + 16, + 11, + 2 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 12, + "character": 12 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "EventEmitter" + } + ] + }, + { + "id": 109, + "name": "Manager", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 110, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 111, + "name": "new Manager", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 112, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 113, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 114, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 8, + "character": 39 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 115, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 8, + "character": 52 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 114, + 115 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 109, + "name": "BaseManager" + } + } + ] + }, + { + "id": 118, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 7, + "character": 7 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Collection" + } + }, + { + "id": 116, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 5, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 117, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 6, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 119, + "name": "add", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 14, + "character": 5 + } + ], + "signatures": [ + { + "id": 120, + "name": "add", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 121, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 122, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + ] + }, + { + "id": 123, + "name": "resolve", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 19, + "character": 9 + } + ], + "signatures": [ + { + "id": 124, + "name": "resolve", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 125, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 110 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 118, + 116, + 117 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 119, + 123 + ] + } + ], + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 4, + "character": 17 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1, + 109 + ] + } + ], + "sources": [ + { + "fileName": "src/index.ts", + "line": 1, + "character": 0 + } + ] +} \ No newline at end of file From 537c52e811e475b79bcb17fecc3d5b28230d404a Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 12 Jul 2021 20:27:12 +0530 Subject: [PATCH 27/79] feat: minor --- src/managers/index.ts | 14 +++++++++++++- src/structures/index.ts | 24 +++++++++++++++++++++++- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/src/managers/index.ts b/src/managers/index.ts index 217b688..9b0d1df 100644 --- a/src/managers/index.ts +++ b/src/managers/index.ts @@ -1,3 +1,15 @@ import Manager from "./manager"; +import ArtifactsManager from "./artifactsManager"; +import ForkManager from "./forkmanager"; +import IssueManager from "./issuemanager"; +import RepoManager from "./repomanager"; +import UserManager from "./usermanager"; -export { Manager }; +export { + Manager, + ArtifactsManager, + ForkManager, + IssueManager, + RepoManager, + UserManager, +}; diff --git a/src/structures/index.ts b/src/structures/index.ts index f03d7ab..2c38001 100644 --- a/src/structures/index.ts +++ b/src/structures/index.ts @@ -1,3 +1,25 @@ import Client from "./client"; +import Actions from "./actions"; +import Base from "./base"; +import Blocks from "./blocks"; +import ClientUser from "./clientuser"; +import Emails from "./emails"; +import Follows from "./follows"; +import Gist from "./gist"; +import Issue from "./issue"; +import Repo from "./repo"; +import User from "./user"; -export { Client }; +export { + Client, + Actions, + Base, + Blocks, + ClientUser, + Emails, + Follows, + Gist, + Issue, + Repo, + User, +}; From 6a9c9fb9fe7c66d68012a37be97e4ede1cca3f56 Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Mon, 12 Jul 2021 14:57:49 +0000 Subject: [PATCH 28/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 64738 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 63423 insertions(+), 1315 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index f637244..3a2a8e1 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -7,351 +7,542 @@ "originalName": "", "children": [ { - "id": 1, - "name": "Client", + "id": 109, + "name": "Actions", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 28, + "id": 110, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 29, - "name": "new Client", + "id": 111, + "name": "new Actions", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 30, - "name": "options", + "id": 112, + "name": "client", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ClientOptions" - }, - "defaultValue": "{}" + "id": 1, + "name": "Client" + } + }, + { + "id": 113, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 114, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 115, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/actions.ts", + "line": 9, + "character": 53 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 116, + "name": "repo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/actions.ts", + "line": 9, + "character": 67 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 115, + 116 + ] + } + ] + } + } } ], "type": { "type": "reference", - "id": 1, - "name": "Client" + "id": 109, + "name": "Actions" }, "overwrites": { "type": "reference", - "name": "Events.EventEmitter.constructor" + "id": 123, + "name": "Base.constructor" } } ], "overwrites": { "type": "reference", - "name": "Events.EventEmitter.constructor" + "id": 122, + "name": "Base.constructor" } }, { - "id": 36, - "name": "api", + "id": 117, + "name": "artifacts", "kind": 1024, "kindString": "Property", - "flags": { - "isPublic": true, - "isReadonly": true - }, + "flags": {}, "sources": [ { - "fileName": "src/structures/client.ts", - "line": 18, - "character": 21 + "fileName": "src/structures/actions.ts", + "line": 6, + "character": 13 } ], "type": { "type": "reference", - "name": "RestManager" + "id": 2847, + "name": "ArtifactsManager" } }, { - "id": 32, - "name": "cache", + "id": 120, + "name": "client", "kind": 1024, "kindString": "Property", - "flags": { - "isPublic": true, - "isOptional": true, - "isReadonly": true - }, + "flags": {}, "sources": [ { - "fileName": "src/structures/client.ts", - "line": 14, - "character": 23 + "fileName": "src/structures/base.ts", + "line": 4, + "character": 8 } ], "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "boolean" - } - ] + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 125, + "name": "Base.client" } }, { - "id": 33, - "name": "ready", + "id": 118, + "name": "owner", "kind": 1024, "kindString": "Property", - "flags": { - "isPublic": true - }, + "flags": {}, "sources": [ { - "fileName": "src/structures/client.ts", - "line": 15, - "character": 14 + "fileName": "src/structures/actions.ts", + "line": 7, + "character": 9 } ], "type": { "type": "intrinsic", - "name": "boolean" + "name": "string" } }, { - "id": 31, - "name": "token", + "id": 119, + "name": "repo", "kind": 1024, "kindString": "Property", - "flags": { - "isPublic": true, - "isOptional": true, - "isReadonly": true - }, + "flags": {}, "sources": [ { - "fileName": "src/structures/client.ts", - "line": 13, - "character": 23 + "fileName": "src/structures/actions.ts", + "line": 8, + "character": 8 } ], "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "intrinsic", - "name": "string" - } - ] + "type": "intrinsic", + "name": "string" } - }, + } + ], + "groups": [ { - "id": 34, - "name": "user", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 16, - "character": 13 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "literal", - "value": null - }, - { - "type": "reference", - "name": "ClientUser" - } - ] - } + "title": "Constructors", + "kind": 512, + "children": [ + 110 + ] }, { - "id": 35, - "name": "users", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { - "isPublic": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "src/structures/client.ts", - "line": 17, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "UserManager" - } - }, + "children": [ + 117, + 120, + 118, + 119 + ] + } + ], + "sources": [ { - "id": 25, - "name": "captureRejectionSymbol", - "kind": 1024, - "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true, - "isReadonly": true - }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 46, - "character": 46 - } - ], - "type": { - "type": "query", - "queryType": { - "type": "reference", - "id": 25, - "name": "captureRejectionSymbol" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.captureRejectionSymbol" - } - }, + "fileName": "src/structures/actions.ts", + "line": 5, + "character": 13 + } + ], + "extendedTypes": [ { - "id": 26, - "name": "captureRejections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true - }, - "comment": { - "shortText": "Sets or gets the default captureRejection value for all emitters." - }, + "type": "reference", + "id": 121, + "name": "Base" + } + ] + }, + { + "id": 2847, + "name": "ArtifactsManager", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 2848, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 2849, + "name": "new ArtifactsManager", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2850, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2851, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2852, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 9, + "character": 24 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2852 + ] + } + ] + } + } + }, + { + "id": 2853, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2854, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2855, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 10, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2856, + "name": "repo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 10, + "character": 42 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2855, + 2856 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 2847, + "name": "ArtifactsManager" + }, + "overwrites": { + "type": "reference", + "id": 2832, + "name": "Manager.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 2831, + "name": "Manager.constructor" + } + }, + { + "id": 2876, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": {}, "sources": [ { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 52, - "character": 32 + "fileName": "src/managers/manager.ts", + "line": 7, + "character": 7 } ], "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Collection" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.captureRejections" + "id": 2839, + "name": "Manager.cache" } }, { - "id": 27, - "name": "defaultMaxListeners", + "id": 2874, + "name": "client", "kind": 1024, "kindString": "Property", - "flags": { - "isStatic": true, - "isExternal": true - }, + "flags": {}, "sources": [ { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 53, - "character": 34 + "fileName": "src/managers/manager.ts", + "line": 5, + "character": 8 } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "reference", + "id": 1, + "name": "Client" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.defaultMaxListeners" + "id": 2837, + "name": "Manager.client" } }, { - "id": 24, - "name": "errorMonitor", + "id": 2857, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 6, + "character": 7 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2858, + "name": "repo", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 7, + "character": 6 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2875, + "name": "url", "kind": 1024, "kindString": "Property", "flags": { - "isStatic": true, - "isExternal": true, - "isReadonly": true - }, - "comment": { - "shortText": "This symbol shall be used to install a listener for only monitoring `'error'`\nevents. Listeners installed using this symbol are called before the regular\n`'error'` listeners are called.", - "text": "Installing a listener using this symbol does not change the behavior once an\n`'error'` event is emitted, therefore the process will still crash if no\nregular `'error'` listener is installed.\n" + "isOptional": true }, "sources": [ { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 45, - "character": 36 + "fileName": "src/managers/manager.ts", + "line": 6, + "character": 5 } ], "type": { - "type": "query", - "queryType": { - "type": "reference", - "id": 24, - "name": "errorMonitor" - } + "type": "intrinsic", + "name": "string" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.errorMonitor" + "id": 2838, + "name": "Manager.url" } }, { - "id": 37, - "name": "addListener", + "id": 2877, + "name": "add", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 14, + "character": 5 + } + ], "signatures": [ { - "id": 38, - "name": "addListener", + "id": 2878, + "name": "add", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 39, - "name": "event", + "id": 2879, + "name": "id", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -361,314 +552,309 @@ }, { "type": "intrinsic", - "name": "symbol" + "name": "number" } ] } }, { - "id": 40, - "name": "listener", + "id": 2880, + "name": "data", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 41, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 42, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 43, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } + "type": "intrinsic", + "name": "any" } } ], "type": { - "type": "reference", - "id": 1, - "name": "Client" + "type": "intrinsic", + "name": "any" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.addListener" + "id": 2841, + "name": "Manager.add" } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.addListener" + "id": 2840, + "name": "Manager.add" } }, { - "id": 86, - "name": "emit", + "id": 2868, + "name": "delete", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 37, + "character": 14 + } + ], "signatures": [ { - "id": 87, - "name": "emit", + "id": 2869, + "name": "delete", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 88, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 89, - "name": "args", + "id": 2870, + "name": "artifactId", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, + "flags": {}, "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } + "type": "intrinsic", + "name": "number" } } ], "type": { - "type": "intrinsic", - "name": "boolean" - }, - "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.emit" + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.emit" - } + ] }, { - "id": 107, - "name": "eventNames", + "id": 2871, + "name": "download", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 45, + "character": 16 + } + ], "signatures": [ { - "id": 108, - "name": "eventNames", + "id": 2872, + "name": "download", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "type": { - "type": "array", - "elementType": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] + "flags": {}, + "parameters": [ + { + "id": 2873, + "name": "artifactId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } } - }, - "inheritedFrom": { + ], + "type": { "type": "reference", - "name": "Events.EventEmitter.eventNames" + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.eventNames" - } + ] }, { - "id": 78, - "name": "getMaxListeners", + "id": 2865, + "name": "get", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 29, + "character": 11 + } + ], "signatures": [ { - "id": 79, - "name": "getMaxListeners", + "id": 2866, + "name": "get", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, + "parameters": [ + { + "id": 2867, + "name": "artifactId", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.getMaxListeners" + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.getMaxListeners" - } + ] }, { - "id": 90, - "name": "listenerCount", + "id": 2859, + "name": "list", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, - "signatures": [ + "flags": {}, + "sources": [ { - "id": 91, - "name": "listenerCount", + "fileName": "src/managers/artifactsManager.ts", + "line": 16, + "character": 12 + } + ], + "signatures": [ + { + "id": 2860, + "name": "list", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 92, - "name": "event", + "id": 2861, + "name": "options", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] + "type": "reflection", + "declaration": { + "id": 2862, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2863, + "name": "page", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 16, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2864, + "name": "perPage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 16, + "character": 46 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2863, + 2864 + ] + } + ] + } } } ], "type": { - "type": "intrinsic", - "name": "number" - }, - "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.listenerCount" + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.listenerCount" - } + ] }, { - "id": 80, - "name": "listeners", + "id": 2881, + "name": "resolve", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 19, + "character": 9 + } + ], "signatures": [ { - "id": 81, - "name": "listeners", + "id": 2882, + "name": "resolve", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 82, - "name": "event", + "id": 2883, + "name": "id", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -678,460 +864,515 @@ }, { "type": "intrinsic", - "name": "symbol" + "name": "number" } ] } } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "Function" - } + "type": "intrinsic", + "name": "any" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.listeners" + "id": 2845, + "name": "Manager.resolve" } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.listeners" + "id": 2844, + "name": "Manager.resolve" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2848 + ] }, { - "id": 65, - "name": "off", + "title": "Properties", + "kind": 1024, + "children": [ + 2876, + 2874, + 2857, + 2858, + 2875 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, + "children": [ + 2877, + 2868, + 2871, + 2865, + 2859, + 2881 + ] + } + ], + "sources": [ + { + "fileName": "src/managers/artifactsManager.ts", + "line": 5, + "character": 22 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 2830, + "name": "Manager" + } + ] + }, + { + "id": 121, + "name": "Base", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 122, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, "signatures": [ { - "id": 66, - "name": "off", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "id": 123, + "name": "new Base", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, "parameters": [ { - "id": 67, - "name": "event", + "id": 124, + "name": "client", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 68, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 69, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 70, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 71, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } + "type": "reference", + "id": 1, + "name": "Client" } } ], "type": { "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.off" + "id": 121, + "name": "Base" } } + ] + }, + { + "id": 125, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/base.ts", + "line": 4, + "character": 8 + } ], - "inheritedFrom": { + "type": { "type": "reference", - "name": "Events.EventEmitter.off" + "id": 1, + "name": "Client" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 122 + ] }, { - "id": 44, - "name": "on", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExternal": true - }, + "title": "Properties", + "kind": 1024, + "children": [ + 125 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/base.ts", + "line": 3, + "character": 10 + } + ], + "extendedBy": [ + { + "type": "reference", + "id": 109, + "name": "Actions" + }, + { + "type": "reference", + "id": 126, + "name": "Blocks" + }, + { + "type": "reference", + "id": 326, + "name": "Emails" + }, + { + "type": "reference", + "id": 360, + "name": "Gist" + }, + { + "type": "reference", + "id": 816, + "name": "Repo" + } + ] + }, + { + "id": 126, + "name": "Blocks", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 127, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, "signatures": [ { - "id": 45, - "name": "on", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "id": 128, + "name": "new Blocks", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, "parameters": [ { - "id": 46, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 47, - "name": "listener", + "id": 129, + "name": "client", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 48, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 49, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 50, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } + "type": "reference", + "id": 1, + "name": "Client" } } ], "type": { "type": "reference", - "id": 1, - "name": "Client" + "id": 126, + "name": "Blocks" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Events.EventEmitter.on" + "id": 123, + "name": "Base.constructor" } } ], + "overwrites": { + "type": "reference", + "id": 122, + "name": "Base.constructor" + } + }, + { + "id": 141, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/base.ts", + "line": 4, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.on" + "id": 125, + "name": "Base.client" } }, { - "id": 51, - "name": "once", + "id": 138, + "name": "block", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/structures/blocks.ts", + "line": 54, + "character": 13 + } + ], "signatures": [ { - "id": 52, - "name": "once", + "id": 139, + "name": "block", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 53, - "name": "event", + "id": 140, + "name": "username", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] + "type": "intrinsic", + "name": "string" } - }, + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "boolean" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 132, + "name": "has", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/blocks.ts", + "line": 29, + "character": 11 + } + ], + "signatures": [ + { + "id": 133, + "name": "has", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 54, - "name": "listener", + "id": 134, + "name": "username", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 55, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 56, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 57, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } + "type": "intrinsic", + "name": "string" } } ], "type": { "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" + "typeArguments": [ + { + "type": "intrinsic", + "name": "boolean" + } + ], + "name": "Promise" } } + ] + }, + { + "id": 130, + "name": "list", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/blocks.ts", + "line": 13, + "character": 12 + } ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } + "signatures": [ + { + "id": 131, + "name": "list", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "reference", + "id": 2692, + "name": "User" + } + } + ], + "name": "Promise" + } + } + ] }, { - "id": 93, - "name": "prependListener", + "id": 135, + "name": "unBlock", "kind": 2048, "kindString": "Method", - "flags": { - "isExternal": true - }, + "flags": {}, + "sources": [ + { + "fileName": "src/structures/blocks.ts", + "line": 43, + "character": 15 + } + ], "signatures": [ { - "id": 94, - "name": "prependListener", + "id": 136, + "name": "unBlock", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 95, - "name": "event", + "id": 137, + "name": "username", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] + "type": "intrinsic", + "name": "string" } - }, + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "boolean" + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 127 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 141 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 138, + 132, + 130, + 135 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/blocks.ts", + "line": 8, + "character": 12 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 121, + "name": "Base" + } + ] + }, + { + "id": 1, + "name": "Client", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 28, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 29, + "name": "new Client", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ { - "id": 96, - "name": "listener", + "id": 30, + "name": "options", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 97, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 98, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 99, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } + "type": "reference", + "name": "ClientOptions" + }, + "defaultValue": "{}" } ], "type": { @@ -1139,258 +1380,301 @@ "id": 1, "name": "Client" }, - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Events.EventEmitter.prependListener" + "name": "Events.EventEmitter.constructor" } } ], - "inheritedFrom": { + "overwrites": { "type": "reference", - "name": "Events.EventEmitter.prependListener" + "name": "Events.EventEmitter.constructor" } }, { - "id": 100, - "name": "prependOnceListener", - "kind": 2048, - "kindString": "Method", + "id": 36, + "name": "api", + "kind": 1024, + "kindString": "Property", "flags": { - "isExternal": true + "isPublic": true, + "isReadonly": true }, - "signatures": [ + "sources": [ { - "id": 101, - "name": "prependOnceListener", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 102, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - }, - { - "id": 103, - "name": "listener", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reflection", - "declaration": { - "id": 104, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": { - "isExternal": true - }, - "signatures": [ - { - "id": 105, - "name": "__type", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 106, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isRest": true - }, - "type": { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - } - ], - "type": { - "type": "intrinsic", - "name": "void" - } - } - ] - } - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.prependOnceListener" - } + "fileName": "src/structures/client.ts", + "line": 18, + "character": 21 } ], - "inheritedFrom": { + "type": { "type": "reference", - "name": "Events.EventEmitter.prependOnceListener" + "name": "RestManager" } }, { - "id": 83, - "name": "rawListeners", - "kind": 2048, - "kindString": "Method", + "id": 32, + "name": "cache", + "kind": 1024, + "kindString": "Property", "flags": { - "isExternal": true + "isPublic": true, + "isOptional": true, + "isReadonly": true }, - "signatures": [ + "sources": [ { - "id": 84, - "name": "rawListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 85, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "Function" - } - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.rawListeners" - } + "fileName": "src/structures/client.ts", + "line": 14, + "character": 23 } ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.rawListeners" + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] } }, { - "id": 72, - "name": "removeAllListeners", - "kind": 2048, - "kindString": "Method", + "id": 33, + "name": "ready", + "kind": 1024, + "kindString": "Property", "flags": { - "isExternal": true + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 73, - "name": "removeAllListeners", - "kind": 4096, - "kindString": "Call signature", - "flags": { - "isExternal": true - }, - "parameters": [ - { - "id": 74, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isOptional": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "symbol" - } - ] - } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.removeAllListeners" - } + "fileName": "src/structures/client.ts", + "line": 15, + "character": 14 } ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.removeAllListeners" + "type": { + "type": "intrinsic", + "name": "boolean" } }, { - "id": 58, - "name": "removeListener", - "kind": 2048, - "kindString": "Method", + "id": 31, + "name": "token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isOptional": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 13, + "character": 23 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 34, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 16, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reference", + "id": 142, + "name": "ClientUser" + } + ] + } + }, + { + "id": 35, + "name": "users", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 17, + "character": 23 + } + ], + "type": { + "type": "reference", + "id": 2939, + "name": "UserManager" + } + }, + { + "id": 25, + "name": "captureRejectionSymbol", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 46, + "character": 46 + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "id": 25, + "name": "captureRejectionSymbol" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.captureRejectionSymbol" + } + }, + { + "id": 26, + "name": "captureRejections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true + }, + "comment": { + "shortText": "Sets or gets the default captureRejection value for all emitters." + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 52, + "character": 32 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.captureRejections" + } + }, + { + "id": 27, + "name": "defaultMaxListeners", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 53, + "character": 34 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.defaultMaxListeners" + } + }, + { + "id": 24, + "name": "errorMonitor", + "kind": 1024, + "kindString": "Property", + "flags": { + "isStatic": true, + "isExternal": true, + "isReadonly": true + }, + "comment": { + "shortText": "This symbol shall be used to install a listener for only monitoring `'error'`\nevents. Listeners installed using this symbol are called before the regular\n`'error'` listeners are called.", + "text": "Installing a listener using this symbol does not change the behavior once an\n`'error'` event is emitted, therefore the process will still crash if no\nregular `'error'` listener is installed.\n" + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 45, + "character": 36 + } + ], + "type": { + "type": "query", + "queryType": { + "type": "reference", + "id": 24, + "name": "errorMonitor" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.errorMonitor" + } + }, + { + "id": 37, + "name": "addListener", + "kind": 2048, + "kindString": "Method", "flags": { "isExternal": true }, "signatures": [ { - "id": 59, - "name": "removeListener", + "id": 38, + "name": "addListener", "kind": 4096, "kindString": "Call signature", "flags": { @@ -1398,7 +1682,7 @@ }, "parameters": [ { - "id": 60, + "id": 39, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -1420,7 +1704,7 @@ } }, { - "id": 61, + "id": 40, "name": "listener", "kind": 32768, "kindString": "Parameter", @@ -1430,7 +1714,7 @@ "type": { "type": "reflection", "declaration": { - "id": 62, + "id": 41, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -1439,7 +1723,7 @@ }, "signatures": [ { - "id": 63, + "id": 42, "name": "__type", "kind": 4096, "kindString": "Call signature", @@ -1448,7 +1732,7 @@ }, "parameters": [ { - "id": 64, + "id": 43, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -1482,18 +1766,18 @@ }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.removeListener" + "name": "Events.EventEmitter.addListener" } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.removeListener" + "name": "Events.EventEmitter.addListener" } }, { - "id": 75, - "name": "setMaxListeners", + "id": 86, + "name": "emit", "kind": 2048, "kindString": "Method", "flags": { @@ -1501,8 +1785,8 @@ }, "signatures": [ { - "id": 76, - "name": "setMaxListeners", + "id": 87, + "name": "emit", "kind": 4096, "kindString": "Call signature", "flags": { @@ -1510,89 +1794,157 @@ }, "parameters": [ { - "id": 77, - "name": "n", + "id": 88, + "name": "event", "kind": 32768, "kindString": "Parameter", "flags": { "isExternal": true }, "type": { - "type": "intrinsic", - "name": "number" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] } - } - ], - "type": { - "type": "reference", - "id": 1, - "name": "Client" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.setMaxListeners" - } + }, + { + "id": 89, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.emit" + } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.setMaxListeners" + "name": "Events.EventEmitter.emit" } }, { - "id": 20, - "name": "getEventListener", + "id": 107, + "name": "eventNames", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, "isExternal": true }, - "sources": [ + "signatures": [ { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 34, - "character": 31 + "id": 108, + "name": "eventNames", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "type": { + "type": "array", + "elementType": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.eventNames" + } } ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.eventNames" + } + }, + { + "id": 78, + "name": "getMaxListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, "signatures": [ { - "id": 21, - "name": "getEventListener", + "id": 79, + "name": "getMaxListeners", "kind": 4096, "kindString": "Call signature", "flags": { "isExternal": true }, - "comment": { - "shortText": "Returns a list listener for a specific emitter event name." + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getMaxListeners" + } + }, + { + "id": 90, + "name": "listenerCount", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 91, + "name": "listenerCount", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true }, "parameters": [ { - "id": 22, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "DOMEventTarget" - }, - { - "type": "reference", - "name": "EventEmitter" - } - ] - } - }, - { - "id": 23, - "name": "name", + "id": 92, + "name": "event", "kind": 32768, "kindString": "Parameter", "flags": { @@ -1614,72 +1966,40 @@ } ], "type": { - "type": "array", - "elementType": { - "type": "reference", - "name": "Function" - } + "type": "intrinsic", + "name": "number" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.getEventListener" + "name": "Events.EventEmitter.listenerCount" } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.getEventListener" + "name": "Events.EventEmitter.listenerCount" } }, { - "id": 16, - "name": "listenerCount", + "id": 80, + "name": "listeners", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, "isExternal": true }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 30, - "character": 28 - } - ], "signatures": [ { - "id": 17, - "name": "listenerCount", + "id": 81, + "name": "listeners", "kind": 4096, "kindString": "Call signature", "flags": { "isExternal": true }, - "comment": { - "tags": [ - { - "tag": "deprecated", - "text": "since v4.0.0" - } - ] - }, "parameters": [ { - "id": 18, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "EventEmitter" - } - }, - { - "id": 19, + "id": 82, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -1702,40 +2022,35 @@ } ], "type": { - "type": "intrinsic", - "name": "number" + "type": "array", + "elementType": { + "type": "reference", + "name": "Function" + } }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.listenerCount" + "name": "Events.EventEmitter.listeners" } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.listenerCount" + "name": "Events.EventEmitter.listeners" } }, { - "id": 11, - "name": "on", + "id": 65, + "name": "off", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, "isExternal": true }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 27, - "character": 17 - } - ], "signatures": [ { - "id": 12, - "name": "on", + "id": 66, + "name": "off", "kind": 4096, "kindString": "Call signature", "flags": { @@ -1743,20 +2058,7 @@ }, "parameters": [ { - "id": 13, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "EventEmitter" - } - }, - { - "id": 14, + "id": 67, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -1764,66 +2066,103 @@ "isExternal": true }, "type": { - "type": "intrinsic", - "name": "string" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] } }, { - "id": 15, - "name": "options", + "id": 68, + "name": "listener", "kind": 32768, "kindString": "Parameter", "flags": { - "isExternal": true, - "isOptional": true + "isExternal": true }, "type": { - "type": "reference", - "name": "StaticEventEmitterOptions" + "type": "reflection", + "declaration": { + "id": 69, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 70, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 71, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } } } ], "type": { "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "AsyncIterableIterator" + "id": 1, + "name": "Client" }, "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.on" + "name": "Events.EventEmitter.off" } } ], "inheritedFrom": { "type": "reference", - "name": "Events.EventEmitter.on" + "name": "Events.EventEmitter.off" } }, { - "id": 2, - "name": "once", + "id": 44, + "name": "on", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, "isExternal": true }, - "sources": [ - { - "fileName": "node_modules/@types/node/events.d.ts", - "line": 25, - "character": 19 - } - ], "signatures": [ { - "id": 3, - "name": "once", + "id": 45, + "name": "on", "kind": 4096, "kindString": "Call signature", "flags": { @@ -1831,20 +2170,119 @@ }, "parameters": [ { - "id": 4, - "name": "emitter", + "id": 46, + "name": "event", "kind": 32768, "kindString": "Parameter", "flags": { "isExternal": true }, "type": { - "type": "reference", - "name": "NodeEventTarget" + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] } }, { - "id": 5, + "id": 47, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 48, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 49, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 50, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + }, + { + "id": 51, + "name": "once", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 52, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 53, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -1866,111 +2304,61557 @@ } }, { - "id": 6, - "name": "options", + "id": 54, + "name": "listener", "kind": 32768, "kindString": "Parameter", "flags": { - "isExternal": true, - "isOptional": true + "isExternal": true }, "type": { - "type": "reference", - "name": "StaticEventEmitterOptions" + "type": "reflection", + "declaration": { + "id": 55, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 56, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 57, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } } } ], "type": { "type": "reference", - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - ], - "name": "Promise" + "id": 1, + "name": "Client" }, "inheritedFrom": { "type": "reference", "name": "Events.EventEmitter.once" } - }, + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + }, + { + "id": 93, + "name": "prependListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 94, + "name": "prependListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 95, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 96, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 97, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 98, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 99, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependListener" + } + }, + { + "id": 100, + "name": "prependOnceListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 101, + "name": "prependOnceListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 102, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 103, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 104, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 105, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 106, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependOnceListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.prependOnceListener" + } + }, + { + "id": 83, + "name": "rawListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 84, + "name": "rawListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 85, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "name": "Function" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.rawListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.rawListeners" + } + }, + { + "id": 72, + "name": "removeAllListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 73, + "name": "removeAllListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 74, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeAllListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeAllListeners" + } + }, + { + "id": 58, + "name": "removeListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 59, + "name": "removeListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 60, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 61, + "name": "listener", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reflection", + "declaration": { + "id": 62, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 63, + "name": "__type", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 64, + "name": "args", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + } + ], + "type": { + "type": "intrinsic", + "name": "void" + } + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.removeListener" + } + }, + { + "id": 75, + "name": "setMaxListeners", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExternal": true + }, + "signatures": [ + { + "id": 76, + "name": "setMaxListeners", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 77, + "name": "n", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.setMaxListeners" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.setMaxListeners" + } + }, + { + "id": 20, + "name": "getEventListener", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 34, + "character": 31 + } + ], + "signatures": [ + { + "id": 21, + "name": "getEventListener", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns a list listener for a specific emitter event name." + }, + "parameters": [ + { + "id": 22, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "reference", + "name": "DOMEventTarget" + }, + { + "type": "reference", + "name": "EventEmitter" + } + ] + } + }, + { + "id": 23, + "name": "name", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reference", + "name": "Function" + } + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getEventListener" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.getEventListener" + } + }, + { + "id": 16, + "name": "listenerCount", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 30, + "character": 28 + } + ], + "signatures": [ + { + "id": 17, + "name": "listenerCount", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "comment": { + "tags": [ + { + "tag": "deprecated", + "text": "since v4.0.0" + } + ] + }, + "parameters": [ + { + "id": 18, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "EventEmitter" + } + }, + { + "id": 19, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listenerCount" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.listenerCount" + } + }, + { + "id": 11, + "name": "on", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 27, + "character": 17 + } + ], + "signatures": [ + { + "id": 12, + "name": "on", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 13, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "EventEmitter" + } + }, + { + "id": 14, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 15, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "name": "StaticEventEmitterOptions" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "AsyncIterableIterator" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.on" + } + }, + { + "id": 2, + "name": "once", + "kind": 2048, + "kindString": "Method", + "flags": { + "isStatic": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@types/node/events.d.ts", + "line": 25, + "character": 19 + } + ], + "signatures": [ + { + "id": 3, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 4, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "NodeEventTarget" + } + }, + { + "id": 5, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "symbol" + } + ] + } + }, + { + "id": 6, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "name": "StaticEventEmitterOptions" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + }, + { + "id": 7, + "name": "once", + "kind": 4096, + "kindString": "Call signature", + "flags": { + "isExternal": true + }, + "parameters": [ + { + "id": 8, + "name": "emitter", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "reference", + "name": "DOMEventTarget" + } + }, + { + "id": 9, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 10, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isExternal": true, + "isOptional": true + }, + "type": { + "type": "reference", + "name": "StaticEventEmitterOptions" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "any" + } + } + ], + "name": "Promise" + }, + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + } + ], + "inheritedFrom": { + "type": "reference", + "name": "Events.EventEmitter.once" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 28 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 36, + 32, + 33, + 31, + 34, + 35, + 25, + 26, + 27, + 24 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 37, + 86, + 107, + 78, + 90, + 80, + 65, + 44, + 51, + 93, + 100, + 83, + 72, + 58, + 75, + 20, + 16, + 11, + 2 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/client.ts", + "line": 12, + "character": 12 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "EventEmitter" + } + ] + }, + { + "id": 142, + "name": "ClientUser", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 143, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 144, + "name": "new ClientUser", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 145, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 146, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 150, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10671, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 171, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10692, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 167, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10688, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 192, + "name": "business_plus", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10713, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 183, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10704, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 166, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10687, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 177, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10698, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 182, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 169, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10690, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 161, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10682, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 175, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10696, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 154, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10675, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 176, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10697, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 155, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10676, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 156, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 151, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10672, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 170, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10691, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 153, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 148, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10669, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 193, + "name": "ldap_dn", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10714, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 168, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10689, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 147, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10668, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 165, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10686, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 149, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10670, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 159, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10680, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 181, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10702, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 185, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10706, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 186, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 187, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10707, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 188, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10708, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 190, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10710, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 189, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10709, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 187, + 188, + 190, + 189 + ] + } + ] + } + } + }, + { + "id": 179, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10700, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 174, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10695, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 173, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 162, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10683, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 160, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10681, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 164, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10685, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 157, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10678, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 158, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10679, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 191, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10712, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 180, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10701, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 172, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10693, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 184, + "name": "two_factor_authentication", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10705, + "character": 31 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 163, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10684, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 178, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10699, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 152, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10673, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 150, + 171, + 167, + 192, + 183, + 166, + 177, + 182, + 169, + 161, + 175, + 154, + 176, + 155, + 156, + 151, + 170, + 153, + 148, + 193, + 168, + 147, + 165, + 149, + 159, + 181, + 185, + 179, + 174, + 173, + 162, + 160, + 164, + 157, + 158, + 191, + 180, + 172, + 184, + 163, + 178, + 152 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 194, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 198, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6227, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 219, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6248, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 215, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6244, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 238, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6267, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 214, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6243, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 225, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6254, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 237, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6266, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 217, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6246, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 209, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6238, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 223, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6252, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 202, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6231, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 224, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6253, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 203, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6232, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 204, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6233, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 199, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6228, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 218, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6247, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 201, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6230, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 196, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6225, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 216, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6245, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 195, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6224, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 213, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6242, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 197, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6226, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 207, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6236, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 236, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6265, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 227, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6256, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 228, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 229, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6257, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 230, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6258, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 232, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6260, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 231, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6259, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 229, + 230, + 232, + 231 + ] + } + ] + } + } + }, + { + "id": 234, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6263, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 222, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6251, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 221, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6250, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 210, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6239, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 208, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6237, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 212, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6241, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 205, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6234, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 206, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6235, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 233, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6262, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 235, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6264, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 220, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6249, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 211, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6240, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 226, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6255, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 200, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6229, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 198, + 219, + 215, + 238, + 214, + 225, + 237, + 217, + 209, + 223, + 202, + 224, + 203, + 204, + 199, + 218, + 201, + 196, + 216, + 195, + 213, + 197, + 207, + 236, + 227, + 234, + 222, + 221, + 210, + 208, + 212, + 205, + 206, + 233, + 235, + 220, + 211, + 226, + 200 + ] + } + ] + } + } + ] + } + }, + { + "id": 239, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 240, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 241, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 22, + "character": 56 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 241 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 142, + "name": "ClientUser" + }, + "overwrites": { + "type": "reference", + "id": 2694, + "name": "User.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 2693, + "name": "User.constructor" + } + }, + { + "id": 295, + "name": "avatarUrl", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 17, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2799, + "name": "User.avatarUrl" + } + }, + { + "id": 315, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 37, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2819, + "name": "User.bio" + } + }, + { + "id": 247, + "name": "blocks", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 14, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 126, + "name": "Blocks" + } + }, + { + "id": 311, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 33, + "character": 6 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2815, + "name": "User.blog" + } + }, + { + "id": 291, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "tags": [ + { + "tag": "param", + "text": "raw data from api", + "param": "data" + }, + { + "tag": "param", + "text": "extra data\n", + "param": "extras" + } + ] + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 13, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 2795, + "name": "User.client" + } + }, + { + "id": 246, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 13, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 310, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 32, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2814, + "name": "User.company" + } + }, + { + "id": 321, + "name": "createdAt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 43, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2825, + "name": "User.createdAt" + } + }, + { + "id": 245, + "name": "diskUsage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 12, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 313, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 35, + "character": 7 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "id": 2817, + "name": "User.email" + } + }, + { + "id": 248, + "name": "emails", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 15, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 326, + "name": "Emails" + } + }, + { + "id": 306, + "name": "eventsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 28, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2810, + "name": "User.eventsUrl" + } + }, + { + "id": 319, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 41, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 2823, + "name": "User.followers" + } + }, + { + "id": 300, + "name": "followersUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 22, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2804, + "name": "User.followersUrl" + } + }, + { + "id": 320, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 42, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 2824, + "name": "User.following" + } + }, + { + "id": 299, + "name": "followingUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 21, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2803, + "name": "User.followingUrl" + } + }, + { + "id": 301, + "name": "gistsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 23, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2805, + "name": "User.gistsUrl" + } + }, + { + "id": 296, + "name": "gravatarId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 18, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2800, + "name": "User.gravatarId" + } + }, + { + "id": 314, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 36, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "id": 2818, + "name": "User.hireable" + } + }, + { + "id": 298, + "name": "htmlUrl", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 20, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2802, + "name": "User.htmlUrl" + } + }, + { + "id": 293, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 15, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 2797, + "name": "User.id" + } + }, + { + "id": 312, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 34, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2816, + "name": "User.location" + } + }, + { + "id": 292, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 14, + "character": 7 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2796, + "name": "User.login" + } + }, + { + "id": 294, + "name": "nodeId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 16, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2798, + "name": "User.nodeId" + } + }, + { + "id": 304, + "name": "organizationsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 26, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2808, + "name": "User.organizationsUrl" + } + }, + { + "id": 244, + "name": "ownedPrivateRepos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 11, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 249, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 16, + "character": 6 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 250, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 254, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 20, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 251, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 17, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 253, + "name": "privateRepos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 252, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 18, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 254, + 251, + 253, + 252 + ] + } + ] + } + } + }, + { + "id": 242, + "name": "privateGists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 9, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 318, + "name": "publicGists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 40, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 2822, + "name": "User.publicGists" + } + }, + { + "id": 317, + "name": "publicRepos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 39, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + }, + "inheritedFrom": { + "type": "reference", + "id": 2821, + "name": "User.publicRepos" + } + }, + { + "id": 307, + "name": "receivedEventsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 29, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2811, + "name": "User.receivedEventsUrl" + } + }, + { + "id": 305, + "name": "reposUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 27, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2809, + "name": "User.reposUrl" + } + }, + { + "id": 309, + "name": "siteAdmin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 31, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "inheritedFrom": { + "type": "reference", + "id": 2813, + "name": "User.siteAdmin" + } + }, + { + "id": 302, + "name": "starredUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 24, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2806, + "name": "User.starredUrl" + } + }, + { + "id": 303, + "name": "subscriptionsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 25, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2807, + "name": "User.subscriptionsUrl" + } + }, + { + "id": 243, + "name": "totalPrivateRepos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 10, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 316, + "name": "twitterUsername", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 38, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + }, + "inheritedFrom": { + "type": "reference", + "id": 2820, + "name": "User.twitterUsername" + } + }, + { + "id": 308, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 30, + "character": 6 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2812, + "name": "User.type" + } + }, + { + "id": 322, + "name": "updatedAt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 44, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2826, + "name": "User.updatedAt" + } + }, + { + "id": 297, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 19, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2801, + "name": "User.url" + } + }, + { + "id": 323, + "name": "_patch", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 80, + "character": 8 + } + ], + "signatures": [ + { + "id": 324, + "name": "_patch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 325, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "reference", + "id": 142, + "name": "ClientUser" + }, + "inheritedFrom": { + "type": "reference", + "id": 2828, + "name": "User._patch" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2827, + "name": "User._patch" + } + }, + { + "id": 279, + "name": "setAll", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 86, + "character": 14 + } + ], + "signatures": [ + { + "id": 280, + "name": "setAll", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 281, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 282, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 290, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 94, + "character": 7 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 285, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 89, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 287, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 91, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 283, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 87, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 289, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 93, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 288, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 92, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 284, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 88, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 286, + "name": "twitterUsername", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 90, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 290, + 285, + 287, + 283, + 289, + 288, + 284, + 286 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 276, + "name": "setBio", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 82, + "character": 14 + } + ], + "signatures": [ + { + "id": 277, + "name": "setBio", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 278, + "name": "bio", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 261, + "name": "setBlog", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 62, + "character": 15 + } + ], + "signatures": [ + { + "id": 262, + "name": "setBlog", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "returns": "- returns the updated user\n" + }, + "parameters": [ + { + "id": 263, + "name": "blog", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "A string that you want to set as Blog" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 267, + "name": "setCompany", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 70, + "character": 18 + } + ], + "signatures": [ + { + "id": 268, + "name": "setCompany", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 269, + "name": "company", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 255, + "name": "setEmail", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 44, + "character": 16 + } + ], + "signatures": [ + { + "id": 256, + "name": "setEmail", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Sets the email for the authenticated user.", + "returns": "- Returns updated user\n" + }, + "parameters": [ + { + "id": 257, + "name": "email", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "Email you want to set" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 273, + "name": "setHireable", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 78, + "character": 19 + } + ], + "signatures": [ + { + "id": 274, + "name": "setHireable", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 275, + "name": "hireable", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 270, + "name": "setLocation", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 74, + "character": 19 + } + ], + "signatures": [ + { + "id": 271, + "name": "setLocation", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 272, + "name": "location", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 258, + "name": "setName", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 53, + "character": 15 + } + ], + "signatures": [ + { + "id": 259, + "name": "setName", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Sets the name for the authenticated user.", + "returns": "- Returns updated user.\n" + }, + "parameters": [ + { + "id": 260, + "name": "name", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "name that you want to set" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 264, + "name": "setTwitterUsername", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 66, + "character": 26 + } + ], + "signatures": [ + { + "id": 265, + "name": "setTwitterUsername", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 266, + "name": "twitterUsername", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 143 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 295, + 315, + 247, + 311, + 291, + 246, + 310, + 321, + 245, + 313, + 248, + 306, + 319, + 300, + 320, + 299, + 301, + 296, + 314, + 298, + 293, + 312, + 292, + 294, + 304, + 244, + 249, + 242, + 318, + 317, + 307, + 305, + 309, + 302, + 303, + 243, + 316, + 308, + 322, + 297 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 323, + 279, + 276, + 261, + 267, + 255, + 273, + 270, + 258, + 264 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 8, + "character": 16 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 2692, + "name": "User" + } + ] + }, + { + "id": 326, + "name": "Emails", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 327, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 328, + "name": "new Emails", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 329, + "name": "client", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "type": { + "type": "reference", + "id": 326, + "name": "Emails" + }, + "overwrites": { + "type": "reference", + "id": 123, + "name": "Base.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 122, + "name": "Base.constructor" + } + }, + { + "id": 350, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/base.ts", + "line": 4, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 125, + "name": "Base.client" + } + }, + { + "id": 340, + "name": "add", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 30, + "character": 11 + } + ], + "signatures": [ + { + "id": 341, + "name": "add", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 342, + "name": "emails", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 334, + "name": "list", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 20, + "character": 12 + } + ], + "signatures": [ + { + "id": 335, + "name": "list", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 336, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 337, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 338, + "name": "page", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 20, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 339, + "name": "perPage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 20, + "character": 46 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 338, + 339 + ] + } + ] + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 346, + "name": "listPublic", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 50, + "character": 18 + } + ], + "signatures": [ + { + "id": 347, + "name": "listPublic", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 348, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 349, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {} + } + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 343, + "name": "remove", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 40, + "character": 14 + } + ], + "signatures": [ + { + "id": 344, + "name": "remove", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 345, + "name": "emails", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 330, + "name": "setPrimaryVisibility", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 10, + "character": 28 + } + ], + "signatures": [ + { + "id": 331, + "name": "setPrimaryVisibility", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 332, + "name": "visibility", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 333, + "name": "email", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isOptional": true + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 327 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 350 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 340, + 334, + 346, + 343, + 330 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 5, + "character": 12 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 121, + "name": "Base" + } + ] + }, + { + "id": 351, + "name": "Follows", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 352, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 353, + "name": "new Follows", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 354, + "name": "client", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "type": { + "type": "reference", + "id": 351, + "name": "Follows" + } + } + ] + }, + { + "id": 355, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 5, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 356, + "name": "list", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 10, + "character": 12 + } + ], + "signatures": [ + { + "id": 357, + "name": "list", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 358, + "name": "username", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 359, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 352 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 355 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 356 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 4, + "character": 13 + } + ] + }, + { + "id": 2884, + "name": "ForkManager", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 2885, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 2886, + "name": "new ForkManager", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2887, + "name": "client", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 2888, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2889, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2890, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/forkmanager.ts", + "line": 5, + "character": 44 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2890 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 2884, + "name": "ForkManager" + }, + "overwrites": { + "type": "reference", + "id": 2832, + "name": "Manager.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 2831, + "name": "Manager.constructor" + } + }, + { + "id": 2893, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 7, + "character": 7 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Collection" + }, + "inheritedFrom": { + "type": "reference", + "id": 2839, + "name": "Manager.cache" + } + }, + { + "id": 2891, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 5, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 2837, + "name": "Manager.client" + } + }, + { + "id": 2892, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 6, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2838, + "name": "Manager.url" + } + }, + { + "id": 2894, + "name": "add", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 14, + "character": 5 + } + ], + "signatures": [ + { + "id": 2895, + "name": "add", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2896, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 2897, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2841, + "name": "Manager.add" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2840, + "name": "Manager.add" + } + }, + { + "id": 2898, + "name": "resolve", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 19, + "character": 9 + } + ], + "signatures": [ + { + "id": 2899, + "name": "resolve", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2900, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2845, + "name": "Manager.resolve" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2844, + "name": "Manager.resolve" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2885 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2893, + 2891, + 2892 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2894, + 2898 + ] + } + ], + "sources": [ + { + "fileName": "src/managers/forkmanager.ts", + "line": 4, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 2830, + "name": "Manager" + } + ] + }, + { + "id": 360, + "name": "Gist", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 361, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 362, + "name": "new Gist", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 363, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 364, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 555, + "name": "comments", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6347, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 557, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6349, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 533, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6326, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 552, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6344, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 554, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6346, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 539, + "name": "files", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6332, + "character": 11 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 540, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 541, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 542, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 543, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 550, + "name": "content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6340, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 544, + "name": "filename", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6334, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 546, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6336, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 547, + "name": "raw_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6337, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 548, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6338, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 549, + "name": "truncated", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6339, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 545, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6335, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 550, + 544, + 546, + 547, + 548, + 549, + 545 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6333, + "character": 22 + } + ] + } + }, + { + "type": "literal", + "value": null + } + ] + } + } + } + } + }, + { + "id": 450, + "name": "fork_of", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Gist" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6294, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 451, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 474, + "name": "comments", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6316, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 498, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6318, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 454, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6297, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 471, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6313, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 473, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6315, + "character": 19 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 460, + "name": "files", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6303, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 461, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 462, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 463, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 464, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 465, + "name": "filename", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6305, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 467, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6307, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 468, + "name": "raw_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6308, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 469, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6309, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 466, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6306, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 465, + 467, + 468, + 469, + 466 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6304, + "character": 24 + } + ] + } + } + } + } + } + }, + { + "id": 523, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6321, + "character": 13 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 524, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 525, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 526, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + } + } + }, + { + "id": 453, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6296, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 457, + "name": "git_pull_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6300, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 458, + "name": "git_push_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6301, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 527, + "name": "history", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6322, + "character": 15 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 528, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 529, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 530, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + } + } + }, + { + "id": 459, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6302, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 455, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6298, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 456, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6299, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 499, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6319, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 500, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 506, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 502, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 517, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 510, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 511, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 512, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 507, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 509, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 504, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 503, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 501, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 505, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 515, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 518, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 516, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 520, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 521, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 513, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 514, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 519, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 508, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 506, + 502, + 517, + 510, + 511, + 512, + 507, + 509, + 504, + 503, + 501, + 505, + 515, + 518, + 516, + 520, + 521, + 513, + 514, + 519, + 508 + ] + } + ] + } + } + ] + } + }, + { + "id": 470, + "name": "public", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6312, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 522, + "name": "truncated", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6320, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 472, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6314, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 452, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6295, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 475, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6317, + "character": 12 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 476, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 482, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 478, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 493, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 486, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 487, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 488, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 483, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 485, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 480, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 479, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 477, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 481, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 491, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 494, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 492, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 496, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 497, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 489, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 490, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 495, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 484, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 482, + 478, + 493, + 486, + 487, + 488, + 483, + 485, + 480, + 479, + 477, + 481, + 491, + 494, + 492, + 496, + 497, + 489, + 490, + 495, + 484 + ] + } + ] + } + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 474, + 498, + 454, + 471, + 473, + 460, + 523, + 453, + 457, + 458, + 527, + 459, + 455, + 456, + 499, + 470, + 522, + 472, + 452, + 475 + ] + } + ] + } + } + ] + } + }, + { + "id": 365, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6283, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 366, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 415, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6288, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 367, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6285, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 416, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6289, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 368, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6286, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 369, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6287, + "character": 16 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 370, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 374, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6227, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 395, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6248, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 391, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6244, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 414, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6267, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 390, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6243, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 401, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6254, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 413, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6266, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 393, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6246, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 385, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6238, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 399, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6252, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 378, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6231, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 400, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6253, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 379, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6232, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 380, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6233, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 375, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6228, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 394, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6247, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 377, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6230, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 372, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6225, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 392, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6245, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 371, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6224, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 389, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6242, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 373, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6226, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 383, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6236, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 412, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6265, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 403, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6256, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 404, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 405, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6257, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 406, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6258, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 408, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6260, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 407, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6259, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 405, + 406, + 408, + 407 + ] + } + ] + } + } + }, + { + "id": 410, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6263, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 398, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6251, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 397, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6250, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 386, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6239, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 384, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6237, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 388, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6241, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 381, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6234, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 382, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6235, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 409, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6262, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 411, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6264, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 396, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6249, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 387, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6240, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 402, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6255, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 376, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6229, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 374, + 395, + 391, + 414, + 390, + 401, + 413, + 393, + 385, + 399, + 378, + 400, + 379, + 380, + 375, + 394, + 377, + 372, + 392, + 371, + 389, + 373, + 383, + 412, + 403, + 410, + 398, + 397, + 386, + 384, + 388, + 381, + 382, + 409, + 411, + 396, + 387, + 402, + 376 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 415, + 367, + 416, + 368, + 369 + ] + } + ] + } + } + } + ] + } + }, + { + "id": 532, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6325, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 536, + "name": "git_pull_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6329, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 537, + "name": "git_push_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6330, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 417, + "name": "history", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6292, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 418, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 444, + "name": "change_status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6274, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 445, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 447, + "name": "additions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6276, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 448, + "name": "deletions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6277, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 446, + "name": "total", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6275, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 447, + 448, + 446 + ] + } + ] + } + } + }, + { + "id": 443, + "name": "committed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6273, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 449, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6279, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 419, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6271, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 420, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 426, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 422, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 437, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 430, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 431, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 432, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 427, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 429, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 424, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 423, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 421, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 425, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 435, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 438, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 436, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 440, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 441, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 433, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 434, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 439, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 428, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 426, + 422, + 437, + 430, + 431, + 432, + 427, + 429, + 424, + 423, + 421, + 425, + 435, + 438, + 436, + 440, + 441, + 433, + 434, + 439, + 428 + ] + } + ] + } + } + ] + } + }, + { + "id": 442, + "name": "version", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 444, + 443, + 449, + 419, + 442 + ] + } + ] + } + } + } + ] + } + }, + { + "id": 538, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6331, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 534, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6327, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 535, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6328, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 558, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6350, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 559, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 565, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 561, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 576, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 569, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 570, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 571, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 566, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 568, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 563, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 562, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 560, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 564, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 574, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 577, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 575, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 579, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 580, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 572, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 573, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 578, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 567, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 565, + 561, + 576, + 569, + 570, + 571, + 566, + 568, + 563, + 562, + 560, + 564, + 574, + 577, + 575, + 579, + 580, + 572, + 573, + 578, + 567 + ] + } + ] + } + } + ] + } + }, + { + "id": 551, + "name": "public", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6343, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 581, + "name": "truncated", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6351, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 553, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6345, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 531, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6324, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 556, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6348, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 555, + 557, + 533, + 552, + 554, + 539, + 450, + 365, + 532, + 536, + 537, + 417, + 538, + 534, + 535, + 558, + 551, + 581, + 553, + 531, + 556 + ] + } + ] + } + } + }, + { + "id": 582, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 583, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 584, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/gist.ts", + "line": 9, + "character": 50 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 584 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 360, + "name": "Gist" + }, + "overwrites": { + "type": "reference", + "id": 123, + "name": "Base.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 122, + "name": "Base.constructor" + } + }, + { + "id": 809, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/base.ts", + "line": 4, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 125, + "name": "Base.client" + } + }, + { + "id": 585, + "name": "data", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/gist.ts", + "line": 7, + "character": 23 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 586, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 777, + "name": "comments", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6347, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 779, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6349, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 755, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6326, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 774, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6344, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 776, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6346, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 761, + "name": "files", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6332, + "character": 11 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 762, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 763, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 764, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 765, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 772, + "name": "content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6340, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 766, + "name": "filename", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6334, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 768, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6336, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 769, + "name": "raw_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6337, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 770, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6338, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 771, + "name": "truncated", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6339, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 767, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6335, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 772, + 766, + 768, + 769, + 770, + 771, + 767 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6333, + "character": 22 + } + ] + } + }, + { + "type": "literal", + "value": null + } + ] + } + } + } + } + }, + { + "id": 672, + "name": "fork_of", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Gist" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6294, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 673, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 696, + "name": "comments", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6316, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 720, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6318, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 676, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6297, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 693, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6313, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 695, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6315, + "character": 19 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 682, + "name": "files", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6303, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 683, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 684, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 685, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 686, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 687, + "name": "filename", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6305, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 689, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6307, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 690, + "name": "raw_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6308, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 691, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6309, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 688, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6306, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 687, + 689, + 690, + 691, + 688 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6304, + "character": 24 + } + ] + } + } + } + } + } + }, + { + "id": 745, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6321, + "character": 13 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 746, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 747, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 748, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + } + } + }, + { + "id": 675, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6296, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 679, + "name": "git_pull_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6300, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 680, + "name": "git_push_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6301, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 749, + "name": "history", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6322, + "character": 15 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 750, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 751, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 752, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + } + } + }, + { + "id": 681, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6302, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 677, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6298, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 678, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6299, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 721, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6319, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 722, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 728, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 724, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 739, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 732, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 733, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 734, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 729, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 731, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 726, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 725, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 723, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 727, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 737, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 740, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 738, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 742, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 743, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 735, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 736, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 741, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 730, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 728, + 724, + 739, + 732, + 733, + 734, + 729, + 731, + 726, + 725, + 723, + 727, + 737, + 740, + 738, + 742, + 743, + 735, + 736, + 741, + 730 + ] + } + ] + } + } + ] + } + }, + { + "id": 692, + "name": "public", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6312, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 744, + "name": "truncated", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6320, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 694, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6314, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 674, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6295, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 697, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6317, + "character": 12 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 698, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 704, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 700, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 715, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 708, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 709, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 710, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 705, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 707, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 702, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 701, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 699, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 703, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 713, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 716, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 714, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 718, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 719, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 711, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 712, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 717, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 706, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 704, + 700, + 715, + 708, + 709, + 710, + 705, + 707, + 702, + 701, + 699, + 703, + 713, + 716, + 714, + 718, + 719, + 711, + 712, + 717, + 706 + ] + } + ] + } + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 696, + 720, + 676, + 693, + 695, + 682, + 745, + 675, + 679, + 680, + 749, + 681, + 677, + 678, + 721, + 692, + 744, + 694, + 674, + 697 + ] + } + ] + } + } + ] + } + }, + { + "id": 587, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6283, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 588, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 637, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6288, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 589, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6285, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 638, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6289, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 590, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6286, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 591, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6287, + "character": 16 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 592, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 596, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6227, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 617, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6248, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 613, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6244, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 636, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6267, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 612, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6243, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 623, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6254, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 635, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6266, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 615, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6246, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 607, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6238, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 621, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6252, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 600, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6231, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 622, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6253, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 601, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6232, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 602, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6233, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 597, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6228, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 616, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6247, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 599, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6230, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 594, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6225, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 614, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6245, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 593, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6224, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 611, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6242, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 595, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6226, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 605, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6236, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 634, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6265, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 625, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6256, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 626, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 627, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6257, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 628, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6258, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 630, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6260, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 629, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6259, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 627, + 628, + 630, + 629 + ] + } + ] + } + } + }, + { + "id": 632, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6263, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 620, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6251, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 619, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6250, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 608, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6239, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 606, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6237, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 610, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6241, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 603, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6234, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 604, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6235, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 631, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6262, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 633, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6264, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 618, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6249, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 609, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6240, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 624, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6255, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 598, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6229, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 596, + 617, + 613, + 636, + 612, + 623, + 635, + 615, + 607, + 621, + 600, + 622, + 601, + 602, + 597, + 616, + 599, + 594, + 614, + 593, + 611, + 595, + 605, + 634, + 625, + 632, + 620, + 619, + 608, + 606, + 610, + 603, + 604, + 631, + 633, + 618, + 609, + 624, + 598 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 637, + 589, + 638, + 590, + 591 + ] + } + ] + } + } + } + ] + } + }, + { + "id": 754, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6325, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 758, + "name": "git_pull_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6329, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 759, + "name": "git_push_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6330, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 639, + "name": "history", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6292, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 640, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 666, + "name": "change_status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6274, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 667, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 669, + "name": "additions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6276, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 670, + "name": "deletions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6277, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 668, + "name": "total", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6275, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 669, + 670, + 668 + ] + } + ] + } + } + }, + { + "id": 665, + "name": "committed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6273, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 671, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6279, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 641, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6271, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 642, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 648, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 644, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 659, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 652, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 653, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 654, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 649, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 651, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 646, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 645, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 643, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 647, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 657, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 660, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 658, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 662, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 663, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 655, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 656, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 661, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 650, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 648, + 644, + 659, + 652, + 653, + 654, + 649, + 651, + 646, + 645, + 643, + 647, + 657, + 660, + 658, + 662, + 663, + 655, + 656, + 661, + 650 + ] + } + ] + } + } + ] + } + }, + { + "id": 664, + "name": "version", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 666, + 665, + 671, + 641, + 664 + ] + } + ] + } + } + } + ] + } + }, + { + "id": 760, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6331, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 756, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6327, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 757, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6328, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 780, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6350, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 781, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 787, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 783, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 798, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 791, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 792, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 793, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 788, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 790, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 785, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 784, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 782, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 786, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 796, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 799, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 797, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 801, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 802, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 794, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 795, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 800, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 789, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 787, + 783, + 798, + 791, + 792, + 793, + 788, + 790, + 785, + 784, + 782, + 786, + 796, + 799, + 797, + 801, + 802, + 794, + 795, + 800, + 789 + ] + } + ] + } + } + ] + } + }, + { + "id": 773, + "name": "public", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6343, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 803, + "name": "truncated", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6351, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 775, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6345, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 753, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6324, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 778, + "name": "user", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6348, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 777, + 779, + 755, + 774, + 776, + 761, + 672, + 587, + 754, + 758, + 759, + 639, + 760, + 756, + 757, + 780, + 773, + 803, + 775, + 753, + 778 + ] + } + ] + } + } + }, + { + "id": 804, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/gist.ts", + "line": 8, + "character": 23 + } + ], + "type": { + "type": "reference", + "id": 2884, + "name": "ForkManager" + } + }, + { + "id": 807, + "name": "htmlUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/gist.ts", + "line": 18, + "character": 13 + } + ], + "getSignature": [ + { + "id": 808, + "name": "htmlUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ] + }, + { + "id": 805, + "name": "url", + "kind": 262144, + "kindString": "Accessor", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/gist.ts", + "line": 15, + "character": 9 + } + ], + "getSignature": [ + { + "id": 806, + "name": "url", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 361 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 809, + 585, + 804 + ] + }, + { + "title": "Accessors", + "kind": 262144, + "children": [ + 807, + 805 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/gist.ts", + "line": 6, + "character": 10 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 121, + "name": "Base" + } + ] + }, + { + "id": 810, + "name": "Issue", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 811, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 812, + "name": "new Issue", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 813, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 814, + "name": "client", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "type": { + "type": "reference", + "id": 810, + "name": "Issue" + } + } + ] + }, + { + "id": 815, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/issue.ts", + "line": 4, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 811 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 815 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/issue.ts", + "line": 3, + "character": 11 + } + ] + }, + { + "id": 2901, + "name": "IssueManager", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 2902, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 2903, + "name": "new IssueManager", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2904, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2905, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2906, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/issuemanager.ts", + "line": 6, + "character": 39 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 2907, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/issuemanager.ts", + "line": 6, + "character": 52 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2906, + 2907 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 2901, + "name": "IssueManager" + }, + "overwrites": { + "type": "reference", + "id": 2832, + "name": "Manager.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 2831, + "name": "Manager.constructor" + } + }, + { + "id": 2914, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 7, + "character": 7 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Collection" + }, + "inheritedFrom": { + "type": "reference", + "id": 2839, + "name": "Manager.cache" + } + }, + { + "id": 2912, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 5, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 2837, + "name": "Manager.client" + } + }, + { + "id": 2913, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 6, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2838, + "name": "Manager.url" + } + }, + { + "id": 2915, + "name": "add", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 14, + "character": 5 + } + ], + "signatures": [ + { + "id": 2916, + "name": "add", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2917, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 2918, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2841, + "name": "Manager.add" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2840, + "name": "Manager.add" + } + }, + { + "id": 2908, + "name": "fetch", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/issuemanager.ts", + "line": 15, + "character": 13 + } + ], + "signatures": [ + { + "id": 2909, + "name": "fetch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "fetch the issue using it's number" + }, + "parameters": [ + { + "id": 2910, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "issue number" + }, + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2911, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "\n" + }, + "type": { + "type": "reference", + "name": "FetchOptions" + }, + "defaultValue": "{}" + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "void" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 2919, + "name": "resolve", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 19, + "character": 9 + } + ], + "signatures": [ + { + "id": 2920, + "name": "resolve", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2921, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2845, + "name": "Manager.resolve" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2844, + "name": "Manager.resolve" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2902 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2914, + 2912, + 2913 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2915, + 2908, + 2919 + ] + } + ], + "sources": [ + { + "fileName": "src/managers/issuemanager.ts", + "line": 5, + "character": 18 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 2830, + "name": "Manager" + } + ] + }, + { + "id": 2830, + "name": "Manager", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 2831, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 2832, + "name": "new Manager", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2833, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2834, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2835, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 8, + "character": 39 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 2836, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 8, + "character": 52 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2835, + 2836 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 2830, + "name": "BaseManager" + } + } + ] + }, + { + "id": 2839, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 7, + "character": 7 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Collection" + } + }, + { + "id": 2837, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 5, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 2838, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 6, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2840, + "name": "add", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 14, + "character": 5 + } + ], + "signatures": [ + { + "id": 2841, + "name": "add", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2842, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 2843, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + ] + }, + { + "id": 2844, + "name": "resolve", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 19, + "character": 9 + } + ], + "signatures": [ + { + "id": 2845, + "name": "resolve", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2846, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2831 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2839, + 2837, + 2838 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2840, + 2844 + ] + } + ], + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 4, + "character": 17 + } + ], + "extendedBy": [ + { + "type": "reference", + "id": 2847, + "name": "ArtifactsManager" + }, + { + "type": "reference", + "id": 2884, + "name": "ForkManager" + }, + { + "type": "reference", + "id": 2901, + "name": "IssueManager" + }, + { + "type": "reference", + "id": 2922, + "name": "RepoManager" + }, + { + "type": "reference", + "id": 2939, + "name": "UserManager" + } + ] + }, + { + "id": 816, + "name": "Repo", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 817, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 818, + "name": "new Repo", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 819, + "name": "client", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 820, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 821, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1176, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7366, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 921, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7361, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1174, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7364, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1716, + "name": "anonymous_access_enabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether anonymous git access is allowed." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7378, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 854, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7292, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 910, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7348, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 855, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7293, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 856, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7294, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 857, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7295, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 891, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7329, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1717, + "name": "code_of_conduct", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7379, + "character": 21 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1718, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1722, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7278, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1720, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7276, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1721, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7277, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1719, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1722, + 1720, + 1721, + 1719 + ] + } + ] + } + } + }, + { + "id": 858, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7296, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 859, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7297, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 860, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7298, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 861, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7299, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 862, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7300, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 863, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7301, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 914, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7354, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 901, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7339, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1175, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7365, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 864, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7302, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 851, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7289, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 911, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7350, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 865, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7303, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 866, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7304, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 852, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7290, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1712, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7373, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 897, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7335, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 867, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7305, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 825, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7285, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 868, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7306, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 869, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7307, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 870, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7308, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 871, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7309, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 909, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7347, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 905, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7343, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 908, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7346, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 906, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7344, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 907, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7345, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 895, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7333, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 893, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7331, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 850, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7288, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 822, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7282, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 903, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7341, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 872, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7310, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 873, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7311, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 874, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7312, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 875, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7313, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 876, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7314, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 896, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7334, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 877, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7315, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1179, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7369, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1180, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1186, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1181, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1182, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1185, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1184, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1183, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1186, + 1181, + 1182, + 1185, + 1184, + 1183 + ] + } + ] + } + } + ] + } + }, + { + "id": 1713, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7374, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 878, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7316, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 879, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7317, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 892, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7330, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 824, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7284, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1178, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7368, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 823, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7283, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 880, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7318, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1714, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7375, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 902, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7340, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1187, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7370, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1188, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1194, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1190, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1205, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1198, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1199, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1200, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1195, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1197, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1192, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1191, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1189, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1193, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1203, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1206, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1204, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1208, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1209, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1201, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1202, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1207, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1196, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1194, + 1190, + 1205, + 1198, + 1199, + 1200, + 1195, + 1197, + 1192, + 1191, + 1189, + 1193, + 1203, + 1206, + 1204, + 1208, + 1209, + 1201, + 1202, + 1207, + 1196 + ] + } + ] + } + } + ] + } + }, + { + "id": 826, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7286, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 827, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 833, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 829, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 844, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 837, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 838, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 839, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 834, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 836, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 831, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 830, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 828, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 832, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 842, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 845, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 843, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 847, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 848, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 840, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 841, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 846, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 835, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 833, + 829, + 844, + 837, + 838, + 839, + 834, + 836, + 831, + 830, + 828, + 832, + 842, + 845, + 843, + 847, + 848, + 840, + 841, + 846, + 835 + ] + } + ] + } + } + ] + } + }, + { + "id": 1210, + "name": "parent", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7371, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1211, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1454, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow merge commits for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5763, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1345, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow rebase merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5651, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1452, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow squash merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5759, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1283, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5579, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1339, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is archived." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5642, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1284, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5580, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1285, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5581, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1286, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5582, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1320, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5616, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1287, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5583, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1288, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5584, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1289, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5585, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1290, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5586, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1291, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5587, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1292, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5588, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1343, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5648, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1330, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The default branch of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5627, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1453, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to delete head branches when pull requests are merged" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5761, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1293, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5589, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1280, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5576, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1340, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5644, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1294, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5590, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1295, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5591, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1281, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5577, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1247, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5564, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1326, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5622, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1296, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5592, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1215, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5561, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1297, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5593, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1298, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5594, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1299, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5595, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1300, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5596, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1338, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether downloads are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5640, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1334, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether issues are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5633, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1337, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5638, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1335, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether projects are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5635, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1336, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the wiki is enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5637, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1324, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5620, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1322, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5618, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1279, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5575, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1212, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Unique identifier of the repository" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5557, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1332, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether this repository acts as a template that can be used to generate new repositories." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5630, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1301, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5597, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1302, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5598, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1303, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5599, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1304, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5600, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1305, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5601, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1325, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5621, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1306, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5602, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1216, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5562, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1217, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1223, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1218, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1219, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1222, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1221, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1220, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1223, + 1218, + 1219, + 1222, + 1221, + 1220 + ] + } + ] + } + } + ] + } + }, + { + "id": 1459, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5768, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1307, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5603, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1308, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5604, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1321, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5617, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1214, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5560, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1456, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5765, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1213, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5558, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1309, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5605, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1457, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5766, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1331, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5628, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1224, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5563, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1225, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1231, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1227, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1242, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1235, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1236, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1237, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1232, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1234, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1229, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1228, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1226, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1230, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1240, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1243, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1241, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1245, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1246, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1238, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1239, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1244, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1233, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1231, + 1227, + 1242, + 1235, + 1236, + 1237, + 1232, + 1234, + 1229, + 1228, + 1226, + 1230, + 1240, + 1243, + 1241, + 1245, + 1246, + 1238, + 1239, + 1244, + 1233 + ] + } + ] + } + } + ] + } + }, + { + "id": 1255, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5572, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1256, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1262, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1258, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1273, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1266, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1267, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1268, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1263, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1265, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1260, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1259, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1257, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1261, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1271, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1274, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1272, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1276, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1277, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1269, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1270, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1275, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1264, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1262, + 1258, + 1273, + 1266, + 1267, + 1268, + 1263, + 1265, + 1260, + 1259, + 1257, + 1261, + 1271, + 1274, + 1272, + 1276, + 1277, + 1269, + 1270, + 1275, + 1264 + ] + } + ] + } + } + ] + } + }, + { + "id": 1248, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5565, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1249, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1250, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5566, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1254, + "name": "maintain", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5570, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1251, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5567, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1253, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5569, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1252, + "name": "triage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5568, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1250, + 1254, + 1251, + 1253, + 1252 + ] + } + ] + } + } + }, + { + "id": 1278, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is private or public." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5574, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1310, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5606, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1342, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5647, + "character": 15 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1311, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5607, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1329, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5625, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1312, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5608, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1327, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5623, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1313, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5609, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1460, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5769, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1314, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5610, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1455, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5764, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1315, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5611, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1316, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5612, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1323, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5619, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1317, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5613, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1318, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5614, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1451, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5757, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1346, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5652, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1347, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1448, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5753, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1444, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5749, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1446, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5751, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1377, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5682, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1433, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5738, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1378, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5683, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1379, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5684, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1380, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5685, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1414, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5719, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1381, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5686, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1382, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5687, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1383, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5688, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1384, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5689, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1385, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5690, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1386, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5691, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1437, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5742, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1424, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5729, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1447, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5752, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1387, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5692, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1374, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5679, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1434, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5739, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1388, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5693, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1389, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1375, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5680, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1420, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5725, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1390, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5695, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1351, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5656, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1391, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5696, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1392, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5697, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1393, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5698, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1394, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5699, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1432, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5737, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1428, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5733, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1431, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5736, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1429, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5734, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1430, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5735, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1418, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5723, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1416, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5721, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1373, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5678, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1348, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5653, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1426, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5731, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1395, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5700, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1396, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5701, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1397, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5702, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1398, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1399, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5704, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1419, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5724, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1400, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5705, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1401, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5706, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1402, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5707, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1415, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5720, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1350, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5655, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1450, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5755, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1349, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5654, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1403, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5708, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1425, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5730, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1352, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5657, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1353, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1357, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5661, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1368, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5672, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1361, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5665, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1362, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5666, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1363, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5667, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1358, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5662, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1360, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5664, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1355, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5659, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1354, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5658, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1356, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5660, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1366, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5670, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1369, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5673, + "character": 29 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1367, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5671, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1371, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5675, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1364, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5668, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1365, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5669, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1370, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1359, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5663, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1357, + 1368, + 1361, + 1362, + 1363, + 1358, + 1360, + 1355, + 1354, + 1356, + 1366, + 1369, + 1367, + 1371, + 1364, + 1365, + 1370, + 1359 + ] + } + ] + } + } + }, + { + "id": 1439, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5744, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1440, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1441, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5745, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1443, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5747, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1442, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5746, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1441, + 1443, + 1442 + ] + } + ] + } + } + }, + { + "id": 1372, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1404, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5709, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1436, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5741, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1405, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5710, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1423, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5728, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1406, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5711, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1421, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5726, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1407, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5712, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1408, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5713, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1449, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5754, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1409, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5714, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1410, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5715, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1417, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5722, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1411, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5716, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1412, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5717, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1445, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5750, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1427, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5732, + "character": 14 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1413, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5718, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1438, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5743, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1376, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5681, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1435, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5740, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1422, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5727, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1448, + 1444, + 1446, + 1377, + 1433, + 1378, + 1379, + 1380, + 1414, + 1381, + 1382, + 1383, + 1384, + 1385, + 1386, + 1437, + 1424, + 1447, + 1387, + 1374, + 1434, + 1388, + 1389, + 1375, + 1420, + 1390, + 1351, + 1391, + 1392, + 1393, + 1394, + 1432, + 1428, + 1431, + 1429, + 1430, + 1418, + 1416, + 1373, + 1348, + 1426, + 1395, + 1396, + 1397, + 1398, + 1399, + 1419, + 1400, + 1401, + 1402, + 1415, + 1350, + 1450, + 1349, + 1403, + 1425, + 1352, + 1439, + 1372, + 1404, + 1436, + 1405, + 1423, + 1406, + 1421, + 1407, + 1408, + 1449, + 1409, + 1410, + 1417, + 1411, + 1412, + 1445, + 1427, + 1413, + 1438, + 1376, + 1435, + 1422 + ] + } + ] + } + } + ] + } + }, + { + "id": 1333, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5631, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1319, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5615, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1344, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5649, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1282, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5578, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1341, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5646, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1458, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5767, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1328, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5624, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1454, + 1345, + 1452, + 1283, + 1339, + 1284, + 1285, + 1286, + 1320, + 1287, + 1288, + 1289, + 1290, + 1291, + 1292, + 1343, + 1330, + 1453, + 1293, + 1280, + 1340, + 1294, + 1295, + 1281, + 1247, + 1326, + 1296, + 1215, + 1297, + 1298, + 1299, + 1300, + 1338, + 1334, + 1337, + 1335, + 1336, + 1324, + 1322, + 1279, + 1212, + 1332, + 1301, + 1302, + 1303, + 1304, + 1305, + 1325, + 1306, + 1216, + 1459, + 1307, + 1308, + 1321, + 1214, + 1456, + 1213, + 1309, + 1457, + 1331, + 1224, + 1255, + 1248, + 1278, + 1310, + 1342, + 1311, + 1329, + 1312, + 1327, + 1313, + 1460, + 1314, + 1455, + 1315, + 1316, + 1323, + 1317, + 1318, + 1451, + 1346, + 1333, + 1319, + 1344, + 1282, + 1341, + 1458, + 1328 + ] + } + ] + } + } + }, + { + "id": 916, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7356, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 917, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 918, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7357, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 919, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7358, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 920, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7359, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 918, + 919, + 920 + ] + } + ] + } + } + }, + { + "id": 849, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7287, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 881, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7319, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 913, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7353, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 882, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7320, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1723, + "name": "security_and_analysis", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7380, + "character": 27 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1724, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1725, + "name": "advanced_security", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7381, + "character": 25 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1726, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1727, + "name": "status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7382, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "enabled" + }, + { + "type": "literal", + "value": "disabled" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1727 + ] + } + ] + } + } + }, + { + "id": 1728, + "name": "secret_scanning", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7384, + "character": 23 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1729, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1730, + "name": "status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7385, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "enabled" + }, + { + "type": "literal", + "value": "disabled" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1730 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1725, + 1728 + ] + } + ] + } + } + ] + } + }, + { + "id": 900, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7338, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1461, + "name": "source", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7372, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1462, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1705, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow merge commits for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5763, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1596, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow rebase merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5651, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1703, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow squash merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5759, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1534, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5579, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1590, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is archived." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5642, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1535, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5580, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1536, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5581, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1537, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5582, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1571, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5616, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1538, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5583, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1539, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5584, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1540, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5585, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1541, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5586, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1542, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5587, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1543, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5588, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1594, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5648, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1581, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The default branch of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5627, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1704, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to delete head branches when pull requests are merged" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5761, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1544, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5589, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1531, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5576, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1591, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5644, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1545, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5590, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1546, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5591, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1532, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5577, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1498, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5564, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1577, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5622, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1547, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5592, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1466, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5561, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1548, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5593, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1549, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5594, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1550, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5595, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1551, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5596, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1589, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether downloads are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5640, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1585, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether issues are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5633, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1588, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5638, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1586, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether projects are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5635, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1587, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the wiki is enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5637, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1575, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5620, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1573, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5618, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1530, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5575, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1463, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Unique identifier of the repository" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5557, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1583, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether this repository acts as a template that can be used to generate new repositories." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5630, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1552, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5597, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1553, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5598, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1554, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5599, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1555, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5600, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1556, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5601, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1576, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5621, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1557, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5602, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1467, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5562, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1468, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1474, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1469, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1470, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1473, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1472, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1471, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1474, + 1469, + 1470, + 1473, + 1472, + 1471 + ] + } + ] + } + } + ] + } + }, + { + "id": 1710, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5768, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1558, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5603, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1559, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5604, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1572, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5617, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1465, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5560, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1707, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5765, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1464, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5558, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1560, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5605, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1708, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5766, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1582, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5628, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1475, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5563, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1476, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1482, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1478, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1493, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1486, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1487, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1488, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1483, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1485, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1480, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1479, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1477, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1481, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1491, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1494, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1492, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1496, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1497, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1489, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1490, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1495, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1484, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1482, + 1478, + 1493, + 1486, + 1487, + 1488, + 1483, + 1485, + 1480, + 1479, + 1477, + 1481, + 1491, + 1494, + 1492, + 1496, + 1497, + 1489, + 1490, + 1495, + 1484 + ] + } + ] + } + } + ] + } + }, + { + "id": 1506, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5572, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1507, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1513, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1509, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1524, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1517, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1518, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1519, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1514, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1516, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1511, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1510, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1508, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1512, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1522, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1525, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1523, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1527, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1528, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1520, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1521, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1526, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1515, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1513, + 1509, + 1524, + 1517, + 1518, + 1519, + 1514, + 1516, + 1511, + 1510, + 1508, + 1512, + 1522, + 1525, + 1523, + 1527, + 1528, + 1520, + 1521, + 1526, + 1515 + ] + } + ] + } + } + ] + } + }, + { + "id": 1499, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5565, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1500, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1501, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5566, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1505, + "name": "maintain", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5570, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1502, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5567, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1504, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5569, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1503, + "name": "triage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5568, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1501, + 1505, + 1502, + 1504, + 1503 + ] + } + ] + } + } + }, + { + "id": 1529, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is private or public." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5574, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1561, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5606, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1593, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5647, + "character": 15 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1562, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5607, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1580, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5625, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1563, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5608, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1578, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5623, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1564, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5609, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1711, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5769, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1565, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5610, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1706, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5764, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1566, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5611, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1567, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5612, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1574, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5619, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1568, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5613, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1569, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5614, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1702, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5757, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1597, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5652, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1598, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1699, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5753, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1695, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5749, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1697, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5751, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1628, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5682, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1684, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5738, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1629, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5683, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1630, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5684, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1631, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5685, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1665, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5719, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1632, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5686, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1633, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5687, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1634, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5688, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1635, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5689, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1636, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5690, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1637, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5691, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1688, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5742, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1675, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5729, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1698, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5752, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1638, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5692, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1625, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5679, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1685, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5739, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1639, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5693, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1640, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1626, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5680, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1671, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5725, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1641, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5695, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1602, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5656, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1642, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5696, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1643, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5697, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1644, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5698, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1645, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5699, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1683, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5737, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1679, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5733, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1682, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5736, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1680, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5734, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1681, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5735, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1669, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5723, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1667, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5721, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1624, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5678, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1599, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5653, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1677, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5731, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1646, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5700, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1647, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5701, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1648, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5702, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1649, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1650, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5704, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1670, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5724, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1651, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5705, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1652, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5706, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1653, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5707, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1666, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5720, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1601, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5655, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1701, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5755, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1600, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5654, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1654, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5708, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1676, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5730, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1603, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5657, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1604, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1608, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5661, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1619, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5672, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1612, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5665, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1613, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5666, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1614, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5667, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1609, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5662, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1611, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5664, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1606, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5659, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1605, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5658, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1607, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5660, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1617, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5670, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1620, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5673, + "character": 29 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1618, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5671, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1622, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5675, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1615, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5668, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1616, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5669, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1621, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1610, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5663, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1608, + 1619, + 1612, + 1613, + 1614, + 1609, + 1611, + 1606, + 1605, + 1607, + 1617, + 1620, + 1618, + 1622, + 1615, + 1616, + 1621, + 1610 + ] + } + ] + } + } + }, + { + "id": 1690, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5744, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1691, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1692, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5745, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1694, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5747, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1693, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5746, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1692, + 1694, + 1693 + ] + } + ] + } + } + }, + { + "id": 1623, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1655, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5709, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1687, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5741, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1656, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5710, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1674, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5728, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1657, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5711, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1672, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5726, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1658, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5712, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1659, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5713, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1700, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5754, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1660, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5714, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1661, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5715, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1668, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5722, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1662, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5716, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1663, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5717, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1696, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5750, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1678, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5732, + "character": 14 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1664, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5718, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1689, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5743, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1627, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5681, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1686, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5740, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1673, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5727, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1699, + 1695, + 1697, + 1628, + 1684, + 1629, + 1630, + 1631, + 1665, + 1632, + 1633, + 1634, + 1635, + 1636, + 1637, + 1688, + 1675, + 1698, + 1638, + 1625, + 1685, + 1639, + 1640, + 1626, + 1671, + 1641, + 1602, + 1642, + 1643, + 1644, + 1645, + 1683, + 1679, + 1682, + 1680, + 1681, + 1669, + 1667, + 1624, + 1599, + 1677, + 1646, + 1647, + 1648, + 1649, + 1650, + 1670, + 1651, + 1652, + 1653, + 1666, + 1601, + 1701, + 1600, + 1654, + 1676, + 1603, + 1690, + 1623, + 1655, + 1687, + 1656, + 1674, + 1657, + 1672, + 1658, + 1659, + 1700, + 1660, + 1661, + 1668, + 1662, + 1663, + 1696, + 1678, + 1664, + 1689, + 1627, + 1686, + 1673 + ] + } + ] + } + } + ] + } + }, + { + "id": 1584, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5631, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1570, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5615, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1595, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5649, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1533, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5578, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1592, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5646, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1709, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5767, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1579, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5624, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1705, + 1596, + 1703, + 1534, + 1590, + 1535, + 1536, + 1537, + 1571, + 1538, + 1539, + 1540, + 1541, + 1542, + 1543, + 1594, + 1581, + 1704, + 1544, + 1531, + 1591, + 1545, + 1546, + 1532, + 1498, + 1577, + 1547, + 1466, + 1548, + 1549, + 1550, + 1551, + 1589, + 1585, + 1588, + 1586, + 1587, + 1575, + 1573, + 1530, + 1463, + 1583, + 1552, + 1553, + 1554, + 1555, + 1556, + 1576, + 1557, + 1467, + 1710, + 1558, + 1559, + 1572, + 1465, + 1707, + 1464, + 1560, + 1708, + 1582, + 1475, + 1506, + 1499, + 1529, + 1561, + 1593, + 1562, + 1580, + 1563, + 1578, + 1564, + 1711, + 1565, + 1706, + 1566, + 1567, + 1574, + 1568, + 1569, + 1702, + 1597, + 1584, + 1570, + 1595, + 1533, + 1592, + 1709, + 1579 + ] + } + ] + } + } + }, + { + "id": 883, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7321, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 898, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7336, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 884, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7322, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 885, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7323, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1177, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7367, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 886, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7324, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 887, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7325, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 894, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7332, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 888, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7326, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 889, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7327, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1173, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7363, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 922, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7362, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 923, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1166, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow merge commits for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5763, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1057, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow rebase merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5651, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1164, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow squash merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5759, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 995, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5579, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1051, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is archived." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5642, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 996, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5580, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 997, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5581, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 998, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5582, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1032, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5616, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 999, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5583, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1000, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5584, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1001, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5585, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1002, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5586, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1003, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5587, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1004, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5588, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1055, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5648, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1042, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The default branch of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5627, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1165, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to delete head branches when pull requests are merged" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5761, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1005, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5589, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 992, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5576, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1052, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5644, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1006, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5590, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1007, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5591, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 993, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5577, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 959, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5564, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1038, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5622, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1008, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5592, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 927, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5561, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1009, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5593, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1010, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5594, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1011, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5595, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1012, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5596, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1050, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether downloads are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5640, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1046, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether issues are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5633, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1049, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5638, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1047, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether projects are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5635, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1048, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the wiki is enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5637, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1036, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5620, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1034, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5618, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 991, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5575, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 924, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Unique identifier of the repository" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5557, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1044, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether this repository acts as a template that can be used to generate new repositories." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5630, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1013, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5597, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1014, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5598, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1015, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5599, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1016, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5600, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1017, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5601, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1037, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5621, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1018, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5602, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 928, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5562, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 929, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 935, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 930, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 931, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 934, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 933, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 932, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 935, + 930, + 931, + 934, + 933, + 932 + ] + } + ] + } + } + ] + } + }, + { + "id": 1171, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5768, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1019, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5603, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1020, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5604, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1033, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5617, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 926, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5560, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1168, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5765, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 925, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5558, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1021, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5605, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1169, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5766, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1043, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5628, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 936, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5563, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 937, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 943, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 939, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 954, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 947, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 948, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 949, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 944, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 946, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 941, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 940, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 938, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 942, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 952, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 955, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 953, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 957, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 958, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 950, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 951, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 956, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 945, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 943, + 939, + 954, + 947, + 948, + 949, + 944, + 946, + 941, + 940, + 938, + 942, + 952, + 955, + 953, + 957, + 958, + 950, + 951, + 956, + 945 + ] + } + ] + } + } + ] + } + }, + { + "id": 967, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5572, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 968, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 974, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 970, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 985, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 978, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 979, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 980, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 975, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 977, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 972, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 971, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 969, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 973, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 983, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 986, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 984, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 988, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 989, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 981, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 982, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 987, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 976, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 974, + 970, + 985, + 978, + 979, + 980, + 975, + 977, + 972, + 971, + 969, + 973, + 983, + 986, + 984, + 988, + 989, + 981, + 982, + 987, + 976 + ] + } + ] + } + } + ] + } + }, + { + "id": 960, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5565, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 961, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 962, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5566, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 966, + "name": "maintain", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5570, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 963, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5567, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 965, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5569, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 964, + "name": "triage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5568, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 962, + 966, + 963, + 965, + 964 + ] + } + ] + } + } + }, + { + "id": 990, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is private or public." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5574, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1022, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5606, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1054, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5647, + "character": 15 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1023, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5607, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1041, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5625, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1024, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5608, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1039, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5623, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1025, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5609, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1172, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5769, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1026, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5610, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1167, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5764, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1027, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5611, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1028, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5612, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1035, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5619, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1029, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5613, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1030, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5614, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1163, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5757, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1058, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5652, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1059, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1160, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5753, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1156, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5749, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1158, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5751, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1089, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5682, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1145, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5738, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1090, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5683, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1091, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5684, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1092, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5685, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1126, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5719, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1093, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5686, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1094, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5687, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1095, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5688, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1096, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5689, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1097, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5690, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1098, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5691, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1149, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5742, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1136, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5729, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1159, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5752, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1099, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5692, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1086, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5679, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1146, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5739, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1100, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5693, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1101, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1087, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5680, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1132, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5725, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1102, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5695, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1063, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5656, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1103, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5696, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1104, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5697, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1105, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5698, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1106, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5699, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1144, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5737, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1140, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5733, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1143, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5736, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1141, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5734, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1142, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5735, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1130, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5723, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1128, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5721, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1085, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5678, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1060, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5653, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1138, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5731, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1107, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5700, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1108, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5701, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1109, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5702, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1110, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1111, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5704, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1131, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5724, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1112, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5705, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1113, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5706, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1114, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5707, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1127, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5720, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1062, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5655, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1162, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5755, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1061, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5654, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1115, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5708, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1137, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5730, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1064, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5657, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1065, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1069, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5661, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1080, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5672, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1073, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5665, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1074, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5666, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1075, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5667, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1070, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5662, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1072, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5664, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1067, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5659, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1066, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5658, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1068, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5660, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1078, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5670, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1081, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5673, + "character": 29 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1079, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5671, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1083, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5675, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1076, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5668, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1077, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5669, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1082, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1071, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5663, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1069, + 1080, + 1073, + 1074, + 1075, + 1070, + 1072, + 1067, + 1066, + 1068, + 1078, + 1081, + 1079, + 1083, + 1076, + 1077, + 1082, + 1071 + ] + } + ] + } + } + }, + { + "id": 1151, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5744, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1152, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1153, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5745, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1155, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5747, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1154, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5746, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1153, + 1155, + 1154 + ] + } + ] + } + } + }, + { + "id": 1084, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1116, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5709, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1148, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5741, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1117, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5710, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1135, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5728, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1118, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5711, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1133, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5726, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1119, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5712, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1120, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5713, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1161, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5754, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1121, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5714, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1122, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5715, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1129, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5722, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1123, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5716, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1124, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5717, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1157, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5750, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1139, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5732, + "character": 14 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1125, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5718, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1150, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5743, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1088, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5681, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1147, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5740, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1134, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5727, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1160, + 1156, + 1158, + 1089, + 1145, + 1090, + 1091, + 1092, + 1126, + 1093, + 1094, + 1095, + 1096, + 1097, + 1098, + 1149, + 1136, + 1159, + 1099, + 1086, + 1146, + 1100, + 1101, + 1087, + 1132, + 1102, + 1063, + 1103, + 1104, + 1105, + 1106, + 1144, + 1140, + 1143, + 1141, + 1142, + 1130, + 1128, + 1085, + 1060, + 1138, + 1107, + 1108, + 1109, + 1110, + 1111, + 1131, + 1112, + 1113, + 1114, + 1127, + 1062, + 1162, + 1061, + 1115, + 1137, + 1064, + 1151, + 1084, + 1116, + 1148, + 1117, + 1135, + 1118, + 1133, + 1119, + 1120, + 1161, + 1121, + 1122, + 1129, + 1123, + 1124, + 1157, + 1139, + 1125, + 1150, + 1088, + 1147, + 1134 + ] + } + ] + } + } + ] + } + }, + { + "id": 1045, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5631, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1031, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5615, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1056, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5649, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 994, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5578, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1053, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5646, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1170, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5767, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1040, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5624, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1166, + 1057, + 1164, + 995, + 1051, + 996, + 997, + 998, + 1032, + 999, + 1000, + 1001, + 1002, + 1003, + 1004, + 1055, + 1042, + 1165, + 1005, + 992, + 1052, + 1006, + 1007, + 993, + 959, + 1038, + 1008, + 927, + 1009, + 1010, + 1011, + 1012, + 1050, + 1046, + 1049, + 1047, + 1048, + 1036, + 1034, + 991, + 924, + 1044, + 1013, + 1014, + 1015, + 1016, + 1017, + 1037, + 1018, + 928, + 1171, + 1019, + 1020, + 1033, + 926, + 1168, + 925, + 1021, + 1169, + 1043, + 936, + 967, + 960, + 990, + 1022, + 1054, + 1023, + 1041, + 1024, + 1039, + 1025, + 1172, + 1026, + 1167, + 1027, + 1028, + 1035, + 1029, + 1030, + 1163, + 1058, + 1045, + 1031, + 1056, + 994, + 1053, + 1170, + 1040 + ] + } + ] + } + } + ] + } + }, + { + "id": 904, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7342, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 890, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7328, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 915, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7355, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 853, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7291, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 912, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7352, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1715, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7376, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 899, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7337, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1176, + 921, + 1174, + 1716, + 854, + 910, + 855, + 856, + 857, + 891, + 1717, + 858, + 859, + 860, + 861, + 862, + 863, + 914, + 901, + 1175, + 864, + 851, + 911, + 865, + 866, + 852, + 1712, + 897, + 867, + 825, + 868, + 869, + 870, + 871, + 909, + 905, + 908, + 906, + 907, + 895, + 893, + 850, + 822, + 903, + 872, + 873, + 874, + 875, + 876, + 896, + 877, + 1179, + 1713, + 878, + 879, + 892, + 824, + 1178, + 823, + 880, + 1714, + 902, + 1187, + 826, + 1210, + 916, + 849, + 881, + 913, + 882, + 1723, + 900, + 1461, + 883, + 898, + 884, + 885, + 1177, + 886, + 887, + 894, + 888, + 889, + 1173, + 922, + 904, + 890, + 915, + 853, + 912, + 1715, + 899 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 816, + "name": "Repo" + }, + "overwrites": { + "type": "reference", + "id": 123, + "name": "Base.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 122, + "name": "Base.constructor" + } + }, + { + "id": 2691, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/base.ts", + "line": 4, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 125, + "name": "Base.client" + } + }, + { + "id": 1733, + "name": "data", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 9, + "character": 23 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1734, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2089, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7366, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1834, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7361, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2087, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7364, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2629, + "name": "anonymous_access_enabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether anonymous git access is allowed." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7378, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1767, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7292, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1823, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7348, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1768, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7293, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1769, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7294, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1770, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7295, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1804, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7329, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2630, + "name": "code_of_conduct", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7379, + "character": 21 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2631, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2635, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7278, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2633, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7276, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2634, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7277, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2632, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2635, + 2633, + 2634, + 2632 + ] + } + ] + } + } + }, + { + "id": 1771, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7296, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1772, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7297, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1773, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7298, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1774, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7299, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1775, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7300, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1776, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7301, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1827, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7354, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1814, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7339, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2088, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7365, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1777, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7302, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1764, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7289, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1824, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7350, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1778, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7303, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1779, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7304, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1765, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7290, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2625, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7373, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1810, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7335, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1780, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7305, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1738, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7285, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1781, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7306, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1782, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7307, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1783, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7308, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1784, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7309, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1822, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7347, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1818, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7343, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1821, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7346, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1819, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7344, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1820, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7345, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1808, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7333, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1806, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7331, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1763, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7288, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1735, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7282, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1816, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7341, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1785, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7310, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1786, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7311, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1787, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7312, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1788, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7313, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1789, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7314, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1809, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7334, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1790, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7315, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2092, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7369, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2093, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2099, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2094, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2095, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2098, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2097, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2096, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2099, + 2094, + 2095, + 2098, + 2097, + 2096 + ] + } + ] + } + } + ] + } + }, + { + "id": 2626, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7374, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1791, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7316, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1792, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7317, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1805, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7330, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1737, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7284, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2091, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7368, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1736, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7283, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1793, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7318, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2627, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7375, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1815, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7340, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2100, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7370, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2101, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2107, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2103, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2118, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2111, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2112, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2113, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2108, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2110, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2105, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2104, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2102, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2106, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2116, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2119, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2117, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2121, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2122, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2114, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2115, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2120, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2109, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2107, + 2103, + 2118, + 2111, + 2112, + 2113, + 2108, + 2110, + 2105, + 2104, + 2102, + 2106, + 2116, + 2119, + 2117, + 2121, + 2122, + 2114, + 2115, + 2120, + 2109 + ] + } + ] + } + } + ] + } + }, + { + "id": 1739, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7286, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1740, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1746, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1742, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1757, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1750, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1751, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1752, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1747, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1749, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1744, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1743, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1741, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1745, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1755, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1758, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1756, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1760, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1761, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1753, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1754, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1759, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1748, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1746, + 1742, + 1757, + 1750, + 1751, + 1752, + 1747, + 1749, + 1744, + 1743, + 1741, + 1745, + 1755, + 1758, + 1756, + 1760, + 1761, + 1753, + 1754, + 1759, + 1748 + ] + } + ] + } + } + ] + } + }, + { + "id": 2123, + "name": "parent", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7371, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2124, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2367, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow merge commits for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5763, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2258, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow rebase merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5651, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2365, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow squash merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5759, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2196, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5579, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2252, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is archived." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5642, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2197, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5580, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2198, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5581, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2199, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5582, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2233, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5616, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2200, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5583, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2201, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5584, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2202, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5585, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2203, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5586, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2204, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5587, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2205, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5588, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2256, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5648, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2243, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The default branch of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5627, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2366, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to delete head branches when pull requests are merged" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5761, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2206, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5589, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2193, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5576, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2253, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5644, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2207, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5590, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2208, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5591, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2194, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5577, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2160, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5564, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2239, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5622, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2209, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5592, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2128, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5561, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2210, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5593, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2211, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5594, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2212, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5595, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2213, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5596, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2251, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether downloads are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5640, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2247, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether issues are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5633, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2250, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5638, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2248, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether projects are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5635, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2249, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the wiki is enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5637, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2237, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5620, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2235, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5618, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2192, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5575, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2125, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Unique identifier of the repository" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5557, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2245, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether this repository acts as a template that can be used to generate new repositories." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5630, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2214, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5597, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2215, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5598, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2216, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5599, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2217, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5600, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2218, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5601, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2238, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5621, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2219, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5602, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2129, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5562, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2130, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2136, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2131, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2132, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2135, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2134, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2133, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2136, + 2131, + 2132, + 2135, + 2134, + 2133 + ] + } + ] + } + } + ] + } + }, + { + "id": 2372, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5768, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2220, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5603, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2221, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5604, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2234, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5617, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2127, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5560, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2369, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5765, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2126, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5558, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2222, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5605, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2370, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5766, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2244, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5628, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2137, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5563, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2138, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2144, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2140, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2155, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2148, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2149, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2150, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2145, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2147, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2142, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2141, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2139, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2143, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2153, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2156, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2154, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2158, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2159, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2151, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2152, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2157, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2146, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2144, + 2140, + 2155, + 2148, + 2149, + 2150, + 2145, + 2147, + 2142, + 2141, + 2139, + 2143, + 2153, + 2156, + 2154, + 2158, + 2159, + 2151, + 2152, + 2157, + 2146 + ] + } + ] + } + } + ] + } + }, + { + "id": 2168, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5572, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2169, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2175, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2171, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2186, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2179, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2180, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2181, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2176, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2178, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2173, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2172, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2170, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2174, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2184, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2187, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2185, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2189, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2190, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2182, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2183, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2188, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2177, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2175, + 2171, + 2186, + 2179, + 2180, + 2181, + 2176, + 2178, + 2173, + 2172, + 2170, + 2174, + 2184, + 2187, + 2185, + 2189, + 2190, + 2182, + 2183, + 2188, + 2177 + ] + } + ] + } + } + ] + } + }, + { + "id": 2161, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5565, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2162, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2163, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5566, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2167, + "name": "maintain", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5570, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2164, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5567, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2166, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5569, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2165, + "name": "triage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5568, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2163, + 2167, + 2164, + 2166, + 2165 + ] + } + ] + } + } + }, + { + "id": 2191, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is private or public." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5574, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2223, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5606, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2255, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5647, + "character": 15 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2224, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5607, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2242, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5625, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2225, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5608, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2240, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5623, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2226, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5609, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2373, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5769, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2227, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5610, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2368, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5764, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2228, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5611, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2229, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5612, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2236, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5619, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2230, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5613, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2231, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5614, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2364, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5757, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2259, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5652, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2260, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2361, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5753, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2357, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5749, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2359, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5751, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2290, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5682, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2346, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5738, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2291, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5683, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2292, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5684, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2293, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5685, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2327, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5719, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2294, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5686, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2295, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5687, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2296, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5688, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2297, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5689, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2298, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5690, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2299, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5691, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2350, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5742, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2337, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5729, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2360, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5752, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2300, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5692, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2287, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5679, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2347, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5739, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2301, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5693, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2302, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2288, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5680, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2333, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5725, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2303, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5695, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2264, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5656, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2304, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5696, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2305, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5697, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2306, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5698, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2307, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5699, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2345, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5737, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2341, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5733, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2344, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5736, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2342, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5734, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2343, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5735, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2331, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5723, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2329, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5721, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2286, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5678, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2261, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5653, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2339, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5731, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2308, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5700, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2309, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5701, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2310, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5702, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2311, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2312, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5704, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2332, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5724, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2313, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5705, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2314, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5706, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2315, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5707, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2328, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5720, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2263, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5655, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2363, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5755, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2262, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5654, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2316, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5708, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2338, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5730, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2265, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5657, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2266, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2270, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5661, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2281, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5672, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2274, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5665, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2275, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5666, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2276, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5667, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2271, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5662, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2273, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5664, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2268, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5659, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2267, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5658, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2269, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5660, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2279, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5670, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2282, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5673, + "character": 29 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2280, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5671, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2284, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5675, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2277, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5668, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2278, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5669, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2283, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2272, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5663, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2270, + 2281, + 2274, + 2275, + 2276, + 2271, + 2273, + 2268, + 2267, + 2269, + 2279, + 2282, + 2280, + 2284, + 2277, + 2278, + 2283, + 2272 + ] + } + ] + } + } + }, + { + "id": 2352, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5744, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2353, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2354, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5745, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2356, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5747, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2355, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5746, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2354, + 2356, + 2355 + ] + } + ] + } + } + }, + { + "id": 2285, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2317, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5709, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2349, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5741, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2318, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5710, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2336, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5728, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2319, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5711, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2334, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5726, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2320, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5712, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2321, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5713, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2362, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5754, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2322, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5714, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2323, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5715, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2330, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5722, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2324, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5716, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2325, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5717, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2358, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5750, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2340, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5732, + "character": 14 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 2326, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5718, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2351, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5743, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2289, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5681, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2348, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5740, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2335, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5727, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2361, + 2357, + 2359, + 2290, + 2346, + 2291, + 2292, + 2293, + 2327, + 2294, + 2295, + 2296, + 2297, + 2298, + 2299, + 2350, + 2337, + 2360, + 2300, + 2287, + 2347, + 2301, + 2302, + 2288, + 2333, + 2303, + 2264, + 2304, + 2305, + 2306, + 2307, + 2345, + 2341, + 2344, + 2342, + 2343, + 2331, + 2329, + 2286, + 2261, + 2339, + 2308, + 2309, + 2310, + 2311, + 2312, + 2332, + 2313, + 2314, + 2315, + 2328, + 2263, + 2363, + 2262, + 2316, + 2338, + 2265, + 2352, + 2285, + 2317, + 2349, + 2318, + 2336, + 2319, + 2334, + 2320, + 2321, + 2362, + 2322, + 2323, + 2330, + 2324, + 2325, + 2358, + 2340, + 2326, + 2351, + 2289, + 2348, + 2335 + ] + } + ] + } + } + ] + } + }, + { + "id": 2246, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5631, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 2232, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5615, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2257, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5649, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2195, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5578, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2254, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5646, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2371, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5767, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2241, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5624, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2367, + 2258, + 2365, + 2196, + 2252, + 2197, + 2198, + 2199, + 2233, + 2200, + 2201, + 2202, + 2203, + 2204, + 2205, + 2256, + 2243, + 2366, + 2206, + 2193, + 2253, + 2207, + 2208, + 2194, + 2160, + 2239, + 2209, + 2128, + 2210, + 2211, + 2212, + 2213, + 2251, + 2247, + 2250, + 2248, + 2249, + 2237, + 2235, + 2192, + 2125, + 2245, + 2214, + 2215, + 2216, + 2217, + 2218, + 2238, + 2219, + 2129, + 2372, + 2220, + 2221, + 2234, + 2127, + 2369, + 2126, + 2222, + 2370, + 2244, + 2137, + 2168, + 2161, + 2191, + 2223, + 2255, + 2224, + 2242, + 2225, + 2240, + 2226, + 2373, + 2227, + 2368, + 2228, + 2229, + 2236, + 2230, + 2231, + 2364, + 2259, + 2246, + 2232, + 2257, + 2195, + 2254, + 2371, + 2241 + ] + } + ] + } + } + }, + { + "id": 1829, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7356, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1830, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1831, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7357, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1832, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7358, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1833, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7359, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1831, + 1832, + 1833 + ] + } + ] + } + } + }, + { + "id": 1762, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7287, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1794, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7319, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1826, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7353, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1795, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7320, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2636, + "name": "security_and_analysis", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7380, + "character": 27 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2637, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2638, + "name": "advanced_security", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7381, + "character": 25 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2639, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2640, + "name": "status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7382, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "enabled" + }, + { + "type": "literal", + "value": "disabled" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2640 + ] + } + ] + } + } + }, + { + "id": 2641, + "name": "secret_scanning", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7384, + "character": 23 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2642, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2643, + "name": "status", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7385, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": "enabled" + }, + { + "type": "literal", + "value": "disabled" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2643 + ] + } + ] + } + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2638, + 2641 + ] + } + ] + } + } + ] + } + }, + { + "id": 1813, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7338, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2374, + "name": "source", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7372, + "character": 12 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2375, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2618, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow merge commits for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5763, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2509, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow rebase merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5651, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2616, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow squash merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5759, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2447, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5579, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2503, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is archived." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5642, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2448, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5580, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2449, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5581, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2450, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5582, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2484, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5616, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2451, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5583, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2452, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5584, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2453, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5585, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2454, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5586, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2455, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5587, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2456, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5588, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2507, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5648, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2494, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The default branch of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5627, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2617, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to delete head branches when pull requests are merged" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5761, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2457, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5589, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2444, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5576, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2504, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5644, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2458, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5590, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2459, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5591, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2445, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5577, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2411, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5564, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2490, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5622, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2460, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5592, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2379, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5561, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2461, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5593, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2462, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5594, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2463, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5595, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2464, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5596, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2502, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether downloads are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5640, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2498, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether issues are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5633, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2501, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5638, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2499, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether projects are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5635, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2500, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the wiki is enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5637, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2488, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5620, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2486, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5618, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2443, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5575, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2376, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Unique identifier of the repository" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5557, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2496, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether this repository acts as a template that can be used to generate new repositories." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5630, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2465, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5597, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2466, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5598, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2467, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5599, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2468, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5600, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2469, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5601, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2489, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5621, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2470, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5602, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2380, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5562, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2381, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2387, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2382, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2383, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2386, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2385, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2384, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2387, + 2382, + 2383, + 2386, + 2385, + 2384 + ] + } + ] + } + } + ] + } + }, + { + "id": 2623, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5768, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2471, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5603, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2472, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5604, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2485, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5617, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2378, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5560, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2620, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5765, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2377, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5558, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2473, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5605, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2621, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5766, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2495, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5628, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2388, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5563, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2389, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2395, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2391, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2406, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2399, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2400, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2401, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2396, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2398, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2393, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2392, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2390, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2394, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2404, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2407, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2405, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2409, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2410, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2402, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2403, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2408, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2397, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2395, + 2391, + 2406, + 2399, + 2400, + 2401, + 2396, + 2398, + 2393, + 2392, + 2390, + 2394, + 2404, + 2407, + 2405, + 2409, + 2410, + 2402, + 2403, + 2408, + 2397 + ] + } + ] + } + } + ] + } + }, + { + "id": 2419, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5572, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2420, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2426, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2422, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2437, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2430, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2431, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2432, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2427, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2429, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2424, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2423, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2421, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2425, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2435, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2438, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2436, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2440, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2441, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2433, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2434, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2439, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2428, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2426, + 2422, + 2437, + 2430, + 2431, + 2432, + 2427, + 2429, + 2424, + 2423, + 2421, + 2425, + 2435, + 2438, + 2436, + 2440, + 2441, + 2433, + 2434, + 2439, + 2428 + ] + } + ] + } + } + ] + } + }, + { + "id": 2412, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5565, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2413, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2414, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5566, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2418, + "name": "maintain", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5570, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2415, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5567, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2417, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5569, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2416, + "name": "triage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5568, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2414, + 2418, + 2415, + 2417, + 2416 + ] + } + ] + } + } + }, + { + "id": 2442, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is private or public." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5574, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2474, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5606, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2506, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5647, + "character": 15 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2475, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5607, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2493, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5625, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2476, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5608, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2491, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5623, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2477, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5609, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2624, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5769, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2478, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5610, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2619, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5764, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2479, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5611, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2480, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5612, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2487, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5619, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2481, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5613, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2482, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5614, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2615, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5757, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2510, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5652, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 2511, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2612, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5753, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2608, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5749, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2610, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5751, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2541, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5682, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2597, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5738, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2542, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5683, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2543, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5684, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2544, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5685, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2578, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5719, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2545, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5686, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2546, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5687, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2547, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5688, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2548, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5689, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2549, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5690, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2550, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5691, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2601, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5742, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2588, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5729, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2611, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5752, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2551, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5692, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2538, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5679, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2598, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5739, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2552, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5693, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2553, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2539, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5680, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2584, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5725, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2554, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5695, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2515, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5656, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2555, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5696, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2556, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5697, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2557, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5698, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2558, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5699, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2596, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5737, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2592, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5733, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2595, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5736, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2593, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5734, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2594, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5735, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2582, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5723, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2580, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5721, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2537, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5678, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2512, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5653, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2590, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5731, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2559, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5700, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2560, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5701, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2561, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5702, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2562, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2563, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5704, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2583, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5724, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2564, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5705, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2565, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5706, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2566, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5707, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2579, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5720, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2514, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5655, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2614, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5755, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2513, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5654, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2567, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5708, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2589, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5730, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2516, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5657, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2517, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2521, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5661, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2532, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5672, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2525, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5665, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2526, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5666, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2527, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5667, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2522, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5662, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2524, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5664, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2519, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5659, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2518, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5658, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2520, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5660, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2530, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5670, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2533, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5673, + "character": 29 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2531, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5671, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2535, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5675, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2528, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5668, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2529, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5669, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2534, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2523, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5663, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2521, + 2532, + 2525, + 2526, + 2527, + 2522, + 2524, + 2519, + 2518, + 2520, + 2530, + 2533, + 2531, + 2535, + 2528, + 2529, + 2534, + 2523 + ] + } + ] + } + } + }, + { + "id": 2603, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5744, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2604, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2605, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5745, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2607, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5747, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2606, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5746, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2605, + 2607, + 2606 + ] + } + ] + } + } + }, + { + "id": 2536, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2568, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5709, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2600, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5741, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2569, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5710, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2587, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5728, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2570, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5711, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2585, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5726, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2571, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5712, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2572, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5713, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2613, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5754, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2573, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5714, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2574, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5715, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2581, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5722, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2575, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5716, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2576, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5717, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2609, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5750, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2591, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5732, + "character": 14 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 2577, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5718, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2602, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5743, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2540, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5681, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2599, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5740, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2586, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5727, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2612, + 2608, + 2610, + 2541, + 2597, + 2542, + 2543, + 2544, + 2578, + 2545, + 2546, + 2547, + 2548, + 2549, + 2550, + 2601, + 2588, + 2611, + 2551, + 2538, + 2598, + 2552, + 2553, + 2539, + 2584, + 2554, + 2515, + 2555, + 2556, + 2557, + 2558, + 2596, + 2592, + 2595, + 2593, + 2594, + 2582, + 2580, + 2537, + 2512, + 2590, + 2559, + 2560, + 2561, + 2562, + 2563, + 2583, + 2564, + 2565, + 2566, + 2579, + 2514, + 2614, + 2513, + 2567, + 2589, + 2516, + 2603, + 2536, + 2568, + 2600, + 2569, + 2587, + 2570, + 2585, + 2571, + 2572, + 2613, + 2573, + 2574, + 2581, + 2575, + 2576, + 2609, + 2591, + 2577, + 2602, + 2540, + 2599, + 2586 + ] + } + ] + } + } + ] + } + }, + { + "id": 2497, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5631, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 2483, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5615, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2508, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5649, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2446, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5578, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2505, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5646, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2622, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5767, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2492, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5624, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2618, + 2509, + 2616, + 2447, + 2503, + 2448, + 2449, + 2450, + 2484, + 2451, + 2452, + 2453, + 2454, + 2455, + 2456, + 2507, + 2494, + 2617, + 2457, + 2444, + 2504, + 2458, + 2459, + 2445, + 2411, + 2490, + 2460, + 2379, + 2461, + 2462, + 2463, + 2464, + 2502, + 2498, + 2501, + 2499, + 2500, + 2488, + 2486, + 2443, + 2376, + 2496, + 2465, + 2466, + 2467, + 2468, + 2469, + 2489, + 2470, + 2380, + 2623, + 2471, + 2472, + 2485, + 2378, + 2620, + 2377, + 2473, + 2621, + 2495, + 2388, + 2419, + 2412, + 2442, + 2474, + 2506, + 2475, + 2493, + 2476, + 2491, + 2477, + 2624, + 2478, + 2619, + 2479, + 2480, + 2487, + 2481, + 2482, + 2615, + 2510, + 2497, + 2483, + 2508, + 2446, + 2505, + 2622, + 2492 + ] + } + ] + } + } + }, + { + "id": 1796, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7321, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1811, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7336, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1797, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7322, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1798, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7323, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2090, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7367, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1799, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7324, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1800, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7325, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1807, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7332, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1801, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7326, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1802, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7327, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2086, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7363, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1835, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7362, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1836, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2079, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow merge commits for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5763, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1970, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow rebase merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5651, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2077, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to allow squash merges for pull requests." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5759, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1908, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5579, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1964, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is archived." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5642, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1909, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5580, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1910, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5581, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1911, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5582, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1945, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5616, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1912, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5583, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1913, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5584, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1914, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5585, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1915, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5586, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1916, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5587, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1917, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5588, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1968, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5648, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1955, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The default branch of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5627, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2078, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether to delete head branches when pull requests are merged" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5761, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1918, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5589, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1905, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5576, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1965, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Returns whether or not this repository disabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5644, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1919, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5590, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1920, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5591, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1906, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5577, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1872, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5564, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1951, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5622, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1921, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5592, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1840, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5561, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1922, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5593, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1923, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5594, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1924, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5595, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1925, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5596, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1963, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether downloads are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5640, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1959, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether issues are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5633, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1962, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5638, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1960, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether projects are enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5635, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1961, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the wiki is enabled." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5637, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1949, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5620, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1947, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5618, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1904, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5575, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1837, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Unique identifier of the repository" + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5557, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1957, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "Whether this repository acts as a template that can be used to generate new repositories." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5630, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1926, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5597, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1927, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5598, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1928, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5599, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1929, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5600, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1930, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5601, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1950, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5621, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1931, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5602, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1841, + "name": "license", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5562, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1842, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1848, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5552, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1843, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5547, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1844, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5548, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1847, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5551, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1846, + "name": "spdx_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5550, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1845, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5549, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1848, + 1843, + 1844, + 1847, + 1846, + 1845 + ] + } + ] + } + } + ] + } + }, + { + "id": 2084, + "name": "master_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5768, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1932, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5603, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1933, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5604, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1946, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5617, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1839, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the repository." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5560, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2081, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5765, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1838, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5558, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1934, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5605, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2082, + "name": "open_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5766, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1956, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5628, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1849, + "name": "organization", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5563, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1850, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1856, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1852, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1867, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1860, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1861, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1862, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1857, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1859, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1854, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1853, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1851, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1855, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1865, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1868, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1866, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1870, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1871, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1863, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1864, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1869, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1858, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1856, + 1852, + 1867, + 1860, + 1861, + 1862, + 1857, + 1859, + 1854, + 1853, + 1851, + 1855, + 1865, + 1868, + 1866, + 1870, + 1871, + 1863, + 1864, + 1869, + 1858 + ] + } + ] + } + } + ] + } + }, + { + "id": 1880, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5572, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1881, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1887, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5273, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1883, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5269, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1898, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5284, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1891, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5277, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1892, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5278, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1893, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5279, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1888, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5274, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1890, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5276, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1885, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5271, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1884, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5270, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1882, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5268, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1886, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5272, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1896, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5282, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1899, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5285, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1897, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5283, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1901, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5287, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1902, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5288, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1894, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5280, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1895, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5281, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1900, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5286, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1889, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1887, + 1883, + 1898, + 1891, + 1892, + 1893, + 1888, + 1890, + 1885, + 1884, + 1882, + 1886, + 1896, + 1899, + 1897, + 1901, + 1902, + 1894, + 1895, + 1900, + 1889 + ] + } + ] + } + } + ] + } + }, + { + "id": 1873, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5565, + "character": 17 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1874, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1875, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5566, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1879, + "name": "maintain", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5570, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1876, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5567, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1878, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5569, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1877, + "name": "triage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5568, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1875, + 1879, + 1876, + 1878, + 1877 + ] + } + ] + } + } + }, + { + "id": 1903, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether the repository is private or public." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5574, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1935, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5606, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1967, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5647, + "character": 15 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1936, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5607, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1954, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5625, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1937, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5608, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1952, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5623, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1938, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5609, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2085, + "name": "starred_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5769, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1939, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5610, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2080, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5764, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1940, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5611, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1941, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5612, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1948, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5619, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1942, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5613, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1943, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5614, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2076, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5757, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1971, + "name": "template_repository", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5652, + "character": 25 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "reflection", + "declaration": { + "id": 1972, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2073, + "name": "allow_merge_commit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5753, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2069, + "name": "allow_rebase_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5749, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2071, + "name": "allow_squash_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5751, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2002, + "name": "archive_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5682, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2058, + "name": "archived", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5738, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2003, + "name": "assignees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5683, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2004, + "name": "blobs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5684, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2005, + "name": "branches_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5685, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2039, + "name": "clone_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5719, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2006, + "name": "collaborators_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5686, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2007, + "name": "comments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5687, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2008, + "name": "commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5688, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2009, + "name": "compare_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5689, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2010, + "name": "contents_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5690, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2011, + "name": "contributors_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5691, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2062, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5742, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2049, + "name": "default_branch", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5729, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2072, + "name": "delete_branch_on_merge", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5752, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2012, + "name": "deployments_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5692, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1999, + "name": "description", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5679, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2059, + "name": "disabled", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5739, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2013, + "name": "downloads_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5693, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2014, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2000, + "name": "fork", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5680, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2045, + "name": "forks_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5725, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2015, + "name": "forks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5695, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1976, + "name": "full_name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5656, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2016, + "name": "git_commits_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5696, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2017, + "name": "git_refs_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5697, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2018, + "name": "git_tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5698, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2019, + "name": "git_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5699, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2057, + "name": "has_downloads", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5737, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2053, + "name": "has_issues", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5733, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2056, + "name": "has_pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5736, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2054, + "name": "has_projects", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5734, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2055, + "name": "has_wiki", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5735, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2043, + "name": "homepage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5723, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2041, + "name": "hooks_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5721, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1998, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5678, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1973, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5653, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2051, + "name": "is_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5731, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2020, + "name": "issue_comment_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5700, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2021, + "name": "issue_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5701, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2022, + "name": "issues_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5702, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2023, + "name": "keys_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2024, + "name": "labels_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5704, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2044, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5724, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2025, + "name": "languages_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5705, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2026, + "name": "merges_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5706, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2027, + "name": "milestones_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5707, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2040, + "name": "mirror_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5720, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1975, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5655, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2075, + "name": "network_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5755, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1974, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5654, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2028, + "name": "notifications_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5708, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2050, + "name": "open_issues_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5730, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1977, + "name": "owner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5657, + "character": 13 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 1978, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1982, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5661, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1993, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5672, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1986, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5665, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1987, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5666, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1988, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5667, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1983, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5662, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1985, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5664, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1980, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5659, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1979, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5658, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1981, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5660, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1991, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5670, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1994, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5673, + "character": 29 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1992, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5671, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1996, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5675, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 1989, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5668, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1990, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5669, + "character": 27 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1995, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1984, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5663, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 1982, + 1993, + 1986, + 1987, + 1988, + 1983, + 1985, + 1980, + 1979, + 1981, + 1991, + 1994, + 1992, + 1996, + 1989, + 1990, + 1995, + 1984 + ] + } + ] + } + } + }, + { + "id": 2064, + "name": "permissions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5744, + "character": 19 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2065, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2066, + "name": "admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5745, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2068, + "name": "pull", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5747, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2067, + "name": "push", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5746, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2066, + 2068, + 2067 + ] + } + ] + } + } + }, + { + "id": 1997, + "name": "private", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2029, + "name": "pulls_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5709, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2061, + "name": "pushed_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5741, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2030, + "name": "releases_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5710, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2048, + "name": "size", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5728, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2031, + "name": "ssh_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5711, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2046, + "name": "stargazers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5726, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2032, + "name": "stargazers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5712, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2033, + "name": "statuses_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5713, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2074, + "name": "subscribers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5754, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2034, + "name": "subscribers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5714, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2035, + "name": "subscription_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5715, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2042, + "name": "svn_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5722, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2036, + "name": "tags_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5716, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2037, + "name": "teams_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5717, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2070, + "name": "temp_clone_token", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5750, + "character": 24 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2052, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5732, + "character": 14 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 2038, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5718, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2063, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5743, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2001, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5681, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2060, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5740, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2047, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5727, + "character": 22 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2073, + 2069, + 2071, + 2002, + 2058, + 2003, + 2004, + 2005, + 2039, + 2006, + 2007, + 2008, + 2009, + 2010, + 2011, + 2062, + 2049, + 2072, + 2012, + 1999, + 2059, + 2013, + 2014, + 2000, + 2045, + 2015, + 1976, + 2016, + 2017, + 2018, + 2019, + 2057, + 2053, + 2056, + 2054, + 2055, + 2043, + 2041, + 1998, + 1973, + 2051, + 2020, + 2021, + 2022, + 2023, + 2024, + 2044, + 2025, + 2026, + 2027, + 2040, + 1975, + 2075, + 1974, + 2028, + 2050, + 1977, + 2064, + 1997, + 2029, + 2061, + 2030, + 2048, + 2031, + 2046, + 2032, + 2033, + 2074, + 2034, + 2035, + 2042, + 2036, + 2037, + 2070, + 2052, + 2038, + 2063, + 2001, + 2060, + 2047 + ] + } + ] + } + } + ] + } + }, + { + "id": 1958, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5631, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1944, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5615, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1969, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5649, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 1907, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5578, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1966, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5646, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2083, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5767, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1953, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 5624, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2079, + 1970, + 2077, + 1908, + 1964, + 1909, + 1910, + 1911, + 1945, + 1912, + 1913, + 1914, + 1915, + 1916, + 1917, + 1968, + 1955, + 2078, + 1918, + 1905, + 1965, + 1919, + 1920, + 1906, + 1872, + 1951, + 1921, + 1840, + 1922, + 1923, + 1924, + 1925, + 1963, + 1959, + 1962, + 1960, + 1961, + 1949, + 1947, + 1904, + 1837, + 1957, + 1926, + 1927, + 1928, + 1929, + 1930, + 1950, + 1931, + 1841, + 2084, + 1932, + 1933, + 1946, + 1839, + 2081, + 1838, + 1934, + 2082, + 1956, + 1849, + 1880, + 1873, + 1903, + 1935, + 1967, + 1936, + 1954, + 1937, + 1952, + 1938, + 2085, + 1939, + 2080, + 1940, + 1941, + 1948, + 1942, + 1943, + 2076, + 1971, + 1958, + 1944, + 1969, + 1907, + 1966, + 2083, + 1953 + ] + } + ] + } + } + ] + } + }, + { + "id": 1817, + "name": "topics", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7342, + "character": 12 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "string" + } + } + }, + { + "id": 1803, + "name": "trees_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7328, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1828, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7355, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1766, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7291, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 1825, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "comment": { + "shortText": "The repository visibility: public, private, or internal." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7352, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2628, + "name": "watchers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7376, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 1812, + "name": "watchers_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7337, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2089, + 1834, + 2087, + 2629, + 1767, + 1823, + 1768, + 1769, + 1770, + 1804, + 2630, + 1771, + 1772, + 1773, + 1774, + 1775, + 1776, + 1827, + 1814, + 2088, + 1777, + 1764, + 1824, + 1778, + 1779, + 1765, + 2625, + 1810, + 1780, + 1738, + 1781, + 1782, + 1783, + 1784, + 1822, + 1818, + 1821, + 1819, + 1820, + 1808, + 1806, + 1763, + 1735, + 1816, + 1785, + 1786, + 1787, + 1788, + 1789, + 1809, + 1790, + 2092, + 2626, + 1791, + 1792, + 1805, + 1737, + 2091, + 1736, + 1793, + 2627, + 1815, + 2100, + 1739, + 2123, + 1829, + 1762, + 1794, + 1826, + 1795, + 2636, + 1813, + 2374, + 1796, + 1811, + 1797, + 1798, + 2090, + 1799, + 1800, + 1807, + 1801, + 1802, + 2086, + 1835, + 1817, + 1803, + 1828, + 1766, + 1825, + 2628, + 1812 + ] + } + ] + } + } + }, + { + "id": 1732, + "name": "forks", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 8, + "character": 23 + } + ], + "type": { + "type": "reference", + "id": 2884, + "name": "ForkManager" + } + }, + { + "id": 1731, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPublic": true, + "isReadonly": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 7, + "character": 20 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2650, + "name": "allowMergeCommit", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 29, + "character": 29 + } + ], + "getSignature": [ + { + "id": 2651, + "name": "allowMergeCommit", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + ] + }, + { + "id": 2652, + "name": "allowRebaseMerge", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 33, + "character": 29 + } + ], + "getSignature": [ + { + "id": 2653, + "name": "allowRebaseMerge", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + ] + }, + { + "id": 2654, + "name": "allowSquashMerge", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 37, + "character": 29 + } + ], + "getSignature": [ + { + "id": 2655, + "name": "allowSquashMerge", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + ] + }, + { + "id": 2656, + "name": "anonymusAccessEnabled", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 41, + "character": 34 + } + ], + "getSignature": [ + { + "id": 2657, + "name": "anonymusAccessEnabled", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + } + ] + }, + { + "id": 2658, + "name": "archiveUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 45, + "character": 23 + } + ], + "getSignature": [ + { + "id": 2659, + "name": "archiveUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2660, + "name": "archived", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 49, + "character": 21 + } + ], + "getSignature": [ + { + "id": 2661, + "name": "archived", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] + }, + { + "id": 2662, + "name": "assigneesUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 53, + "character": 25 + } + ], + "getSignature": [ + { + "id": 2663, + "name": "assigneesUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2664, + "name": "blobsUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 57, + "character": 21 + } + ], + "getSignature": [ + { + "id": 2665, + "name": "blobsUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2666, + "name": "branchesUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 61, + "character": 24 + } + ], + "getSignature": [ + { + "id": 2667, + "name": "branchesUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2668, + "name": "cloneUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 65, + "character": 21 + } + ], + "getSignature": [ + { + "id": 2669, + "name": "cloneUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2670, + "name": "codeOfConduct", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 69, + "character": 26 + } + ], + "getSignature": [ + { + "id": 2671, + "name": "codeOfConduct", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "undefined" + }, + { + "type": "reflection", + "declaration": { + "id": 2672, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2676, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7278, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2674, + "name": "key", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7276, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2675, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7277, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2673, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7275, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2676, + 2674, + 2675, + 2673 + ] + } + ] + } + } + ] + } + } + ] + }, + { + "id": 2677, + "name": "collaboratorsUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 73, + "character": 29 + } + ], + "getSignature": [ + { + "id": 2678, + "name": "collaboratorsUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2679, + "name": "commentsUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 77, + "character": 24 + } + ], + "getSignature": [ + { + "id": 2680, + "name": "commentsUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2681, + "name": "commitsUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 81, + "character": 23 + } + ], + "getSignature": [ + { + "id": 2682, + "name": "commitsUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2683, + "name": "compareUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 85, + "character": 23 + } + ], + "getSignature": [ + { + "id": 2684, + "name": "compareUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2685, + "name": "contentsUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 89, + "character": 24 + } + ], + "getSignature": [ + { + "id": 2686, + "name": "contentsUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2687, + "name": "contributorsUrl", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 93, + "character": 28 + } + ], + "getSignature": [ + { + "id": 2688, + "name": "contributorsUrl", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2689, + "name": "createdAt", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 97, + "character": 22 + } + ], + "getSignature": [ + { + "id": 2690, + "name": "createdAt", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2646, + "name": "fork", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 21, + "character": 17 + } + ], + "getSignature": [ + { + "id": 2647, + "name": "fork", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + } + } + ] + }, + { + "id": 2644, + "name": "forkCount", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 17, + "character": 22 + } + ], + "getSignature": [ + { + "id": 2645, + "name": "forkCount", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "number" + } + } + ] + }, + { + "id": 2648, + "name": "fullName", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 25, + "character": 21 + } + ], + "getSignature": [ + { + "id": 2649, + "name": "fullName", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 817 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2691, + 1733, + 1732, + 1731 + ] + }, + { + "title": "Accessors", + "kind": 262144, + "children": [ + 2650, + 2652, + 2654, + 2656, + 2658, + 2660, + 2662, + 2664, + 2666, + 2668, + 2670, + 2677, + 2679, + 2681, + 2683, + 2685, + 2687, + 2689, + 2646, + 2644, + 2648 + ] + } + ], + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 6, + "character": 10 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 121, + "name": "Base" + } + ] + }, + { + "id": 2922, + "name": "RepoManager", + "kind": 128, + "kindString": "Class", + "flags": {}, + "children": [ + { + "id": 2923, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 2924, + "name": "new RepoManager", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2925, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2926, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2927, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/repomanager.ts", + "line": 5, + "character": 39 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 2928, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/repomanager.ts", + "line": 5, + "character": 52 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2927, + 2928 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 2922, + "name": "RepoManager" + }, + "overwrites": { + "type": "reference", + "id": 2832, + "name": "Manager.constructor" + } + } + ], + "overwrites": { + "type": "reference", + "id": 2831, + "name": "Manager.constructor" + } + }, + { + "id": 2931, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 7, + "character": 7 + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + }, + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Collection" + }, + "inheritedFrom": { + "type": "reference", + "id": 2839, + "name": "Manager.cache" + } + }, + { + "id": 2929, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 5, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 2837, + "name": "Manager.client" + } + }, + { + "id": 2930, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 6, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2838, + "name": "Manager.url" + } + }, + { + "id": 2932, + "name": "add", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 14, + "character": 5 + } + ], + "signatures": [ + { + "id": 2933, + "name": "add", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2934, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + }, + { + "id": 2935, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2841, + "name": "Manager.add" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2840, + "name": "Manager.add" + } + }, + { + "id": 2936, + "name": "resolve", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/manager.ts", + "line": 19, + "character": 9 + } + ], + "signatures": [ + { + "id": 2937, + "name": "resolve", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2938, + "name": "id", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "number" + } + ] + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2845, + "name": "Manager.resolve" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2844, + "name": "Manager.resolve" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2923 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2931, + 2929, + 2930 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2932, + 2936 + ] + } + ], + "sources": [ + { + "fileName": "src/managers/repomanager.ts", + "line": 4, + "character": 17 + } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 2830, + "name": "Manager" + } + ] + }, + { + "id": 2692, + "name": "User", + "kind": 128, + "kindString": "Class", + "flags": {}, + "comment": { + "shortText": "GitHub user object." + }, + "children": [ + { + "id": 2693, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": {}, + "signatures": [ + { + "id": 2694, + "name": "new User", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2695, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 2696, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2700, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10671, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2721, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10692, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2717, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10688, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2742, + "name": "business_plus", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10713, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2733, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10704, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2716, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10687, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2727, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10698, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2732, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2719, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10690, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2711, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10682, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2725, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10696, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2704, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10675, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2726, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10697, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2705, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10676, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2706, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2701, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10672, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2720, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10691, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 2703, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2698, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10669, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2743, + "name": "ldap_dn", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10714, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2718, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10689, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2697, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10668, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2715, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10686, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2699, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10670, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2709, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10680, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2731, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10702, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2735, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10706, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2736, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2737, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10707, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2738, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10708, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2740, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10710, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2739, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10709, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2737, + 2738, + 2740, + 2739 + ] + } + ] + } + } + }, + { + "id": 2729, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10700, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2724, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10695, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2723, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2712, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10683, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2710, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10681, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2714, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10685, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2707, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10678, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2708, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10679, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2741, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10712, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2730, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10701, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2722, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10693, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2734, + "name": "two_factor_authentication", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10705, + "character": 31 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2713, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10684, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2728, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10699, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2702, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10673, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2700, + 2721, + 2717, + 2742, + 2733, + 2716, + 2727, + 2732, + 2719, + 2711, + 2725, + 2704, + 2726, + 2705, + 2706, + 2701, + 2720, + 2703, + 2698, + 2743, + 2718, + 2697, + 2715, + 2699, + 2709, + 2731, + 2735, + 2729, + 2724, + 2723, + 2712, + 2710, + 2714, + 2707, + 2708, + 2741, + 2730, + 2722, + 2734, + 2713, + 2728, + 2702 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 2744, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2748, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6227, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2769, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6248, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2765, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6244, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2788, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6267, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2764, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6243, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2775, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6254, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2787, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6266, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2767, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6246, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2759, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6238, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2773, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6252, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2752, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6231, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2774, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6253, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2753, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6232, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2754, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6233, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2749, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6228, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2768, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6247, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 2751, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6230, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2746, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6225, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2766, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6245, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2745, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6224, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2763, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6242, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2747, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6226, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2757, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6236, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2786, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6265, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2777, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6256, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2778, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2779, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6257, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2780, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6258, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2782, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6260, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2781, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6259, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2779, + 2780, + 2782, + 2781 + ] + } + ] + } + } + }, + { + "id": 2784, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6263, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2772, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6251, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2771, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6250, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2760, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6239, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2758, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6237, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2762, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6241, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2755, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6234, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2756, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6235, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2783, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6262, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2785, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6264, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2770, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6249, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2761, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6240, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2776, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6255, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2750, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6229, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2748, + 2769, + 2765, + 2788, + 2764, + 2775, + 2787, + 2767, + 2759, + 2773, + 2752, + 2774, + 2753, + 2754, + 2749, + 2768, + 2751, + 2746, + 2766, + 2745, + 2763, + 2747, + 2757, + 2786, + 2777, + 2784, + 2772, + 2771, + 2760, + 2758, + 2762, + 2755, + 2756, + 2783, + 2785, + 2770, + 2761, + 2776, + 2750 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 2789, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 2790, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 2791, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + } + ] + } + }, + { + "id": 2792, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 2793, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2794, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 45, + "character": 50 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2794 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "id": 2692, + "name": "User" + } + } + ] + }, + { + "id": 2799, + "name": "avatarUrl", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 17, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2819, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 37, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2815, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 33, + "character": 6 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2795, + "name": "client", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "comment": { + "tags": [ + { + "tag": "param", + "text": "raw data from api", + "param": "data" + }, + { + "tag": "param", + "text": "extra data\n", + "param": "extras" + } + ] + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 13, + "character": 8 + } + ], + "type": { + "type": "reference", + "id": 1, + "name": "Client" + } + }, + { + "id": 2814, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 32, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2825, + "name": "createdAt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 43, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2817, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 35, + "character": 7 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2810, + "name": "eventsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 28, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2823, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 41, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2804, + "name": "followersUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 22, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2824, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 42, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2803, + "name": "followingUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 21, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2805, + "name": "gistsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 23, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2800, + "name": "gravatarId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 18, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2818, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 36, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 2802, + "name": "htmlUrl", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 20, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2797, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 15, + "character": 4 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2816, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 34, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2796, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 14, + "character": 7 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2798, + "name": "nodeId", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 16, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2808, + "name": "organizationsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 26, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2822, + "name": "publicGists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 40, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2821, + "name": "publicRepos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 39, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2811, + "name": "receivedEventsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 29, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2809, + "name": "reposUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 27, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2813, + "name": "siteAdmin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 31, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2806, + "name": "starredUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 24, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2807, + "name": "subscriptionsUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 25, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2820, + "name": "twitterUsername", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 38, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2812, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 30, + "character": 6 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2826, + "name": "updatedAt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 44, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2801, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 19, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2827, + "name": "_patch", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ { - "id": 7, - "name": "once", + "fileName": "src/structures/user.ts", + "line": 80, + "character": 8 + } + ], + "signatures": [ + { + "id": 2828, + "name": "_patch", "kind": 4096, "kindString": "Call signature", - "flags": { - "isExternal": true - }, + "flags": {}, "parameters": [ { - "id": 8, - "name": "emitter", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true - }, - "type": { - "type": "reference", - "name": "DOMEventTarget" - } - }, - { - "id": 9, - "name": "event", + "id": 2829, + "name": "data", "kind": 32768, "kindString": "Parameter", - "flags": { - "isExternal": true - }, + "flags": {}, "type": { "type": "intrinsic", - "name": "string" - } - }, - { - "id": 10, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isExternal": true, - "isOptional": true - }, - "type": { - "type": "reference", - "name": "StaticEventEmitterOptions" + "name": "any" } } ], "type": { "type": "reference", - "typeArguments": [ - { - "type": "array", - "elementType": { - "type": "intrinsic", - "name": "any" - } - } - ], - "name": "Promise" - }, - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" + "id": 2692, + "name": "User" } } - ], - "inheritedFrom": { - "type": "reference", - "name": "Events.EventEmitter.once" - } + ] } ], "groups": [ @@ -1978,88 +63862,93 @@ "title": "Constructors", "kind": 512, "children": [ - 28 + 2693 ] }, { "title": "Properties", "kind": 1024, "children": [ - 36, - 32, - 33, - 31, - 34, - 35, - 25, - 26, - 27, - 24 + 2799, + 2819, + 2815, + 2795, + 2814, + 2825, + 2817, + 2810, + 2823, + 2804, + 2824, + 2803, + 2805, + 2800, + 2818, + 2802, + 2797, + 2816, + 2796, + 2798, + 2808, + 2822, + 2821, + 2811, + 2809, + 2813, + 2806, + 2807, + 2820, + 2812, + 2826, + 2801 ] }, { "title": "Methods", "kind": 2048, "children": [ - 37, - 86, - 107, - 78, - 90, - 80, - 65, - 44, - 51, - 93, - 100, - 83, - 72, - 58, - 75, - 20, - 16, - 11, - 2 + 2827 ] } ], "sources": [ { - "fileName": "src/structures/client.ts", - "line": 12, - "character": 12 + "fileName": "src/structures/user.ts", + "line": 7, + "character": 10 } ], - "extendedTypes": [ + "extendedBy": [ { "type": "reference", - "name": "EventEmitter" + "id": 142, + "name": "ClientUser" } ] }, { - "id": 109, - "name": "Manager", + "id": 2939, + "name": "UserManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 110, + "id": 2940, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 111, - "name": "new Manager", + "id": 2941, + "name": "new UserManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 112, + "id": 2942, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -2067,21 +63956,21 @@ "type": { "type": "reflection", "declaration": { - "id": 113, + "id": 2943, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 114, + "id": 2944, "name": "client", "kind": 1024, "kindString": "Property", "flags": {}, "sources": [ { - "fileName": "src/managers/manager.ts", + "fileName": "src/managers/usermanager.ts", "line": 8, "character": 39 } @@ -2093,7 +63982,7 @@ } }, { - "id": 115, + "id": 2945, "name": "url", "kind": 1024, "kindString": "Property", @@ -2102,7 +63991,7 @@ }, "sources": [ { - "fileName": "src/managers/manager.ts", + "fileName": "src/managers/usermanager.ts", "line": 8, "character": 52 } @@ -2118,8 +64007,8 @@ "title": "Properties", "kind": 1024, "children": [ - 114, - 115 + 2944, + 2945 ] } ] @@ -2129,14 +64018,24 @@ ], "type": { "type": "reference", - "id": 109, - "name": "BaseManager" + "id": 2939, + "name": "UserManager" + }, + "overwrites": { + "type": "reference", + "id": 2832, + "name": "Manager.constructor" } } - ] + ], + "overwrites": { + "type": "reference", + "id": 2831, + "name": "Manager.constructor" + } }, { - "id": 118, + "id": 2961, "name": "cache", "kind": 1024, "kindString": "Property", @@ -2170,10 +64069,15 @@ } ], "name": "Collection" + }, + "inheritedFrom": { + "type": "reference", + "id": 2839, + "name": "Manager.cache" } }, { - "id": 116, + "id": 2959, "name": "client", "kind": 1024, "kindString": "Property", @@ -2189,10 +64093,15 @@ "type": "reference", "id": 1, "name": "Client" + }, + "inheritedFrom": { + "type": "reference", + "id": 2837, + "name": "Manager.client" } }, { - "id": 117, + "id": 2960, "name": "url", "kind": 1024, "kindString": "Property", @@ -2209,35 +64118,114 @@ "type": { "type": "intrinsic", "name": "string" + }, + "inheritedFrom": { + "type": "reference", + "id": 2838, + "name": "Manager.url" } }, { - "id": 119, + "id": 2954, "name": "add", "kind": 2048, "kindString": "Method", "flags": {}, "sources": [ { - "fileName": "src/managers/manager.ts", - "line": 14, + "fileName": "src/managers/usermanager.ts", + "line": 41, "character": 5 } ], "signatures": [ { - "id": 120, + "id": 2955, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 121, + "id": 2956, "name": "id", "kind": 32768, "kindString": "Parameter", "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2957, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "any" + } + }, + { + "id": 2958, + "name": "cache", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "boolean" + }, + "defaultValue": "true" + } + ], + "type": { + "type": "reference", + "id": 2692, + "name": "User" + }, + "overwrites": { + "type": "reference", + "id": 2841, + "name": "Manager.add" + } + } + ], + "overwrites": { + "type": "reference", + "id": 2840, + "name": "Manager.add" + } + }, + { + "id": 2946, + "name": "fetch", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/managers/usermanager.ts", + "line": 12, + "character": 13 + } + ], + "signatures": [ + { + "id": 2947, + "name": "fetch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2948, + "name": "username", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, "type": { "type": "union", "types": [ @@ -2246,33 +64234,120 @@ "name": "string" }, { - "type": "intrinsic", - "name": "number" + "type": "reflection", + "declaration": { + "id": 2949, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2950, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/usermanager.ts", + "line": 13, + "character": 30 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2952, + "name": "perPage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/usermanager.ts", + "line": 13, + "character": 65 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2951, + "name": "since", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/managers/usermanager.ts", + "line": 13, + "character": 47 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2950, + 2952, + 2951 + ] + } + ] + } } ] } }, { - "id": 122, - "name": "data", + "id": 2953, + "name": "options", "kind": 32768, "kindString": "Parameter", - "flags": {}, + "flags": { + "isOptional": true + }, "type": { - "type": "intrinsic", - "name": "any" + "type": "reference", + "name": "FetchOptions" } } ], "type": { - "type": "intrinsic", - "name": "any" + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "any" + } + ], + "name": "Promise" } } ] }, { - "id": 123, + "id": 2962, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -2286,14 +64361,14 @@ ], "signatures": [ { - "id": 124, + "id": 2963, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 125, + "id": 2964, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -2316,9 +64391,19 @@ "type": { "type": "intrinsic", "name": "any" + }, + "inheritedFrom": { + "type": "reference", + "id": 2845, + "name": "Manager.resolve" } } - ] + ], + "inheritedFrom": { + "type": "reference", + "id": 2844, + "name": "Manager.resolve" + } } ], "groups": [ @@ -2326,33 +64411,41 @@ "title": "Constructors", "kind": 512, "children": [ - 110 + 2940 ] }, { "title": "Properties", "kind": 1024, "children": [ - 118, - 116, - 117 + 2961, + 2959, + 2960 ] }, { "title": "Methods", "kind": 2048, "children": [ - 119, - 123 + 2954, + 2946, + 2962 ] } ], "sources": [ { - "fileName": "src/managers/manager.ts", - "line": 4, + "fileName": "src/managers/usermanager.ts", + "line": 7, "character": 17 } + ], + "extendedTypes": [ + { + "type": "reference", + "id": 2830, + "name": "Manager" + } ] } ], @@ -2361,8 +64454,23 @@ "title": "Classes", "kind": 128, "children": [ + 109, + 2847, + 121, + 126, 1, - 109 + 142, + 326, + 351, + 2884, + 360, + 810, + 2901, + 2830, + 816, + 2922, + 2692, + 2939 ] } ], From a7b0f1e59b181c3df89f7901c4c997774268f8fe Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Mon, 12 Jul 2021 21:21:56 +0530 Subject: [PATCH 29/79] feat(tests): improved tests login and better success rate --- .gitignore | 1 + package.json | 2 +- tests/clientuser.test.ts | 45 +++++++++---------------- tests/{client.test.ts => index.test.ts} | 2 ++ 4 files changed, 20 insertions(+), 30 deletions(-) rename tests/{client.test.ts => index.test.ts} (90%) diff --git a/.gitignore b/.gitignore index 9c97bbd..fe92cf6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules dist .env +inspect.js diff --git a/package.json b/package.json index 3b03551..ae4d906 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "", "main": "dist/index.js", "scripts": { - "test": "mocha -r ts-node/register tests/**/*.test.ts", + "test": "mocha -r ts-node/register tests/index.test.ts", "docs": "sh docgen.sh", "gendoc": "typedoc", "build": "tsc -p tsconfig.json" diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index e9c5f00..bcac0b2 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -1,34 +1,21 @@ import { expect } from "chai"; +import { Client } from "../dist"; -const assert = require("chai").assert; -const { Client } = require("../dist"); -require("dotenv").config(); - -const client = new Client({ - token: process.env.TEST, -}); - -const getRandom = () => - String.fromCharCode(65 + Math.floor(Math.random() * 26)) + Date.now(); - -describe("Login client and test clientuser", function () { - this.timeout(10000); - it("login the client", (done) => { - client.on("ready", () => { - expect(client.user, "user not null").not.to.be.equal(null); - done(); - describe("changing user's profile details", function () { - this.timeout(20000); - it("change user's name to a random value", (done) => { - client.user.setName(getRandom()).then(() => done()); - }); - it("change user's bio to a random value", (done) => { - client.user.setBio(getRandom()).then(() => done()); - }); - it("change user's location to a random value", (done) => { - client.user.setLocation(getRandom()).then(() => done()); - }); +export default function (client: Client, getRandom: any) { + describe("Test clientuser", function () { + this.timeout(10000); + expect(client.user, "user not null").not.to.be.equal(null); + describe("changing user's profile details", function () { + this.timeout(20000); + it("change user's name to a random value", (done) => { + client.user?.setName(getRandom()).then(() => done()); + }); + it("change user's bio to a random value", (done) => { + client.user?.setBio(getRandom()).then(() => done()); + }); + it("change user's location to a random value", (done) => { + client.user?.setLocation(getRandom()).then(() => done()); }); }); }); -}); +} diff --git a/tests/client.test.ts b/tests/index.test.ts similarity index 90% rename from tests/client.test.ts rename to tests/index.test.ts index 2cffd3d..2fe41e4 100644 --- a/tests/client.test.ts +++ b/tests/index.test.ts @@ -1,4 +1,5 @@ import { expect } from "chai"; +import clientuser from "./clientuser.test"; const assert = require("chai").assert; const { Client } = require("../dist"); @@ -24,6 +25,7 @@ describe("Login client and fetch a user", function () { expect(client.user, "user not null").not.to.be.equal(null); done(); console.log(`Logged in as ${client.user.login}`); + clientuser(client, getRandom); }); }); }); From 88a623cf3120d2981c99b62fdd57918157c349fd Mon Sep 17 00:00:00 2001 From: Gm Date: Mon, 12 Jul 2021 21:34:09 +0530 Subject: [PATCH 30/79] Delete codescan-analysis.yml --- .github/workflows/codescan-analysis.yml | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/codescan-analysis.yml diff --git a/.github/workflows/codescan-analysis.yml b/.github/workflows/codescan-analysis.yml deleted file mode 100644 index 49bc783..0000000 --- a/.github/workflows/codescan-analysis.yml +++ /dev/null @@ -1,37 +0,0 @@ -# This workflow requires that you have an existing account with codescan.io -# For more information about configuring your workflow, -# read our documentation at https://github.com/codescan-io/codescan-scanner-action -name: CodeScan - -on: - push: - branches: [master] - pull_request: - # The branches below must be a subset of the branches above - branches: [master] - schedule: - - cron: "23 23 * * 3" - -jobs: - CodeScan: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - name: Cache files - uses: actions/cache@v2 - with: - path: | - ~/.sonar - key: ${{ runner.os }}-sonar - restore-keys: ${{ runner.os }}-sonar - - name: Run Analysis - uses: codescan-io/codescan-scanner-action@master - with: - login: ${{ secrets.CODESCAN_AUTH_TOKEN }} - organization: ${{ secrets.CODESCAN_ORGANIZATION_KEY }} - projectKey: ${{ secrets.CODESCAN_PROJECT_KEY }} - - name: Upload SARIF file - uses: github/codeql-action/upload-sarif@v1 - with: - sarif_file: codescan.sarif From abf79865bbe327e94c749bb43992f55a08040734 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:02:13 +0530 Subject: [PATCH 31/79] feat: lint setup --- .eslintignore | 4 + .eslintrc | 18 + .github/workflows/docs.yml | 2 +- .github/workflows/lint.yml | 18 + .github/workflows/tests.yml | 2 +- package.json | 5 + yarn.lock | 795 +++++++++++++++++++++++++++++++++++- 7 files changed, 831 insertions(+), 13 deletions(-) create mode 100644 .eslintignore create mode 100644 .eslintrc create mode 100644 .github/workflows/lint.yml diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..c170e22 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ +node_modules +dist +tests +docs diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..55a6a5f --- /dev/null +++ b/.eslintrc @@ -0,0 +1,18 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "plugins": [ + "@typescript-eslint" + ], + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended" + ], + "rules":{ + "no-console": 2, + "@typescript-eslint/explicit-function-return-type": 2, + "@typescript-eslint/no-explicit-any":2, + "@typescript-eslint/no-unused-vars":2 + } +} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 5a9b80c..188b2da 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: with: node-version: 14 - name: Install dependencies - run: yarn -D + run: yarn - name: Run Docs run: yarn docs - name: Commit docs diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..fb9fc2b --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,18 @@ +name: Lint + +on: [push, pull_request] + +jobs: + Lint: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Install Node v14 + uses: actions/setup-node@v2 + with: + node-version: 14 + - name: Install dependencies + run: yarn + - name: Run Lint + run: yarn lint diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 76871b8..9bcb3cf 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,7 +15,7 @@ jobs: with: node-version: 14 - name: Install dependencies - run: yarn -D + run: yarn - name: Build run: yarn build - name: Run Tests diff --git a/package.json b/package.json index ae4d906..573b535 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "scripts": { "test": "mocha -r ts-node/register tests/index.test.ts", "docs": "sh docgen.sh", + "lint": "eslint . --ext .ts --max-warnings=0", "gendoc": "typedoc", "build": "tsc -p tsconfig.json" }, @@ -19,11 +20,15 @@ "devDependencies": { "@octokit/types": "^6.18.0", "@types/chai": "^4.2.21", + "@types/eslint": "^7.28.0", "@types/mocha": "^8.2.3", "@types/node": "^15.14.0", "@types/node-fetch": "^2.5.10", + "@typescript-eslint/eslint-plugin": "^4.28.3", + "@typescript-eslint/parser": "^4.28.3", "chai": "^4.3.4", "dotenv": "^10.0.0", + "eslint": "^7.30.0", "jsdoc-json": "^2.0.2", "mocha": "^9.0.2", "ts-node": "^10.0.0", diff --git a/yarn.lock b/yarn.lock index d27bba5..b021375 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,11 +2,82 @@ # yarn lockfile v1 +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/helper-validator-identifier@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz#d0f0e277c512e0c938277faa85a3968c9a44c0e8" + integrity sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg== + +"@babel/highlight@^7.10.4": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" + integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== + dependencies: + "@babel/helper-validator-identifier" "^7.14.5" + chalk "^2.0.0" + js-tokens "^4.0.0" + "@discordjs/collection@^0.1.6": version "0.1.6" resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-0.1.6.tgz#9e9a7637f4e4e0688fd8b2b5c63133c91607682c" integrity sha512-utRNxnd9kSS2qhyivo9lMlt5qgAUasH2gb7BEOn6p0efFh24gjGomHzWKMAPn2hEReOPQZCJaRKoURwRotKucQ== +"@eslint/eslintrc@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179" + integrity sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg== + dependencies: + ajv "^6.12.4" + debug "^4.1.1" + espree "^7.3.0" + globals "^13.9.0" + ignore "^4.0.6" + import-fresh "^3.2.1" + js-yaml "^3.13.1" + minimatch "^3.0.4" + strip-json-comments "^3.1.1" + +"@humanwhocodes/config-array@^0.5.0": + version "0.5.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" + integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== + dependencies: + "@humanwhocodes/object-schema" "^1.2.0" + debug "^4.1.1" + minimatch "^3.0.4" + +"@humanwhocodes/object-schema@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" + integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + "@octokit/openapi-types@^8.2.0": version "8.2.0" resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-8.2.0.tgz#25a590c3f41ff9c1a3ffc9897e0f668d9962e04f" @@ -44,6 +115,24 @@ resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.21.tgz#9f35a5643129df132cf3b5c1ec64046ea1af0650" integrity sha512-yd+9qKmJxm496BOV9CMNaey8TWsikaZOwMRwPHQIjcOJM9oV+fi9ZMNw3JsVnbEEbo2gRTDnGEBv8pjyn67hNg== +"@types/eslint@^7.28.0": + version "7.28.0" + resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-7.28.0.tgz#7e41f2481d301c68e14f483fe10b017753ce8d5a" + integrity sha512-07XlgzX0YJUn4iG1ocY4IX9DzKSmMGUs6ESKlxWhZRaa0fatIWaHWUVapcuGa8r5HFnTqzj+4OCjd5f7EZ/i/A== + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*": + version "0.0.50" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.50.tgz#1e0caa9364d3fccd2931c3ed96fdbeaa5d4cca83" + integrity sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw== + +"@types/json-schema@*", "@types/json-schema@^7.0.7": + version "7.0.8" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.8.tgz#edf1bf1dbf4e04413ca8e5b17b3b7d7d54b59818" + integrity sha512-YSBPTLTVm2e2OoQIDYx8HaeWJ5tTToLH67kXR7zYNGupXMEHa2++G8k+DczX2cFVgalypqtyZIcU19AFcmOpmg== + "@types/mocha@^8.2.3": version "8.2.3" resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-8.2.3.tgz#bbeb55fbc73f28ea6de601fbfa4613f58d785323" @@ -67,12 +156,111 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-15.14.0.tgz#74dbf254fb375551a9d2a71faf6b9dbc2178dc53" integrity sha512-um/+/ip3QZmwLfIkWZSNtQIJNVAqrJ92OkLMeuZrjZMTAJniI7fh8N8OICyDhAJ2mzgk/fmYFo72jRr5HyZ1EQ== +"@typescript-eslint/eslint-plugin@^4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.28.3.tgz#36cdcd9ca6f9e5cb49b9f61b970b1976708d084b" + integrity sha512-jW8sEFu1ZeaV8xzwsfi6Vgtty2jf7/lJmQmDkDruBjYAbx5DA8JtbcMnP0rNPUG+oH5GoQBTSp+9613BzuIpYg== + dependencies: + "@typescript-eslint/experimental-utils" "4.28.3" + "@typescript-eslint/scope-manager" "4.28.3" + debug "^4.3.1" + functional-red-black-tree "^1.0.1" + regexpp "^3.1.0" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/experimental-utils@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.28.3.tgz#976f8c1191b37105fd06658ed57ddfee4be361ca" + integrity sha512-zZYl9TnrxwEPi3FbyeX0ZnE8Hp7j3OCR+ELoUfbwGHGxWnHg9+OqSmkw2MoCVpZksPCZYpQzC559Ee9pJNHTQw== + dependencies: + "@types/json-schema" "^7.0.7" + "@typescript-eslint/scope-manager" "4.28.3" + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/typescript-estree" "4.28.3" + eslint-scope "^5.1.1" + eslint-utils "^3.0.0" + +"@typescript-eslint/parser@^4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.3.tgz#95f1d475c08268edffdcb2779993c488b6434b44" + integrity sha512-ZyWEn34bJexn/JNYvLQab0Mo5e+qqQNhknxmc8azgNd4XqspVYR5oHq9O11fLwdZMRcj4by15ghSlIEq+H5ltQ== + dependencies: + "@typescript-eslint/scope-manager" "4.28.3" + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/typescript-estree" "4.28.3" + debug "^4.3.1" + +"@typescript-eslint/scope-manager@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.3.tgz#c32ad4491b3726db1ba34030b59ea922c214e371" + integrity sha512-/8lMisZ5NGIzGtJB+QizQ5eX4Xd8uxedFfMBXOKuJGP0oaBBVEMbJVddQKDXyyB0bPlmt8i6bHV89KbwOelJiQ== + dependencies: + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/visitor-keys" "4.28.3" + +"@typescript-eslint/types@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.3.tgz#8fffd436a3bada422c2c1da56060a0566a9506c7" + integrity sha512-kQFaEsQBQVtA9VGVyciyTbIg7S3WoKHNuOp/UF5RG40900KtGqfoiETWD/v0lzRXc+euVE9NXmfer9dLkUJrkA== + +"@typescript-eslint/typescript-estree@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.3.tgz#253d7088100b2a38aefe3c8dd7bd1f8232ec46fb" + integrity sha512-YAb1JED41kJsqCQt1NcnX5ZdTA93vKFCMP4lQYG6CFxd0VzDJcKttRlMrlG+1qiWAw8+zowmHU1H0OzjWJzR2w== + dependencies: + "@typescript-eslint/types" "4.28.3" + "@typescript-eslint/visitor-keys" "4.28.3" + debug "^4.3.1" + globby "^11.0.3" + is-glob "^4.0.1" + semver "^7.3.5" + tsutils "^3.21.0" + +"@typescript-eslint/visitor-keys@4.28.3": + version "4.28.3" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.3.tgz#26ac91e84b23529968361045829da80a4e5251c4" + integrity sha512-ri1OzcLnk1HH4gORmr1dllxDzzrN6goUIz/P4MHFV0YZJDCADPR3RvYNp0PW2SetKTThar6wlbFTL00hV2Q+fg== + dependencies: + "@typescript-eslint/types" "4.28.3" + eslint-visitor-keys "^2.0.0" + "@ungap/promise-all-settled@1.1.2": version "1.1.2" resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== -ansi-colors@4.1.1: +acorn-jsx@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^7.4.0: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + +ajv@^6.10.0, ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ajv@^8.0.1: + version "8.6.1" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.1.tgz#ae65764bf1edde8cd861281cda5057852364a295" + integrity sha512-42VLtQUOLefAvKFAQIxIZDaThq6om/PrfP0CYk3/vn+y4BMNkKnbli8ON2QCiHov4KkzOSJ/xSoBJdayiiYvVQ== + dependencies: + fast-deep-equal "^3.1.1" + json-schema-traverse "^1.0.0" + require-from-string "^2.0.2" + uri-js "^4.2.2" + +ansi-colors@4.1.1, ansi-colors@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== @@ -87,6 +275,13 @@ ansi-regex@^5.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" @@ -107,16 +302,33 @@ arg@^4.1.0: resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + assertion-error@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-1.1.0.tgz#e60b6b0e8f301bd97e5375215bda406c85118c0b" integrity sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw== +astral-regex@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== + asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -140,7 +352,7 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@~3.0.2: +braces@^3.0.1, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== @@ -157,6 +369,11 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + camelcase@^6.0.0: version "6.2.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" @@ -174,7 +391,16 @@ chai@^4.3.4: pathval "^1.1.1" type-detect "^4.0.5" -chalk@^4.1.0: +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0, chalk@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== @@ -211,6 +437,13 @@ cliui@^7.0.2: strip-ansi "^6.0.0" wrap-ansi "^7.0.0" +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -218,6 +451,11 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" @@ -240,6 +478,15 @@ create-require@^1.1.0: resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== +cross-spawn@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + debug@4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" @@ -247,6 +494,13 @@ debug@4.3.1: dependencies: ms "2.1.2" +debug@^4.0.1, debug@^4.1.1, debug@^4.3.1: + version "4.3.2" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" + integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== + dependencies: + ms "2.1.2" + decamelize@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" @@ -259,6 +513,11 @@ deep-eql@^3.0.1: dependencies: type-detect "^4.0.0" +deep-is@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -274,6 +533,20 @@ diff@^4.0.1: resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + dotenv@^10.0.0: version "10.0.0" resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" @@ -284,16 +557,189 @@ emoji-regex@^8.0.0: resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== +enquirer@^2.3.5: + version "2.3.6" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== + dependencies: + ansi-colors "^4.1.1" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== -escape-string-regexp@4.0.0: +escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +eslint-scope@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + dependencies: + esrecurse "^4.3.0" + estraverse "^4.1.1" + +eslint-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + dependencies: + eslint-visitor-keys "^1.1.0" + +eslint-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" + integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + dependencies: + eslint-visitor-keys "^2.0.0" + +eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" + integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + +eslint-visitor-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + +eslint@^7.30.0: + version "7.30.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.30.0.tgz#6d34ab51aaa56112fd97166226c9a97f505474f8" + integrity sha512-VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg== + dependencies: + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.4.2" + "@humanwhocodes/config-array" "^0.5.0" + ajv "^6.10.0" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.0.1" + doctrine "^3.0.0" + enquirer "^2.3.5" + escape-string-regexp "^4.0.0" + eslint-scope "^5.1.1" + eslint-utils "^2.1.0" + eslint-visitor-keys "^2.0.0" + espree "^7.3.1" + esquery "^1.4.0" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + functional-red-black-tree "^1.0.1" + glob-parent "^5.1.2" + globals "^13.6.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + js-yaml "^3.13.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.0.4" + natural-compare "^1.4.0" + optionator "^0.9.1" + progress "^2.0.0" + regexpp "^3.1.0" + semver "^7.2.1" + strip-ansi "^6.0.0" + strip-json-comments "^3.1.0" + table "^6.0.9" + text-table "^0.2.0" + v8-compile-cache "^2.0.3" + +espree@^7.3.0, espree@^7.3.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== + dependencies: + acorn "^7.4.0" + acorn-jsx "^5.3.1" + eslint-visitor-keys "^1.3.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" + integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" + integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.1.1: + version "3.2.7" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.7.tgz#fd6cb7a2d7e9aa7a7846111e85a196d6b2f766a1" + integrity sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +fastq@^1.6.0: + version "1.11.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807" + integrity sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + fill-range@^7.0.1: version "7.0.1" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" @@ -309,11 +755,24 @@ find-up@5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +flat-cache@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== + dependencies: + flatted "^3.1.0" + rimraf "^3.0.2" + flat@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== +flatted@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.1.tgz#bbef080d95fca6709362c73044a1634f7c6e7d05" + integrity sha512-OMQjaErSFHmHqZe+PSidH5n8j3O0F2DdnVh8JB4j4eUQ2k6KvB0qGfrKIhapvez5JerBbmWkaLYUYWISaESoXg== + form-data@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" @@ -333,6 +792,11 @@ fsevents@~2.3.2: resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + get-caller-file@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" @@ -343,14 +807,14 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= -glob-parent@~5.1.2: +glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== dependencies: is-glob "^4.0.1" -glob@7.1.7, glob@^7.1.7: +glob@7.1.7, glob@^7.1.3, glob@^7.1.7: version "7.1.7" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== @@ -362,6 +826,25 @@ glob@7.1.7, glob@^7.1.7: once "^1.3.0" path-is-absolute "^1.0.0" +globals@^13.6.0, globals@^13.9.0: + version "13.10.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.10.0.tgz#60ba56c3ac2ca845cfbf4faeca727ad9dd204676" + integrity sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g== + dependencies: + type-fest "^0.20.2" + +globby@^11.0.3: + version "11.0.4" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.4.tgz#2cbaff77c2f2a62e71e9b2813a67b97a3a3001a5" + integrity sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.1.1" + ignore "^5.1.4" + merge2 "^1.3.0" + slash "^3.0.0" + growl@1.10.5: version "1.10.5" resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" @@ -379,6 +862,11 @@ handlebars@^4.7.7: optionalDependencies: uglify-js "^3.1.4" +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + has-flag@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" @@ -389,6 +877,29 @@ he@1.2.0: resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.1.4: + version "5.1.8" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" + integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== + +import-fresh@^3.0.0, import-fresh@^3.2.1: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + inflight@^1.0.4: version "1.0.6" resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" @@ -424,7 +935,7 @@ is-fullwidth-code-point@^3.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== -is-glob@^4.0.1, is-glob@~4.0.1: +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== @@ -451,6 +962,11 @@ isexe@^2.0.0: resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= +js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + js-yaml@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" @@ -458,11 +974,34 @@ js-yaml@4.1.0: dependencies: argparse "^2.0.1" +js-yaml@^3.13.1: + version "3.14.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" + integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + jsdoc-json@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/jsdoc-json/-/jsdoc-json-2.0.2.tgz#a6452d001f5eefa0918a53a9a934458b9d72eae3" integrity sha512-n0vVkWvBMHFNUsW6HUhMrVCk+nJZwW3kpd9/JiCgdYvjjZV3NcP5fV3+lTgOkOA/bTKJxbCKT8Au92FHII3pnA== +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema-traverse@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + json5@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" @@ -470,6 +1009,14 @@ json5@^2.2.0: dependencies: minimist "^1.2.5" +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + locate-path@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" @@ -477,6 +1024,21 @@ locate-path@^6.0.0: dependencies: p-locate "^5.0.0" +lodash.clonedeep@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.truncate@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= + lodash@^4.17.21: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" @@ -497,6 +1059,13 @@ lru-cache@^5.1.1: dependencies: yallist "^3.0.2" +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + lunr@^2.3.9: version "2.3.9" resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" @@ -512,6 +1081,19 @@ marked@^2.1.1: resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA== +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.4" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== + dependencies: + braces "^3.0.1" + picomatch "^2.2.3" + mime-db@1.48.0: version "1.48.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.48.0.tgz#e35b31045dd7eada3aaad537ed88a33afbef2d1d" @@ -582,6 +1164,11 @@ nanoid@3.1.23: resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81" integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw== +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + neo-async@^2.6.0: version "2.6.2" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" @@ -611,6 +1198,18 @@ onigasm@^2.2.5: dependencies: lru-cache "^5.1.1" +optionator@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== + dependencies: + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + word-wrap "^1.2.3" + p-limit@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" @@ -625,6 +1224,13 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -635,21 +1241,46 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + pathval@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== -picomatch@^2.0.4, picomatch@^2.2.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: version "2.3.0" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== -progress@^2.0.3: +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +progress@^2.0.0, progress@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" @@ -664,16 +1295,57 @@ readdirp@~3.6.0: dependencies: picomatch "^2.2.1" +regexpp@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" + integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== + require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= +require-from-string@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + safe-buffer@^5.1.0: version "5.2.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +semver@^7.2.1, semver@^7.3.5: + version "7.3.5" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== + dependencies: + lru-cache "^6.0.0" + serialize-javascript@6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" @@ -681,6 +1353,18 @@ serialize-javascript@6.0.0: dependencies: randombytes "^2.1.0" +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + shiki@^0.9.3: version "0.9.5" resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.9.5.tgz#c8da81a05fbfd1810729c6873901a729a72ec541" @@ -690,6 +1374,20 @@ shiki@^0.9.3: onigasm "^2.2.5" vscode-textmate "5.2.0" +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + source-map-support@^0.5.17: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" @@ -703,6 +1401,11 @@ source-map@^0.6.0, source-map@^0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + "string-width@^1.0.2 || 2": version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" @@ -734,7 +1437,7 @@ strip-ansi@^6.0.0: dependencies: ansi-regex "^5.0.0" -strip-json-comments@3.1.1: +strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== @@ -746,6 +1449,13 @@ supports-color@8.1.1: dependencies: has-flag "^4.0.0" +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" @@ -753,6 +1463,23 @@ supports-color@^7.1.0: dependencies: has-flag "^4.0.0" +table@^6.0.9: + version "6.7.1" + resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" + integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== + dependencies: + ajv "^8.0.1" + lodash.clonedeep "^4.5.0" + lodash.truncate "^4.4.2" + slice-ansi "^4.0.0" + string-width "^4.2.0" + strip-ansi "^6.0.0" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + to-regex-range@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" @@ -776,16 +1503,40 @@ ts-node@^10.0.0: source-map-support "^0.5.17" yn "3.1.1" +tslib@^1.8.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== + tslib@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.0.tgz#803b8cdab3e12ba581a4ca41c8839bbb0dacb09e" integrity sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg== +tsutils@^3.21.0: + version "3.21.0" + resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" + integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== + dependencies: + tslib "^1.8.1" + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + type-detect@^4.0.0, type-detect@^4.0.5: version "4.0.8" resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + typedoc-default-themes@^0.12.10: version "0.12.10" resolved "https://registry.yarnpkg.com/typedoc-default-themes/-/typedoc-default-themes-0.12.10.tgz#614c4222fe642657f37693ea62cad4dafeddf843" @@ -816,12 +1567,24 @@ uglify-js@^3.1.4: resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.10.tgz#a6bd0d28d38f592c3adb6b180ea6e07e1e540a8d" integrity sha512-57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg== +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +v8-compile-cache@^2.0.3: + version "2.3.0" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== + vscode-textmate@5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== -which@2.0.2: +which@2.0.2, which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== @@ -835,6 +1598,11 @@ wide-align@1.1.3: dependencies: string-width "^1.0.2 || 2" +word-wrap@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" + integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + wordwrap@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" @@ -869,6 +1637,11 @@ yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + yargs-parser@20.2.4: version "20.2.4" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" From c3288fd8a692bd2877482483e26242b702ce46de Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:07:05 +0530 Subject: [PATCH 32/79] feat: lint improvement and tests --- src/structures/emails.ts | 10 +++++++- src/structures/follows.ts | 12 ++++++---- src/structures/gist.ts | 4 ++-- src/structures/issue.ts | 3 ++- src/structures/repo.ts | 42 ++++++++++++++++----------------- src/structures/user.ts | 31 ------------------------- src/utils/error.ts | 6 ++--- src/utils/rawdata.ts | 3 +++ src/utils/rest.ts | 49 +++++++++++++++++++++------------------ tests/clientuser.test.ts | 3 +++ 10 files changed, 77 insertions(+), 86 deletions(-) diff --git a/src/structures/emails.ts b/src/structures/emails.ts index dddb0b2..a70505f 100644 --- a/src/structures/emails.ts +++ b/src/structures/emails.ts @@ -7,7 +7,15 @@ class Emails extends Base { super(client); } - async setPrimaryVisibility(visibility: any, email?: string) { + async setPrimaryVisibility( + visibility: any, + email?: string + ): Promise<{ + email: string; + verified: boolean; + primary: boolean; + visibility: string; + }> { return await this.client.api .req("user/email/visibility", { body: { visibility, email } }) .patch() diff --git a/src/structures/follows.ts b/src/structures/follows.ts index 0384ea2..6d7e968 100644 --- a/src/structures/follows.ts +++ b/src/structures/follows.ts @@ -3,17 +3,19 @@ import Client from "./client"; class Follows { client: Client; - constructor(client: Client) { + username: string; + constructor(client: Client, { username }: { username: string }) { this.client = client; + this.username = username; } - async list(username: string, options: any) { + async list(options: { page?: number; perPage?: number }): Promise { return await this.client.api - .req(`users/${username}/followers`, { query: options }) + .req(`users/${this.username}/followers`, { query: options }) .get() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } } diff --git a/src/structures/gist.ts b/src/structures/gist.ts index 87b3d92..77ffb01 100644 --- a/src/structures/gist.ts +++ b/src/structures/gist.ts @@ -12,10 +12,10 @@ class Gist extends Base { this.forks = new ForkManager(client, { url: data.forks_url }); } - get url() { + get url(): GistData["url"] { return this.data.url; } - get htmlUrl() { + get htmlUrl(): GistData["html_url"] { return this.data.html_url; } } diff --git a/src/structures/issue.ts b/src/structures/issue.ts index fbc8cbc..a4d8749 100644 --- a/src/structures/issue.ts +++ b/src/structures/issue.ts @@ -1,8 +1,9 @@ +import { IssueData } from "../utils"; import Client from "./client"; class Issue { client: Client; - constructor(data: any, client: Client) { + constructor(data: IssueData, client: Client) { this.client = client; } } diff --git a/src/structures/repo.ts b/src/structures/repo.ts index 382648e..8e009e9 100644 --- a/src/structures/repo.ts +++ b/src/structures/repo.ts @@ -14,87 +14,87 @@ class Repo extends Base { this.forks = new ForkManager(this.client, { url: data.forks_url }); } - public get forkCount() { + public get forkCount(): RepoData["forks_count"] { return this.data.forks_count; } - public get fork() { + public get fork(): RepoData["fork"] { return this.data.fork; } - public get fullName() { + public get fullName(): RepoData["full_name"] { return this.data.full_name; } - public get allowMergeCommit() { + public get allowMergeCommit(): RepoData["allow_merge_commit"] { return this.data.allow_merge_commit; } - public get allowRebaseMerge() { + public get allowRebaseMerge(): RepoData["allow_rebase_merge"] { return this.data.allow_rebase_merge; } - public get allowSquashMerge() { + public get allowSquashMerge(): RepoData["allow_squash_merge"] { return this.data.allow_squash_merge; } - public get anonymusAccessEnabled() { + public get anonymusAccessEnabled(): RepoData["anonymous_access_enabled"] { return this.data.anonymous_access_enabled; } - public get archiveUrl() { + public get archiveUrl(): RepoData["archive_url"] { return this.data.archive_url; } - public get archived() { + public get archived(): RepoData["archived"] { return this.data.archived; } - public get assigneesUrl() { + public get assigneesUrl(): RepoData["assignees_url"] { return this.data.assignees_url; } - public get blobsUrl() { + public get blobsUrl(): RepoData["blobs_url"] { return this.data.blobs_url; } - public get branchesUrl() { + public get branchesUrl(): RepoData["branches_url"] { return this.data.branches_url; } - public get cloneUrl() { + public get cloneUrl(): RepoData["clone_url"] { return this.data.clone_url; } - public get codeOfConduct() { + public get codeOfConduct(): RepoData["code_of_conduct"] { return this.data.code_of_conduct; } - public get collaboratorsUrl() { + public get collaboratorsUrl(): RepoData["collaborators_url"] { return this.data.collaborators_url; } - public get commentsUrl() { + public get commentsUrl(): RepoData["comments_url"] { return this.data.comments_url; } - public get commitsUrl() { + public get commitsUrl(): RepoData["commits_url"] { return this.data.commits_url; } - public get compareUrl() { + public get compareUrl(): RepoData["compare_url"] { return this.data.compare_url; } - public get contentsUrl() { + public get contentsUrl(): RepoData["contents_url"] { return this.data.contents_url; } - public get contributorsUrl() { + public get contributorsUrl(): RepoData["contributors_url"] { return this.data.contributors_url; } - public get createdAt() { + public get createdAt(): RepoData["created_at"] { return this.data.created_at; } diff --git a/src/structures/user.ts b/src/structures/user.ts index 48559f6..43e85c5 100644 --- a/src/structures/user.ts +++ b/src/structures/user.ts @@ -76,37 +76,6 @@ class User { this.createdAt = data.created_at; this.updatedAt = data.updated_at; } - - _patch(data: any) { - this.login = data.login; - this.avatarUrl = data.avatar_url; - this.gravatarId = data.gravatar_id; - this.url = data.url; - this.htmlUrl = data.html_url; - this.followersUrl = data.followers_url; - this.followingUrl = data.following_url; - this.gistsUrl = data.gists_url; - this.starredUrl = data.starred_url; - this.subscriptionsUrl = data.subscriptions_url; - this.organizationsUrl = data.organizations_url; - this.reposUrl = data.repos_url; - this.eventsUrl = data.events_url; - this.receivedEventsUrl = data.received_events_url; - this.siteAdmin = data.site_admin; - this.company = data.company; - this.blog = data.blog; - this.location = data.location; - this.email = data.email; - this.hireable = data.hireable; - this.bio = data.bio; - this.twitterUsername = data.twitter_username; - this.publicRepos = data.public_repos; - this.publicGists = data.public_gists; - this.followers = data.followers; - this.following = data.following; - this.updatedAt = data.updated_at; - return this; - } } export default User; diff --git a/src/utils/error.ts b/src/utils/error.ts index bb6962b..7a8496b 100644 --- a/src/utils/error.ts +++ b/src/utils/error.ts @@ -1,9 +1,9 @@ -import { Body, Response } from "node-fetch"; +import { Response } from "node-fetch"; class GHError extends Error { - constructor(res: Response, json: any = {}) { + constructor(res: Response, json: { message?: string } = {}) { super(res.statusText); - this.message = json.message; + this.message = json?.message ?? "No error data from api"; } } diff --git a/src/utils/rawdata.ts b/src/utils/rawdata.ts index 5b8d2df..9939005 100644 --- a/src/utils/rawdata.ts +++ b/src/utils/rawdata.ts @@ -23,3 +23,6 @@ export type RepoData = export type ClientUserRepoListData = Endpoints["GET /user/repos"]["response"]["data"]; + +export type IssueData = + Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}"]; diff --git a/src/utils/rest.ts b/src/utils/rest.ts index c3e14bd..dc9c297 100644 --- a/src/utils/rest.ts +++ b/src/utils/rest.ts @@ -16,12 +16,12 @@ async function makeReq({ }: { path: string; query?: Partial>; - headers?: Record; - body?: Record | undefined; + headers?: Record; + body?: Record; method?: "post" | "get" | "delete" | "patch" | "put"; - _?: boolean | undefined; + _?: boolean; }): Promise { - const res = await fetch( + const res: Response = await fetch( `${Base}${path}?${new URLSearchParams(snakeCasify(query))}`, { method, @@ -41,29 +41,34 @@ class RestManager { req( path: string, - options?: { - query?: Record; - headers?: Record; - body?: Record; - _?: boolean | undefined; - } + options: { + query?: Record; + headers?: Record; + body?: Record; + _?: boolean; + auth?: boolean; + } = {} ): { - post: Function; - get: Function; - put: Function; - delete: Function; - patch: Function; + post: () => Promise; + get: () => Promise; + put: () => Promise; + delete: () => Promise; + patch: () => Promise; } { - const { query = {}, headers = {}, body, _ } = options ?? {}; + const { query = {}, headers = {}, body, _, auth = true } = options; headers["accept"] ??= "application/vnd.github.v3+json"; - headers["Authorization"] ??= `token ${this.client.token}`; + if (auth) headers["Authorization"] ??= `token ${this.client.token}`; return { - post: () => makeReq({ path, query, body, headers, method: "post", _ }), - get: () => makeReq({ path, query, body, headers, method: "get", _ }), - patch: () => makeReq({ path, query, body, headers, method: "patch", _ }), - delete: () => + post: (): Promise => + makeReq({ path, query, body, headers, method: "post", _ }), + get: (): Promise => + makeReq({ path, query, body, headers, method: "get", _ }), + patch: (): Promise => + makeReq({ path, query, body, headers, method: "patch", _ }), + delete: (): Promise => makeReq({ path, query, body, headers, method: "delete", _ }), - put: () => makeReq({ path, query, body, headers, method: "put", _ }), + put: (): Promise => + makeReq({ path, query, body, headers, method: "put", _ }), }; } } diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index bcac0b2..0ac9636 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -16,6 +16,9 @@ export default function (client: Client, getRandom: any) { it("change user's location to a random value", (done) => { client.user?.setLocation(getRandom()).then(() => done()); }); + it("change user's twitter username to a random value", (done) => { + client.user?.setTwitterUsername(getRandom()).then(() => done()); + }); }); }); } From 938dee88da9642cdd9d9d4600b03241d4fd199f6 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:11:13 +0530 Subject: [PATCH 33/79] fix(build error) --- src/structures/clientuser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/clientuser.ts b/src/structures/clientuser.ts index 08ca77e..34d2d11 100644 --- a/src/structures/clientuser.ts +++ b/src/structures/clientuser.ts @@ -97,7 +97,7 @@ class ClientUser extends User { .req("user", { body: options }) .patch() .then(async (r: Response) => { - return this._patch(await r.json()); + return this.constructor(await r.json()); }); } } From 59055a14a40cfbf495a20549678c6a762401814e Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:12:14 +0530 Subject: [PATCH 34/79] fix(build): minor --- src/structures/blocks.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/blocks.ts b/src/structures/blocks.ts index 845d83a..a2fd383 100644 --- a/src/structures/blocks.ts +++ b/src/structures/blocks.ts @@ -30,10 +30,10 @@ class Blocks extends Base { return this.client.api .req(`user/blocks/${username}`, { _: true }) .get() - .then((res: Response) => { + .then(async (res: Response) => { if ([204, 404].includes(res.status)) return res.status === 204 ? true : false; - throw new GHError(res, res.json()); + throw new GHError(res, await res.json()); }) .catch((e: any) => { throw new Error(e); From b5e0c634e52486f58982a5c49a76a120472acd8a Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Wed, 14 Jul 2021 16:42:51 +0000 Subject: [PATCH 35/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 9435 ++++++++++++++++++++++++----------------------- 1 file changed, 4778 insertions(+), 4657 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 3a2a8e1..eb41fd1 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -138,7 +138,7 @@ ], "type": { "type": "reference", - "id": 2847, + "id": 2852, "name": "ArtifactsManager" } }, @@ -238,28 +238,28 @@ ] }, { - "id": 2847, + "id": 2852, "name": "ArtifactsManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2848, + "id": 2853, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2849, + "id": 2854, "name": "new ArtifactsManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2850, + "id": 2855, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -267,14 +267,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2851, + "id": 2856, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2852, + "id": 2857, "name": "client", "kind": 1024, "kindString": "Property", @@ -298,7 +298,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2852 + 2857 ] } ] @@ -306,7 +306,7 @@ } }, { - "id": 2853, + "id": 2858, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -314,14 +314,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2854, + "id": 2859, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2855, + "id": 2860, "name": "owner", "kind": 1024, "kindString": "Property", @@ -339,7 +339,7 @@ } }, { - "id": 2856, + "id": 2861, "name": "repo", "kind": 1024, "kindString": "Property", @@ -362,8 +362,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2855, - 2856 + 2860, + 2861 ] } ] @@ -373,24 +373,24 @@ ], "type": { "type": "reference", - "id": 2847, + "id": 2852, "name": "ArtifactsManager" }, "overwrites": { "type": "reference", - "id": 2832, + "id": 2837, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2831, + "id": 2836, "name": "Manager.constructor" } }, { - "id": 2876, + "id": 2881, "name": "cache", "kind": 1024, "kindString": "Property", @@ -427,12 +427,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 2844, "name": "Manager.cache" } }, { - "id": 2874, + "id": 2879, "name": "client", "kind": 1024, "kindString": "Property", @@ -451,12 +451,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2837, + "id": 2842, "name": "Manager.client" } }, { - "id": 2857, + "id": 2862, "name": "owner", "kind": 1024, "kindString": "Property", @@ -474,7 +474,7 @@ } }, { - "id": 2858, + "id": 2863, "name": "repo", "kind": 1024, "kindString": "Property", @@ -492,7 +492,7 @@ } }, { - "id": 2875, + "id": 2880, "name": "url", "kind": 1024, "kindString": "Property", @@ -512,12 +512,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2838, + "id": 2843, "name": "Manager.url" } }, { - "id": 2877, + "id": 2882, "name": "add", "kind": 2048, "kindString": "Method", @@ -531,14 +531,14 @@ ], "signatures": [ { - "id": 2878, + "id": 2883, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2879, + "id": 2884, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -558,7 +558,7 @@ } }, { - "id": 2880, + "id": 2885, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -575,19 +575,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 2841, + "id": 2846, "name": "Manager.add" } } ], "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 2845, "name": "Manager.add" } }, { - "id": 2868, + "id": 2873, "name": "delete", "kind": 2048, "kindString": "Method", @@ -601,14 +601,14 @@ ], "signatures": [ { - "id": 2869, + "id": 2874, "name": "delete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2870, + "id": 2875, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -633,7 +633,7 @@ ] }, { - "id": 2871, + "id": 2876, "name": "download", "kind": 2048, "kindString": "Method", @@ -647,14 +647,14 @@ ], "signatures": [ { - "id": 2872, + "id": 2877, "name": "download", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2873, + "id": 2878, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -679,7 +679,7 @@ ] }, { - "id": 2865, + "id": 2870, "name": "get", "kind": 2048, "kindString": "Method", @@ -693,14 +693,14 @@ ], "signatures": [ { - "id": 2866, + "id": 2871, "name": "get", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2867, + "id": 2872, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -725,7 +725,7 @@ ] }, { - "id": 2859, + "id": 2864, "name": "list", "kind": 2048, "kindString": "Method", @@ -739,14 +739,14 @@ ], "signatures": [ { - "id": 2860, + "id": 2865, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2861, + "id": 2866, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -754,14 +754,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2862, + "id": 2867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2863, + "id": 2868, "name": "page", "kind": 1024, "kindString": "Property", @@ -781,7 +781,7 @@ } }, { - "id": 2864, + "id": 2869, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -806,8 +806,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2863, - 2864 + 2868, + 2869 ] } ] @@ -829,7 +829,7 @@ ] }, { - "id": 2881, + "id": 2886, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -843,14 +843,14 @@ ], "signatures": [ { - "id": 2882, + "id": 2887, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2883, + "id": 2888, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -876,14 +876,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 2845, + "id": 2850, "name": "Manager.resolve" } } ], "inheritedFrom": { "type": "reference", - "id": 2844, + "id": 2849, "name": "Manager.resolve" } } @@ -893,30 +893,30 @@ "title": "Constructors", "kind": 512, "children": [ - 2848 + 2853 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2876, - 2874, - 2857, - 2858, - 2875 + 2881, + 2879, + 2862, + 2863, + 2880 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2877, - 2868, - 2871, - 2865, - 2859, - 2881 + 2882, + 2873, + 2876, + 2870, + 2864, + 2886 ] } ], @@ -930,7 +930,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2830, + "id": 2835, "name": "Manager" } ] @@ -1033,17 +1033,17 @@ }, { "type": "reference", - "id": 326, + "id": 323, "name": "Emails" }, { "type": "reference", - "id": 360, + "id": 368, "name": "Gist" }, { "type": "reference", - "id": 816, + "id": 824, "name": "Repo" } ] @@ -1243,7 +1243,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2692, + "id": 2700, "name": "User" } } @@ -1542,7 +1542,7 @@ ], "type": { "type": "reference", - "id": 2939, + "id": 2944, "name": "UserManager" } }, @@ -5596,14 +5596,14 @@ }, "overwrites": { "type": "reference", - "id": 2694, + "id": 2702, "name": "User.constructor" } } ], "overwrites": { "type": "reference", - "id": 2693, + "id": 2701, "name": "User.constructor" } }, @@ -5626,7 +5626,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2799, + "id": 2807, "name": "User.avatarUrl" } }, @@ -5651,7 +5651,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2819, + "id": 2827, "name": "User.bio" } }, @@ -5695,7 +5695,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2815, + "id": 2823, "name": "User.blog" } }, @@ -5733,7 +5733,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2795, + "id": 2803, "name": "User.client" } }, @@ -5778,7 +5778,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2814, + "id": 2822, "name": "User.company" } }, @@ -5803,7 +5803,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2825, + "id": 2833, "name": "User.createdAt" } }, @@ -5857,7 +5857,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2817, + "id": 2825, "name": "User.email" } }, @@ -5876,7 +5876,7 @@ ], "type": { "type": "reference", - "id": 326, + "id": 323, "name": "Emails" } }, @@ -5901,7 +5901,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2810, + "id": 2818, "name": "User.eventsUrl" } }, @@ -5926,7 +5926,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2823, + "id": 2831, "name": "User.followers" } }, @@ -5951,7 +5951,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2804, + "id": 2812, "name": "User.followersUrl" } }, @@ -5976,7 +5976,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2824, + "id": 2832, "name": "User.following" } }, @@ -6001,7 +6001,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2803, + "id": 2811, "name": "User.followingUrl" } }, @@ -6026,7 +6026,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2805, + "id": 2813, "name": "User.gistsUrl" } }, @@ -6049,7 +6049,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2800, + "id": 2808, "name": "User.gravatarId" } }, @@ -6083,7 +6083,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2818, + "id": 2826, "name": "User.hireable" } }, @@ -6106,7 +6106,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2802, + "id": 2810, "name": "User.htmlUrl" } }, @@ -6129,7 +6129,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2797, + "id": 2805, "name": "User.id" } }, @@ -6154,7 +6154,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2816, + "id": 2824, "name": "User.location" } }, @@ -6177,7 +6177,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2796, + "id": 2804, "name": "User.login" } }, @@ -6200,7 +6200,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2798, + "id": 2806, "name": "User.nodeId" } }, @@ -6225,7 +6225,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2808, + "id": 2816, "name": "User.organizationsUrl" } }, @@ -6408,7 +6408,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2822, + "id": 2830, "name": "User.publicGists" } }, @@ -6433,7 +6433,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2821, + "id": 2829, "name": "User.publicRepos" } }, @@ -6458,7 +6458,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2811, + "id": 2819, "name": "User.receivedEventsUrl" } }, @@ -6483,7 +6483,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2809, + "id": 2817, "name": "User.reposUrl" } }, @@ -6508,7 +6508,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2813, + "id": 2821, "name": "User.siteAdmin" } }, @@ -6533,7 +6533,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2806, + "id": 2814, "name": "User.starredUrl" } }, @@ -6558,7 +6558,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2807, + "id": 2815, "name": "User.subscriptionsUrl" } }, @@ -6612,7 +6612,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2820, + "id": 2828, "name": "User.twitterUsername" } }, @@ -6637,7 +6637,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2812, + "id": 2820, "name": "User.type" } }, @@ -6662,7 +6662,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2826, + "id": 2834, "name": "User.updatedAt" } }, @@ -6685,61 +6685,10 @@ }, "inheritedFrom": { "type": "reference", - "id": 2801, + "id": 2809, "name": "User.url" } }, - { - "id": 323, - "name": "_patch", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/user.ts", - "line": 80, - "character": 8 - } - ], - "signatures": [ - { - "id": 324, - "name": "_patch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 325, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "id": 142, - "name": "ClientUser" - }, - "inheritedFrom": { - "type": "reference", - "id": 2828, - "name": "User._patch" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2827, - "name": "User._patch" - } - }, { "id": 279, "name": "setAll", @@ -7417,7 +7366,6 @@ "title": "Methods", "kind": 2048, "children": [ - 323, 279, 276, 261, @@ -7440,34 +7388,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2692, + "id": 2700, "name": "User" } ] }, { - "id": 326, + "id": 323, "name": "Emails", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 327, + "id": 324, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 328, + "id": 325, "name": "new Emails", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 329, + "id": 326, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -7481,7 +7429,7 @@ ], "type": { "type": "reference", - "id": 326, + "id": 323, "name": "Emails" }, "overwrites": { @@ -7498,7 +7446,7 @@ } }, { - "id": 350, + "id": 352, "name": "client", "kind": 1024, "kindString": "Property", @@ -7522,7 +7470,7 @@ } }, { - "id": 340, + "id": 342, "name": "add", "kind": 2048, "kindString": "Method", @@ -7530,20 +7478,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 30, + "line": 38, "character": 11 } ], "signatures": [ { - "id": 341, + "id": 343, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 342, + "id": 344, "name": "emails", "kind": 32768, "kindString": "Parameter", @@ -7573,7 +7521,7 @@ ] }, { - "id": 334, + "id": 336, "name": "list", "kind": 2048, "kindString": "Method", @@ -7581,20 +7529,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 20, + "line": 28, "character": 12 } ], "signatures": [ { - "id": 335, + "id": 337, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 336, + "id": 338, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -7602,14 +7550,14 @@ "type": { "type": "reflection", "declaration": { - "id": 337, + "id": 339, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 338, + "id": 340, "name": "page", "kind": 1024, "kindString": "Property", @@ -7619,7 +7567,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 20, + "line": 28, "character": 28 } ], @@ -7629,7 +7577,7 @@ } }, { - "id": 339, + "id": 341, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -7639,7 +7587,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 20, + "line": 28, "character": 46 } ], @@ -7654,8 +7602,8 @@ "title": "Properties", "kind": 1024, "children": [ - 338, - 339 + 340, + 341 ] } ] @@ -7678,7 +7626,7 @@ ] }, { - "id": 346, + "id": 348, "name": "listPublic", "kind": 2048, "kindString": "Method", @@ -7686,20 +7634,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 50, + "line": 58, "character": 18 } ], "signatures": [ { - "id": 347, + "id": 349, "name": "listPublic", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 348, + "id": 350, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -7707,7 +7655,7 @@ "type": { "type": "reflection", "declaration": { - "id": 349, + "id": 351, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -7731,7 +7679,7 @@ ] }, { - "id": 343, + "id": 345, "name": "remove", "kind": 2048, "kindString": "Method", @@ -7739,20 +7687,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 40, + "line": 48, "character": 14 } ], "signatures": [ { - "id": 344, + "id": 346, "name": "remove", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 345, + "id": 347, "name": "emails", "kind": 32768, "kindString": "Parameter", @@ -7782,7 +7730,7 @@ ] }, { - "id": 330, + "id": 327, "name": "setPrimaryVisibility", "kind": 2048, "kindString": "Method", @@ -7796,14 +7744,14 @@ ], "signatures": [ { - "id": 331, + "id": 328, "name": "setPrimaryVisibility", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 332, + "id": 329, "name": "visibility", "kind": 32768, "kindString": "Parameter", @@ -7814,7 +7762,7 @@ } }, { - "id": 333, + "id": 330, "name": "email", "kind": 32768, "kindString": "Parameter", @@ -7831,8 +7779,100 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reflection", + "declaration": { + "id": 331, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 332, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 14, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 334, + "name": "primary", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 16, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 333, + "name": "verified", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 15, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 335, + "name": "visibility", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/emails.ts", + "line": 17, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 332, + 334, + 333, + 335 + ] + } + ] + } } ], "name": "Promise" @@ -7846,25 +7886,25 @@ "title": "Constructors", "kind": 512, "children": [ - 327 + 324 ] }, { "title": "Properties", "kind": 1024, "children": [ - 350 + 352 ] }, { "title": "Methods", "kind": 2048, "children": [ - 340, - 334, - 346, - 343, - 330 + 342, + 336, + 348, + 345, + 327 ] } ], @@ -7884,28 +7924,28 @@ ] }, { - "id": 351, + "id": 353, "name": "Follows", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 352, + "id": 354, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 353, + "id": 355, "name": "new Follows", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 354, + "id": 356, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -7915,18 +7955,64 @@ "id": 1, "name": "Client" } + }, + { + "id": 357, + "name": "__namedParameters", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 358, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 359, + "name": "username", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 7, + "character": 54 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 359 + ] + } + ] + } + } } ], "type": { "type": "reference", - "id": 351, + "id": 353, "name": "Follows" } } ] }, { - "id": 355, + "id": 360, "name": "client", "kind": 1024, "kindString": "Property", @@ -7945,7 +8031,25 @@ } }, { - "id": 356, + "id": 361, + "name": "username", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 6, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 362, "name": "list", "kind": 2048, "kindString": "Method", @@ -7953,38 +8057,85 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 10, + "line": 12, "character": 12 } ], "signatures": [ { - "id": 357, + "id": 363, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 358, - "name": "username", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 359, + "id": 364, "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "any" + "type": "reflection", + "declaration": { + "id": 365, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 366, + "name": "page", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 12, + "character": 28 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 367, + "name": "perPage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/follows.ts", + "line": 12, + "character": 46 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 366, + 367 + ] + } + ] + } } } ], @@ -7992,8 +8143,11 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "array", + "elementType": { + "type": "intrinsic", + "name": "unknown" + } } ], "name": "Promise" @@ -8007,21 +8161,22 @@ "title": "Constructors", "kind": 512, "children": [ - 352 + 354 ] }, { "title": "Properties", "kind": 1024, "children": [ - 355 + 360, + 361 ] }, { "title": "Methods", "kind": 2048, "children": [ - 356 + 362 ] } ], @@ -8034,28 +8189,28 @@ ] }, { - "id": 2884, + "id": 2889, "name": "ForkManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2885, + "id": 2890, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2886, + "id": 2891, "name": "new ForkManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2887, + "id": 2892, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -8067,7 +8222,7 @@ } }, { - "id": 2888, + "id": 2893, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -8075,14 +8230,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2889, + "id": 2894, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2890, + "id": 2895, "name": "url", "kind": 1024, "kindString": "Property", @@ -8107,7 +8262,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2890 + 2895 ] } ] @@ -8117,24 +8272,24 @@ ], "type": { "type": "reference", - "id": 2884, + "id": 2889, "name": "ForkManager" }, "overwrites": { "type": "reference", - "id": 2832, + "id": 2837, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2831, + "id": 2836, "name": "Manager.constructor" } }, { - "id": 2893, + "id": 2898, "name": "cache", "kind": 1024, "kindString": "Property", @@ -8171,12 +8326,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 2844, "name": "Manager.cache" } }, { - "id": 2891, + "id": 2896, "name": "client", "kind": 1024, "kindString": "Property", @@ -8195,12 +8350,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2837, + "id": 2842, "name": "Manager.client" } }, { - "id": 2892, + "id": 2897, "name": "url", "kind": 1024, "kindString": "Property", @@ -8220,12 +8375,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2838, + "id": 2843, "name": "Manager.url" } }, { - "id": 2894, + "id": 2899, "name": "add", "kind": 2048, "kindString": "Method", @@ -8239,14 +8394,14 @@ ], "signatures": [ { - "id": 2895, + "id": 2900, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2896, + "id": 2901, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -8266,7 +8421,7 @@ } }, { - "id": 2897, + "id": 2902, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -8283,19 +8438,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 2841, + "id": 2846, "name": "Manager.add" } } ], "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 2845, "name": "Manager.add" } }, { - "id": 2898, + "id": 2903, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -8309,14 +8464,14 @@ ], "signatures": [ { - "id": 2899, + "id": 2904, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2900, + "id": 2905, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -8342,14 +8497,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 2845, + "id": 2850, "name": "Manager.resolve" } } ], "inheritedFrom": { "type": "reference", - "id": 2844, + "id": 2849, "name": "Manager.resolve" } } @@ -8359,24 +8514,24 @@ "title": "Constructors", "kind": 512, "children": [ - 2885 + 2890 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2893, - 2891, - 2892 + 2898, + 2896, + 2897 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2894, - 2898 + 2899, + 2903 ] } ], @@ -8390,34 +8545,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2830, + "id": 2835, "name": "Manager" } ] }, { - "id": 360, + "id": 368, "name": "Gist", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 361, + "id": 369, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 362, + "id": 370, "name": "new Gist", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 363, + "id": 371, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -8425,14 +8580,14 @@ "type": { "type": "reflection", "declaration": { - "id": 364, + "id": 372, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 555, + "id": 563, "name": "comments", "kind": 1024, "kindString": "Property", @@ -8453,7 +8608,7 @@ } }, { - "id": 557, + "id": 565, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -8474,7 +8629,7 @@ } }, { - "id": 533, + "id": 541, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -8495,7 +8650,7 @@ } }, { - "id": 552, + "id": 560, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -8516,7 +8671,7 @@ } }, { - "id": 554, + "id": 562, "name": "description", "kind": 1024, "kindString": "Property", @@ -8546,7 +8701,7 @@ } }, { - "id": 539, + "id": 547, "name": "files", "kind": 1024, "kindString": "Property", @@ -8564,20 +8719,20 @@ "type": { "type": "reflection", "declaration": { - "id": 540, + "id": 548, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 541, + "id": 549, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 542, + "id": 550, "name": "key", "kind": 32768, "flags": {}, @@ -8593,14 +8748,14 @@ { "type": "reflection", "declaration": { - "id": 543, + "id": 551, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 550, + "id": 558, "name": "content", "kind": 1024, "kindString": "Property", @@ -8621,7 +8776,7 @@ } }, { - "id": 544, + "id": 552, "name": "filename", "kind": 1024, "kindString": "Property", @@ -8642,7 +8797,7 @@ } }, { - "id": 546, + "id": 554, "name": "language", "kind": 1024, "kindString": "Property", @@ -8663,7 +8818,7 @@ } }, { - "id": 547, + "id": 555, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -8684,7 +8839,7 @@ } }, { - "id": 548, + "id": 556, "name": "size", "kind": 1024, "kindString": "Property", @@ -8705,7 +8860,7 @@ } }, { - "id": 549, + "id": 557, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -8726,7 +8881,7 @@ } }, { - "id": 545, + "id": 553, "name": "type", "kind": 1024, "kindString": "Property", @@ -8752,13 +8907,13 @@ "title": "Properties", "kind": 1024, "children": [ - 550, - 544, - 546, - 547, - 548, - 549, - 545 + 558, + 552, + 554, + 555, + 556, + 557, + 553 ] } ], @@ -8782,7 +8937,7 @@ } }, { - "id": 450, + "id": 458, "name": "fork_of", "kind": 1024, "kindString": "Property", @@ -8810,14 +8965,14 @@ { "type": "reflection", "declaration": { - "id": 451, + "id": 459, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 474, + "id": 482, "name": "comments", "kind": 1024, "kindString": "Property", @@ -8837,7 +8992,7 @@ } }, { - "id": 498, + "id": 506, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -8857,7 +9012,7 @@ } }, { - "id": 454, + "id": 462, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -8877,7 +9032,7 @@ } }, { - "id": 471, + "id": 479, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -8897,7 +9052,7 @@ } }, { - "id": 473, + "id": 481, "name": "description", "kind": 1024, "kindString": "Property", @@ -8926,7 +9081,7 @@ } }, { - "id": 460, + "id": 468, "name": "files", "kind": 1024, "kindString": "Property", @@ -8943,20 +9098,20 @@ "type": { "type": "reflection", "declaration": { - "id": 461, + "id": 469, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 462, + "id": 470, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 463, + "id": 471, "name": "key", "kind": 32768, "flags": {}, @@ -8969,14 +9124,14 @@ "type": { "type": "reflection", "declaration": { - "id": 464, + "id": 472, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 465, + "id": 473, "name": "filename", "kind": 1024, "kindString": "Property", @@ -8997,7 +9152,7 @@ } }, { - "id": 467, + "id": 475, "name": "language", "kind": 1024, "kindString": "Property", @@ -9018,7 +9173,7 @@ } }, { - "id": 468, + "id": 476, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -9039,7 +9194,7 @@ } }, { - "id": 469, + "id": 477, "name": "size", "kind": 1024, "kindString": "Property", @@ -9060,7 +9215,7 @@ } }, { - "id": 466, + "id": 474, "name": "type", "kind": 1024, "kindString": "Property", @@ -9086,11 +9241,11 @@ "title": "Properties", "kind": 1024, "children": [ - 465, - 467, - 468, - 469, - 466 + 473, + 475, + 476, + 477, + 474 ] } ], @@ -9108,7 +9263,7 @@ } }, { - "id": 523, + "id": 531, "name": "forks", "kind": 1024, "kindString": "Property", @@ -9128,20 +9283,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 524, + "id": 532, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 525, + "id": 533, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 526, + "id": 534, "name": "key", "kind": 32768, "flags": {}, @@ -9161,7 +9316,7 @@ } }, { - "id": 453, + "id": 461, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -9181,7 +9336,7 @@ } }, { - "id": 457, + "id": 465, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -9201,7 +9356,7 @@ } }, { - "id": 458, + "id": 466, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -9221,7 +9376,7 @@ } }, { - "id": 527, + "id": 535, "name": "history", "kind": 1024, "kindString": "Property", @@ -9241,20 +9396,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 528, + "id": 536, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 529, + "id": 537, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 530, + "id": 538, "name": "key", "kind": 32768, "flags": {}, @@ -9274,7 +9429,7 @@ } }, { - "id": 459, + "id": 467, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9294,7 +9449,7 @@ } }, { - "id": 455, + "id": 463, "name": "id", "kind": 1024, "kindString": "Property", @@ -9314,7 +9469,7 @@ } }, { - "id": 456, + "id": 464, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -9334,7 +9489,7 @@ } }, { - "id": 499, + "id": 507, "name": "owner", "kind": 1024, "kindString": "Property", @@ -9359,14 +9514,14 @@ { "type": "reflection", "declaration": { - "id": 500, + "id": 508, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 506, + "id": 514, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -9386,7 +9541,7 @@ } }, { - "id": 502, + "id": 510, "name": "email", "kind": 1024, "kindString": "Property", @@ -9416,7 +9571,7 @@ } }, { - "id": 517, + "id": 525, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -9436,7 +9591,7 @@ } }, { - "id": 510, + "id": 518, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -9456,7 +9611,7 @@ } }, { - "id": 511, + "id": 519, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -9476,7 +9631,7 @@ } }, { - "id": 512, + "id": 520, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -9496,7 +9651,7 @@ } }, { - "id": 507, + "id": 515, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -9525,7 +9680,7 @@ } }, { - "id": 509, + "id": 517, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9545,7 +9700,7 @@ } }, { - "id": 504, + "id": 512, "name": "id", "kind": 1024, "kindString": "Property", @@ -9565,7 +9720,7 @@ } }, { - "id": 503, + "id": 511, "name": "login", "kind": 1024, "kindString": "Property", @@ -9585,7 +9740,7 @@ } }, { - "id": 501, + "id": 509, "name": "name", "kind": 1024, "kindString": "Property", @@ -9615,7 +9770,7 @@ } }, { - "id": 505, + "id": 513, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -9635,7 +9790,7 @@ } }, { - "id": 515, + "id": 523, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -9655,7 +9810,7 @@ } }, { - "id": 518, + "id": 526, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -9675,7 +9830,7 @@ } }, { - "id": 516, + "id": 524, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -9695,7 +9850,7 @@ } }, { - "id": 520, + "id": 528, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -9715,7 +9870,7 @@ } }, { - "id": 521, + "id": 529, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -9736,7 +9891,7 @@ } }, { - "id": 513, + "id": 521, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -9756,7 +9911,7 @@ } }, { - "id": 514, + "id": 522, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -9776,7 +9931,7 @@ } }, { - "id": 519, + "id": 527, "name": "type", "kind": 1024, "kindString": "Property", @@ -9796,7 +9951,7 @@ } }, { - "id": 508, + "id": 516, "name": "url", "kind": 1024, "kindString": "Property", @@ -9821,27 +9976,27 @@ "title": "Properties", "kind": 1024, "children": [ - 506, - 502, - 517, + 514, 510, - 511, - 512, - 507, - 509, - 504, - 503, - 501, - 505, - 515, + 525, 518, - 516, + 519, 520, - 521, + 515, + 517, + 512, + 511, + 509, 513, - 514, - 519, - 508 + 523, + 526, + 524, + 528, + 529, + 521, + 522, + 527, + 516 ] } ] @@ -9851,7 +10006,7 @@ } }, { - "id": 470, + "id": 478, "name": "public", "kind": 1024, "kindString": "Property", @@ -9871,7 +10026,7 @@ } }, { - "id": 522, + "id": 530, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -9892,7 +10047,7 @@ } }, { - "id": 472, + "id": 480, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -9912,7 +10067,7 @@ } }, { - "id": 452, + "id": 460, "name": "url", "kind": 1024, "kindString": "Property", @@ -9932,7 +10087,7 @@ } }, { - "id": 475, + "id": 483, "name": "user", "kind": 1024, "kindString": "Property", @@ -9956,14 +10111,14 @@ { "type": "reflection", "declaration": { - "id": 476, + "id": 484, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 482, + "id": 490, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -9983,7 +10138,7 @@ } }, { - "id": 478, + "id": 486, "name": "email", "kind": 1024, "kindString": "Property", @@ -10013,7 +10168,7 @@ } }, { - "id": 493, + "id": 501, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -10033,7 +10188,7 @@ } }, { - "id": 486, + "id": 494, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -10053,7 +10208,7 @@ } }, { - "id": 487, + "id": 495, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -10073,7 +10228,7 @@ } }, { - "id": 488, + "id": 496, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -10093,7 +10248,7 @@ } }, { - "id": 483, + "id": 491, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -10122,7 +10277,7 @@ } }, { - "id": 485, + "id": 493, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -10142,7 +10297,7 @@ } }, { - "id": 480, + "id": 488, "name": "id", "kind": 1024, "kindString": "Property", @@ -10162,7 +10317,7 @@ } }, { - "id": 479, + "id": 487, "name": "login", "kind": 1024, "kindString": "Property", @@ -10182,7 +10337,7 @@ } }, { - "id": 477, + "id": 485, "name": "name", "kind": 1024, "kindString": "Property", @@ -10212,7 +10367,7 @@ } }, { - "id": 481, + "id": 489, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -10232,7 +10387,7 @@ } }, { - "id": 491, + "id": 499, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -10252,7 +10407,7 @@ } }, { - "id": 494, + "id": 502, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -10272,7 +10427,7 @@ } }, { - "id": 492, + "id": 500, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -10292,7 +10447,7 @@ } }, { - "id": 496, + "id": 504, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -10312,7 +10467,7 @@ } }, { - "id": 497, + "id": 505, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -10333,7 +10488,7 @@ } }, { - "id": 489, + "id": 497, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -10353,7 +10508,7 @@ } }, { - "id": 490, + "id": 498, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -10373,7 +10528,7 @@ } }, { - "id": 495, + "id": 503, "name": "type", "kind": 1024, "kindString": "Property", @@ -10393,7 +10548,7 @@ } }, { - "id": 484, + "id": 492, "name": "url", "kind": 1024, "kindString": "Property", @@ -10418,27 +10573,27 @@ "title": "Properties", "kind": 1024, "children": [ - 482, - 478, - 493, + 490, 486, - 487, - 488, - 483, - 485, - 480, - 479, - 477, - 481, - 491, + 501, 494, - 492, + 495, 496, - 497, + 491, + 493, + 488, + 487, + 485, 489, - 490, - 495, - 484 + 499, + 502, + 500, + 504, + 505, + 497, + 498, + 503, + 492 ] } ] @@ -10453,26 +10608,26 @@ "title": "Properties", "kind": 1024, "children": [ - 474, - 498, - 454, - 471, - 473, + 482, + 506, + 462, + 479, + 481, + 468, + 531, + 461, + 465, + 466, + 535, + 467, + 463, + 464, + 507, + 478, + 530, + 480, 460, - 523, - 453, - 457, - 458, - 527, - 459, - 455, - 456, - 499, - 470, - 522, - 472, - 452, - 475 + 483 ] } ] @@ -10482,7 +10637,7 @@ } }, { - "id": 365, + "id": 373, "name": "forks", "kind": 1024, "kindString": "Property", @@ -10509,14 +10664,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 366, + "id": 374, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 415, + "id": 423, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10537,7 +10692,7 @@ } }, { - "id": 367, + "id": 375, "name": "id", "kind": 1024, "kindString": "Property", @@ -10558,7 +10713,7 @@ } }, { - "id": 416, + "id": 424, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -10579,7 +10734,7 @@ } }, { - "id": 368, + "id": 376, "name": "url", "kind": 1024, "kindString": "Property", @@ -10600,7 +10755,7 @@ } }, { - "id": 369, + "id": 377, "name": "user", "kind": 1024, "kindString": "Property", @@ -10618,14 +10773,14 @@ "type": { "type": "reflection", "declaration": { - "id": 370, + "id": 378, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 374, + "id": 382, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -10645,7 +10800,7 @@ } }, { - "id": 395, + "id": 403, "name": "bio", "kind": 1024, "kindString": "Property", @@ -10674,7 +10829,7 @@ } }, { - "id": 391, + "id": 399, "name": "blog", "kind": 1024, "kindString": "Property", @@ -10703,7 +10858,7 @@ } }, { - "id": 414, + "id": 422, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -10724,7 +10879,7 @@ } }, { - "id": 390, + "id": 398, "name": "company", "kind": 1024, "kindString": "Property", @@ -10753,7 +10908,7 @@ } }, { - "id": 401, + "id": 409, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10773,7 +10928,7 @@ } }, { - "id": 413, + "id": 421, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -10794,7 +10949,7 @@ } }, { - "id": 393, + "id": 401, "name": "email", "kind": 1024, "kindString": "Property", @@ -10823,7 +10978,7 @@ } }, { - "id": 385, + "id": 393, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -10843,7 +10998,7 @@ } }, { - "id": 399, + "id": 407, "name": "followers", "kind": 1024, "kindString": "Property", @@ -10863,7 +11018,7 @@ } }, { - "id": 378, + "id": 386, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -10883,7 +11038,7 @@ } }, { - "id": 400, + "id": 408, "name": "following", "kind": 1024, "kindString": "Property", @@ -10903,7 +11058,7 @@ } }, { - "id": 379, + "id": 387, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -10923,7 +11078,7 @@ } }, { - "id": 380, + "id": 388, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -10943,7 +11098,7 @@ } }, { - "id": 375, + "id": 383, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -10972,7 +11127,7 @@ } }, { - "id": 394, + "id": 402, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -11001,7 +11156,7 @@ } }, { - "id": 377, + "id": 385, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -11021,7 +11176,7 @@ } }, { - "id": 372, + "id": 380, "name": "id", "kind": 1024, "kindString": "Property", @@ -11041,7 +11196,7 @@ } }, { - "id": 392, + "id": 400, "name": "location", "kind": 1024, "kindString": "Property", @@ -11070,7 +11225,7 @@ } }, { - "id": 371, + "id": 379, "name": "login", "kind": 1024, "kindString": "Property", @@ -11090,7 +11245,7 @@ } }, { - "id": 389, + "id": 397, "name": "name", "kind": 1024, "kindString": "Property", @@ -11119,7 +11274,7 @@ } }, { - "id": 373, + "id": 381, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -11139,7 +11294,7 @@ } }, { - "id": 383, + "id": 391, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -11159,7 +11314,7 @@ } }, { - "id": 412, + "id": 420, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -11180,7 +11335,7 @@ } }, { - "id": 403, + "id": 411, "name": "plan", "kind": 1024, "kindString": "Property", @@ -11198,14 +11353,14 @@ "type": { "type": "reflection", "declaration": { - "id": 404, + "id": 412, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 405, + "id": 413, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -11225,7 +11380,7 @@ } }, { - "id": 406, + "id": 414, "name": "name", "kind": 1024, "kindString": "Property", @@ -11245,7 +11400,7 @@ } }, { - "id": 408, + "id": 416, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -11265,7 +11420,7 @@ } }, { - "id": 407, + "id": 415, "name": "space", "kind": 1024, "kindString": "Property", @@ -11290,10 +11445,10 @@ "title": "Properties", "kind": 1024, "children": [ - 405, - 406, - 408, - 407 + 413, + 414, + 416, + 415 ] } ] @@ -11301,7 +11456,7 @@ } }, { - "id": 410, + "id": 418, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -11322,7 +11477,7 @@ } }, { - "id": 398, + "id": 406, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -11342,7 +11497,7 @@ } }, { - "id": 397, + "id": 405, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -11362,7 +11517,7 @@ } }, { - "id": 386, + "id": 394, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -11382,7 +11537,7 @@ } }, { - "id": 384, + "id": 392, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -11402,7 +11557,7 @@ } }, { - "id": 388, + "id": 396, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -11422,7 +11577,7 @@ } }, { - "id": 381, + "id": 389, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -11442,7 +11597,7 @@ } }, { - "id": 382, + "id": 390, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -11462,7 +11617,7 @@ } }, { - "id": 409, + "id": 417, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -11492,7 +11647,7 @@ } }, { - "id": 411, + "id": 419, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -11513,7 +11668,7 @@ } }, { - "id": 396, + "id": 404, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -11543,7 +11698,7 @@ } }, { - "id": 387, + "id": 395, "name": "type", "kind": 1024, "kindString": "Property", @@ -11563,7 +11718,7 @@ } }, { - "id": 402, + "id": 410, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -11583,7 +11738,7 @@ } }, { - "id": 376, + "id": 384, "name": "url", "kind": 1024, "kindString": "Property", @@ -11608,45 +11763,45 @@ "title": "Properties", "kind": 1024, "children": [ - 374, - 395, - 391, - 414, - 390, + 382, + 403, + 399, + 422, + 398, + 409, + 421, 401, - 413, 393, + 407, + 386, + 408, + 387, + 388, + 383, + 402, 385, - 399, - 378, + 380, 400, 379, - 380, - 375, - 394, - 377, - 372, - 392, - 371, - 389, - 373, - 383, - 412, - 403, - 410, - 398, 397, - 386, - 384, - 388, 381, - 382, - 409, + 391, + 420, 411, + 418, + 406, + 405, + 394, + 392, 396, - 387, - 402, - 376 + 389, + 390, + 417, + 419, + 404, + 395, + 410, + 384 ] } ] @@ -11659,11 +11814,11 @@ "title": "Properties", "kind": 1024, "children": [ - 415, - 367, - 416, - 368, - 369 + 423, + 375, + 424, + 376, + 377 ] } ] @@ -11674,7 +11829,7 @@ } }, { - "id": 532, + "id": 540, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -11695,7 +11850,7 @@ } }, { - "id": 536, + "id": 544, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -11716,7 +11871,7 @@ } }, { - "id": 537, + "id": 545, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -11737,7 +11892,7 @@ } }, { - "id": 417, + "id": 425, "name": "history", "kind": 1024, "kindString": "Property", @@ -11764,14 +11919,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 418, + "id": 426, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 444, + "id": 452, "name": "change_status", "kind": 1024, "kindString": "Property", @@ -11789,14 +11944,14 @@ "type": { "type": "reflection", "declaration": { - "id": 445, + "id": 453, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 447, + "id": 455, "name": "additions", "kind": 1024, "kindString": "Property", @@ -11817,7 +11972,7 @@ } }, { - "id": 448, + "id": 456, "name": "deletions", "kind": 1024, "kindString": "Property", @@ -11838,7 +11993,7 @@ } }, { - "id": 446, + "id": 454, "name": "total", "kind": 1024, "kindString": "Property", @@ -11864,9 +12019,9 @@ "title": "Properties", "kind": 1024, "children": [ - 447, - 448, - 446 + 455, + 456, + 454 ] } ] @@ -11874,7 +12029,7 @@ } }, { - "id": 443, + "id": 451, "name": "committed_at", "kind": 1024, "kindString": "Property", @@ -11895,7 +12050,7 @@ } }, { - "id": 449, + "id": 457, "name": "url", "kind": 1024, "kindString": "Property", @@ -11916,7 +12071,7 @@ } }, { - "id": 419, + "id": 427, "name": "user", "kind": 1024, "kindString": "Property", @@ -11941,14 +12096,14 @@ { "type": "reflection", "declaration": { - "id": 420, + "id": 428, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 426, + "id": 434, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -11968,7 +12123,7 @@ } }, { - "id": 422, + "id": 430, "name": "email", "kind": 1024, "kindString": "Property", @@ -11998,7 +12153,7 @@ } }, { - "id": 437, + "id": 445, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -12018,7 +12173,7 @@ } }, { - "id": 430, + "id": 438, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -12038,7 +12193,7 @@ } }, { - "id": 431, + "id": 439, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -12058,7 +12213,7 @@ } }, { - "id": 432, + "id": 440, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -12078,7 +12233,7 @@ } }, { - "id": 427, + "id": 435, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -12107,7 +12262,7 @@ } }, { - "id": 429, + "id": 437, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12127,7 +12282,7 @@ } }, { - "id": 424, + "id": 432, "name": "id", "kind": 1024, "kindString": "Property", @@ -12147,7 +12302,7 @@ } }, { - "id": 423, + "id": 431, "name": "login", "kind": 1024, "kindString": "Property", @@ -12167,7 +12322,7 @@ } }, { - "id": 421, + "id": 429, "name": "name", "kind": 1024, "kindString": "Property", @@ -12197,7 +12352,7 @@ } }, { - "id": 425, + "id": 433, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12217,7 +12372,7 @@ } }, { - "id": 435, + "id": 443, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -12237,7 +12392,7 @@ } }, { - "id": 438, + "id": 446, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -12257,7 +12412,7 @@ } }, { - "id": 436, + "id": 444, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -12277,7 +12432,7 @@ } }, { - "id": 440, + "id": 448, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -12297,7 +12452,7 @@ } }, { - "id": 441, + "id": 449, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -12318,7 +12473,7 @@ } }, { - "id": 433, + "id": 441, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -12338,7 +12493,7 @@ } }, { - "id": 434, + "id": 442, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -12358,7 +12513,7 @@ } }, { - "id": 439, + "id": 447, "name": "type", "kind": 1024, "kindString": "Property", @@ -12378,7 +12533,7 @@ } }, { - "id": 428, + "id": 436, "name": "url", "kind": 1024, "kindString": "Property", @@ -12403,27 +12558,27 @@ "title": "Properties", "kind": 1024, "children": [ - 426, - 422, - 437, + 434, 430, - 431, - 432, - 427, - 429, - 424, - 423, - 421, - 425, - 435, + 445, 438, - 436, + 439, 440, - 441, + 435, + 437, + 432, + 431, + 429, 433, - 434, - 439, - 428 + 443, + 446, + 444, + 448, + 449, + 441, + 442, + 447, + 436 ] } ] @@ -12433,7 +12588,7 @@ } }, { - "id": 442, + "id": 450, "name": "version", "kind": 1024, "kindString": "Property", @@ -12459,11 +12614,11 @@ "title": "Properties", "kind": 1024, "children": [ - 444, - 443, - 449, - 419, - 442 + 452, + 451, + 457, + 427, + 450 ] } ] @@ -12474,7 +12629,7 @@ } }, { - "id": 538, + "id": 546, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12495,7 +12650,7 @@ } }, { - "id": 534, + "id": 542, "name": "id", "kind": 1024, "kindString": "Property", @@ -12516,7 +12671,7 @@ } }, { - "id": 535, + "id": 543, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12537,7 +12692,7 @@ } }, { - "id": 558, + "id": 566, "name": "owner", "kind": 1024, "kindString": "Property", @@ -12562,14 +12717,14 @@ { "type": "reflection", "declaration": { - "id": 559, + "id": 567, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 565, + "id": 573, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -12589,7 +12744,7 @@ } }, { - "id": 561, + "id": 569, "name": "email", "kind": 1024, "kindString": "Property", @@ -12619,7 +12774,7 @@ } }, { - "id": 576, + "id": 584, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -12639,7 +12794,7 @@ } }, { - "id": 569, + "id": 577, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -12659,7 +12814,7 @@ } }, { - "id": 570, + "id": 578, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -12679,7 +12834,7 @@ } }, { - "id": 571, + "id": 579, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -12699,7 +12854,7 @@ } }, { - "id": 566, + "id": 574, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -12728,7 +12883,7 @@ } }, { - "id": 568, + "id": 576, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12748,7 +12903,7 @@ } }, { - "id": 563, + "id": 571, "name": "id", "kind": 1024, "kindString": "Property", @@ -12768,7 +12923,7 @@ } }, { - "id": 562, + "id": 570, "name": "login", "kind": 1024, "kindString": "Property", @@ -12788,7 +12943,7 @@ } }, { - "id": 560, + "id": 568, "name": "name", "kind": 1024, "kindString": "Property", @@ -12818,7 +12973,7 @@ } }, { - "id": 564, + "id": 572, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12838,7 +12993,7 @@ } }, { - "id": 574, + "id": 582, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -12858,7 +13013,7 @@ } }, { - "id": 577, + "id": 585, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -12878,7 +13033,7 @@ } }, { - "id": 575, + "id": 583, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -12898,7 +13053,7 @@ } }, { - "id": 579, + "id": 587, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -12918,7 +13073,7 @@ } }, { - "id": 580, + "id": 588, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -12939,7 +13094,7 @@ } }, { - "id": 572, + "id": 580, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -12959,7 +13114,7 @@ } }, { - "id": 573, + "id": 581, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -12979,7 +13134,7 @@ } }, { - "id": 578, + "id": 586, "name": "type", "kind": 1024, "kindString": "Property", @@ -12999,7 +13154,7 @@ } }, { - "id": 567, + "id": 575, "name": "url", "kind": 1024, "kindString": "Property", @@ -13024,27 +13179,27 @@ "title": "Properties", "kind": 1024, "children": [ - 565, - 561, - 576, + 573, 569, - 570, - 571, - 566, - 568, - 563, - 562, - 560, - 564, - 574, + 584, 577, - 575, + 578, 579, - 580, + 574, + 576, + 571, + 570, + 568, 572, - 573, - 578, - 567 + 582, + 585, + 583, + 587, + 588, + 580, + 581, + 586, + 575 ] } ] @@ -13054,7 +13209,7 @@ } }, { - "id": 551, + "id": 559, "name": "public", "kind": 1024, "kindString": "Property", @@ -13075,7 +13230,7 @@ } }, { - "id": 581, + "id": 589, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -13096,7 +13251,7 @@ } }, { - "id": 553, + "id": 561, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -13117,7 +13272,7 @@ } }, { - "id": 531, + "id": 539, "name": "url", "kind": 1024, "kindString": "Property", @@ -13138,7 +13293,7 @@ } }, { - "id": 556, + "id": 564, "name": "user", "kind": 1024, "kindString": "Property", @@ -13173,27 +13328,27 @@ "title": "Properties", "kind": 1024, "children": [ - 555, - 557, - 533, - 552, - 554, + 563, + 565, + 541, + 560, + 562, + 547, + 458, + 373, + 540, + 544, + 545, + 425, + 546, + 542, + 543, + 566, + 559, + 589, + 561, 539, - 450, - 365, - 532, - 536, - 537, - 417, - 538, - 534, - 535, - 558, - 551, - 581, - 553, - 531, - 556 + 564 ] } ] @@ -13201,7 +13356,7 @@ } }, { - "id": 582, + "id": 590, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -13209,14 +13364,14 @@ "type": { "type": "reflection", "declaration": { - "id": 583, + "id": 591, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 584, + "id": 592, "name": "client", "kind": 1024, "kindString": "Property", @@ -13240,7 +13395,7 @@ "title": "Properties", "kind": 1024, "children": [ - 584 + 592 ] } ] @@ -13250,7 +13405,7 @@ ], "type": { "type": "reference", - "id": 360, + "id": 368, "name": "Gist" }, "overwrites": { @@ -13267,7 +13422,7 @@ } }, { - "id": 809, + "id": 817, "name": "client", "kind": 1024, "kindString": "Property", @@ -13291,7 +13446,7 @@ } }, { - "id": 585, + "id": 593, "name": "data", "kind": 1024, "kindString": "Property", @@ -13309,14 +13464,14 @@ "type": { "type": "reflection", "declaration": { - "id": 586, + "id": 594, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 777, + "id": 785, "name": "comments", "kind": 1024, "kindString": "Property", @@ -13337,7 +13492,7 @@ } }, { - "id": 779, + "id": 787, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -13358,7 +13513,7 @@ } }, { - "id": 755, + "id": 763, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -13379,7 +13534,7 @@ } }, { - "id": 774, + "id": 782, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -13400,7 +13555,7 @@ } }, { - "id": 776, + "id": 784, "name": "description", "kind": 1024, "kindString": "Property", @@ -13430,7 +13585,7 @@ } }, { - "id": 761, + "id": 769, "name": "files", "kind": 1024, "kindString": "Property", @@ -13448,20 +13603,20 @@ "type": { "type": "reflection", "declaration": { - "id": 762, + "id": 770, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 763, + "id": 771, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 764, + "id": 772, "name": "key", "kind": 32768, "flags": {}, @@ -13477,14 +13632,14 @@ { "type": "reflection", "declaration": { - "id": 765, + "id": 773, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 772, + "id": 780, "name": "content", "kind": 1024, "kindString": "Property", @@ -13505,7 +13660,7 @@ } }, { - "id": 766, + "id": 774, "name": "filename", "kind": 1024, "kindString": "Property", @@ -13526,7 +13681,7 @@ } }, { - "id": 768, + "id": 776, "name": "language", "kind": 1024, "kindString": "Property", @@ -13547,7 +13702,7 @@ } }, { - "id": 769, + "id": 777, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -13568,7 +13723,7 @@ } }, { - "id": 770, + "id": 778, "name": "size", "kind": 1024, "kindString": "Property", @@ -13589,7 +13744,7 @@ } }, { - "id": 771, + "id": 779, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -13610,7 +13765,7 @@ } }, { - "id": 767, + "id": 775, "name": "type", "kind": 1024, "kindString": "Property", @@ -13636,13 +13791,13 @@ "title": "Properties", "kind": 1024, "children": [ - 772, - 766, - 768, - 769, - 770, - 771, - 767 + 780, + 774, + 776, + 777, + 778, + 779, + 775 ] } ], @@ -13666,7 +13821,7 @@ } }, { - "id": 672, + "id": 680, "name": "fork_of", "kind": 1024, "kindString": "Property", @@ -13694,14 +13849,14 @@ { "type": "reflection", "declaration": { - "id": 673, + "id": 681, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 696, + "id": 704, "name": "comments", "kind": 1024, "kindString": "Property", @@ -13721,7 +13876,7 @@ } }, { - "id": 720, + "id": 728, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -13741,7 +13896,7 @@ } }, { - "id": 676, + "id": 684, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -13761,7 +13916,7 @@ } }, { - "id": 693, + "id": 701, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -13781,7 +13936,7 @@ } }, { - "id": 695, + "id": 703, "name": "description", "kind": 1024, "kindString": "Property", @@ -13810,7 +13965,7 @@ } }, { - "id": 682, + "id": 690, "name": "files", "kind": 1024, "kindString": "Property", @@ -13827,20 +13982,20 @@ "type": { "type": "reflection", "declaration": { - "id": 683, + "id": 691, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 684, + "id": 692, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 685, + "id": 693, "name": "key", "kind": 32768, "flags": {}, @@ -13853,14 +14008,14 @@ "type": { "type": "reflection", "declaration": { - "id": 686, + "id": 694, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 687, + "id": 695, "name": "filename", "kind": 1024, "kindString": "Property", @@ -13881,7 +14036,7 @@ } }, { - "id": 689, + "id": 697, "name": "language", "kind": 1024, "kindString": "Property", @@ -13902,7 +14057,7 @@ } }, { - "id": 690, + "id": 698, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -13923,7 +14078,7 @@ } }, { - "id": 691, + "id": 699, "name": "size", "kind": 1024, "kindString": "Property", @@ -13944,7 +14099,7 @@ } }, { - "id": 688, + "id": 696, "name": "type", "kind": 1024, "kindString": "Property", @@ -13970,11 +14125,11 @@ "title": "Properties", "kind": 1024, "children": [ - 687, - 689, - 690, - 691, - 688 + 695, + 697, + 698, + 699, + 696 ] } ], @@ -13992,7 +14147,7 @@ } }, { - "id": 745, + "id": 753, "name": "forks", "kind": 1024, "kindString": "Property", @@ -14012,20 +14167,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 746, + "id": 754, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 747, + "id": 755, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 748, + "id": 756, "name": "key", "kind": 32768, "flags": {}, @@ -14045,7 +14200,7 @@ } }, { - "id": 675, + "id": 683, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -14065,7 +14220,7 @@ } }, { - "id": 679, + "id": 687, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -14085,7 +14240,7 @@ } }, { - "id": 680, + "id": 688, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -14105,7 +14260,7 @@ } }, { - "id": 749, + "id": 757, "name": "history", "kind": 1024, "kindString": "Property", @@ -14125,20 +14280,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 750, + "id": 758, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 751, + "id": 759, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 752, + "id": 760, "name": "key", "kind": 32768, "flags": {}, @@ -14158,7 +14313,7 @@ } }, { - "id": 681, + "id": 689, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -14178,7 +14333,7 @@ } }, { - "id": 677, + "id": 685, "name": "id", "kind": 1024, "kindString": "Property", @@ -14198,7 +14353,7 @@ } }, { - "id": 678, + "id": 686, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14218,7 +14373,7 @@ } }, { - "id": 721, + "id": 729, "name": "owner", "kind": 1024, "kindString": "Property", @@ -14243,14 +14398,14 @@ { "type": "reflection", "declaration": { - "id": 722, + "id": 730, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 728, + "id": 736, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -14270,7 +14425,7 @@ } }, { - "id": 724, + "id": 732, "name": "email", "kind": 1024, "kindString": "Property", @@ -14300,7 +14455,7 @@ } }, { - "id": 739, + "id": 747, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -14320,7 +14475,7 @@ } }, { - "id": 732, + "id": 740, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -14340,7 +14495,7 @@ } }, { - "id": 733, + "id": 741, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -14360,7 +14515,7 @@ } }, { - "id": 734, + "id": 742, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -14380,7 +14535,7 @@ } }, { - "id": 729, + "id": 737, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -14409,7 +14564,7 @@ } }, { - "id": 731, + "id": 739, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -14429,7 +14584,7 @@ } }, { - "id": 726, + "id": 734, "name": "id", "kind": 1024, "kindString": "Property", @@ -14449,7 +14604,7 @@ } }, { - "id": 725, + "id": 733, "name": "login", "kind": 1024, "kindString": "Property", @@ -14469,7 +14624,7 @@ } }, { - "id": 723, + "id": 731, "name": "name", "kind": 1024, "kindString": "Property", @@ -14499,7 +14654,7 @@ } }, { - "id": 727, + "id": 735, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14519,7 +14674,7 @@ } }, { - "id": 737, + "id": 745, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -14539,7 +14694,7 @@ } }, { - "id": 740, + "id": 748, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -14559,7 +14714,7 @@ } }, { - "id": 738, + "id": 746, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -14579,7 +14734,7 @@ } }, { - "id": 742, + "id": 750, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -14599,7 +14754,7 @@ } }, { - "id": 743, + "id": 751, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -14620,7 +14775,7 @@ } }, { - "id": 735, + "id": 743, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -14640,7 +14795,7 @@ } }, { - "id": 736, + "id": 744, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -14660,7 +14815,7 @@ } }, { - "id": 741, + "id": 749, "name": "type", "kind": 1024, "kindString": "Property", @@ -14680,7 +14835,7 @@ } }, { - "id": 730, + "id": 738, "name": "url", "kind": 1024, "kindString": "Property", @@ -14705,27 +14860,27 @@ "title": "Properties", "kind": 1024, "children": [ - 728, - 724, - 739, + 736, 732, - 733, - 734, - 729, - 731, - 726, - 725, - 723, - 727, - 737, + 747, 740, - 738, + 741, 742, - 743, + 737, + 739, + 734, + 733, + 731, 735, - 736, - 741, - 730 + 745, + 748, + 746, + 750, + 751, + 743, + 744, + 749, + 738 ] } ] @@ -14735,7 +14890,7 @@ } }, { - "id": 692, + "id": 700, "name": "public", "kind": 1024, "kindString": "Property", @@ -14755,7 +14910,7 @@ } }, { - "id": 744, + "id": 752, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -14776,7 +14931,7 @@ } }, { - "id": 694, + "id": 702, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -14796,7 +14951,7 @@ } }, { - "id": 674, + "id": 682, "name": "url", "kind": 1024, "kindString": "Property", @@ -14816,7 +14971,7 @@ } }, { - "id": 697, + "id": 705, "name": "user", "kind": 1024, "kindString": "Property", @@ -14840,14 +14995,14 @@ { "type": "reflection", "declaration": { - "id": 698, + "id": 706, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 704, + "id": 712, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -14867,7 +15022,7 @@ } }, { - "id": 700, + "id": 708, "name": "email", "kind": 1024, "kindString": "Property", @@ -14897,7 +15052,7 @@ } }, { - "id": 715, + "id": 723, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -14917,7 +15072,7 @@ } }, { - "id": 708, + "id": 716, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -14937,7 +15092,7 @@ } }, { - "id": 709, + "id": 717, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -14957,7 +15112,7 @@ } }, { - "id": 710, + "id": 718, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -14977,7 +15132,7 @@ } }, { - "id": 705, + "id": 713, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -15006,7 +15161,7 @@ } }, { - "id": 707, + "id": 715, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -15026,7 +15181,7 @@ } }, { - "id": 702, + "id": 710, "name": "id", "kind": 1024, "kindString": "Property", @@ -15046,7 +15201,7 @@ } }, { - "id": 701, + "id": 709, "name": "login", "kind": 1024, "kindString": "Property", @@ -15066,7 +15221,7 @@ } }, { - "id": 699, + "id": 707, "name": "name", "kind": 1024, "kindString": "Property", @@ -15096,7 +15251,7 @@ } }, { - "id": 703, + "id": 711, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -15116,7 +15271,7 @@ } }, { - "id": 713, + "id": 721, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -15136,7 +15291,7 @@ } }, { - "id": 716, + "id": 724, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -15156,7 +15311,7 @@ } }, { - "id": 714, + "id": 722, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -15176,7 +15331,7 @@ } }, { - "id": 718, + "id": 726, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -15196,7 +15351,7 @@ } }, { - "id": 719, + "id": 727, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -15217,7 +15372,7 @@ } }, { - "id": 711, + "id": 719, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -15237,7 +15392,7 @@ } }, { - "id": 712, + "id": 720, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -15257,7 +15412,7 @@ } }, { - "id": 717, + "id": 725, "name": "type", "kind": 1024, "kindString": "Property", @@ -15277,7 +15432,7 @@ } }, { - "id": 706, + "id": 714, "name": "url", "kind": 1024, "kindString": "Property", @@ -15302,27 +15457,27 @@ "title": "Properties", "kind": 1024, "children": [ - 704, - 700, - 715, + 712, 708, - 709, - 710, - 705, - 707, - 702, - 701, - 699, - 703, - 713, + 723, 716, - 714, + 717, 718, - 719, + 713, + 715, + 710, + 709, + 707, 711, - 712, - 717, - 706 + 721, + 724, + 722, + 726, + 727, + 719, + 720, + 725, + 714 ] } ] @@ -15337,26 +15492,26 @@ "title": "Properties", "kind": 1024, "children": [ - 696, - 720, - 676, - 693, - 695, + 704, + 728, + 684, + 701, + 703, + 690, + 753, + 683, + 687, + 688, + 757, + 689, + 685, + 686, + 729, + 700, + 752, + 702, 682, - 745, - 675, - 679, - 680, - 749, - 681, - 677, - 678, - 721, - 692, - 744, - 694, - 674, - 697 + 705 ] } ] @@ -15366,7 +15521,7 @@ } }, { - "id": 587, + "id": 595, "name": "forks", "kind": 1024, "kindString": "Property", @@ -15393,14 +15548,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 588, + "id": 596, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 637, + "id": 645, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15421,7 +15576,7 @@ } }, { - "id": 589, + "id": 597, "name": "id", "kind": 1024, "kindString": "Property", @@ -15442,7 +15597,7 @@ } }, { - "id": 638, + "id": 646, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -15463,7 +15618,7 @@ } }, { - "id": 590, + "id": 598, "name": "url", "kind": 1024, "kindString": "Property", @@ -15484,7 +15639,7 @@ } }, { - "id": 591, + "id": 599, "name": "user", "kind": 1024, "kindString": "Property", @@ -15502,14 +15657,14 @@ "type": { "type": "reflection", "declaration": { - "id": 592, + "id": 600, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 596, + "id": 604, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -15529,7 +15684,7 @@ } }, { - "id": 617, + "id": 625, "name": "bio", "kind": 1024, "kindString": "Property", @@ -15558,7 +15713,7 @@ } }, { - "id": 613, + "id": 621, "name": "blog", "kind": 1024, "kindString": "Property", @@ -15587,7 +15742,7 @@ } }, { - "id": 636, + "id": 644, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -15608,7 +15763,7 @@ } }, { - "id": 612, + "id": 620, "name": "company", "kind": 1024, "kindString": "Property", @@ -15637,7 +15792,7 @@ } }, { - "id": 623, + "id": 631, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15657,7 +15812,7 @@ } }, { - "id": 635, + "id": 643, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -15678,7 +15833,7 @@ } }, { - "id": 615, + "id": 623, "name": "email", "kind": 1024, "kindString": "Property", @@ -15707,7 +15862,7 @@ } }, { - "id": 607, + "id": 615, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -15727,7 +15882,7 @@ } }, { - "id": 621, + "id": 629, "name": "followers", "kind": 1024, "kindString": "Property", @@ -15747,7 +15902,7 @@ } }, { - "id": 600, + "id": 608, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -15767,7 +15922,7 @@ } }, { - "id": 622, + "id": 630, "name": "following", "kind": 1024, "kindString": "Property", @@ -15787,7 +15942,7 @@ } }, { - "id": 601, + "id": 609, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -15807,7 +15962,7 @@ } }, { - "id": 602, + "id": 610, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -15827,7 +15982,7 @@ } }, { - "id": 597, + "id": 605, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -15856,7 +16011,7 @@ } }, { - "id": 616, + "id": 624, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -15885,7 +16040,7 @@ } }, { - "id": 599, + "id": 607, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -15905,7 +16060,7 @@ } }, { - "id": 594, + "id": 602, "name": "id", "kind": 1024, "kindString": "Property", @@ -15925,7 +16080,7 @@ } }, { - "id": 614, + "id": 622, "name": "location", "kind": 1024, "kindString": "Property", @@ -15954,7 +16109,7 @@ } }, { - "id": 593, + "id": 601, "name": "login", "kind": 1024, "kindString": "Property", @@ -15974,7 +16129,7 @@ } }, { - "id": 611, + "id": 619, "name": "name", "kind": 1024, "kindString": "Property", @@ -16003,7 +16158,7 @@ } }, { - "id": 595, + "id": 603, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -16023,7 +16178,7 @@ } }, { - "id": 605, + "id": 613, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -16043,7 +16198,7 @@ } }, { - "id": 634, + "id": 642, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -16064,7 +16219,7 @@ } }, { - "id": 625, + "id": 633, "name": "plan", "kind": 1024, "kindString": "Property", @@ -16082,14 +16237,14 @@ "type": { "type": "reflection", "declaration": { - "id": 626, + "id": 634, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 627, + "id": 635, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -16109,7 +16264,7 @@ } }, { - "id": 628, + "id": 636, "name": "name", "kind": 1024, "kindString": "Property", @@ -16129,7 +16284,7 @@ } }, { - "id": 630, + "id": 638, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -16149,7 +16304,7 @@ } }, { - "id": 629, + "id": 637, "name": "space", "kind": 1024, "kindString": "Property", @@ -16174,10 +16329,10 @@ "title": "Properties", "kind": 1024, "children": [ - 627, - 628, - 630, - 629 + 635, + 636, + 638, + 637 ] } ] @@ -16185,7 +16340,7 @@ } }, { - "id": 632, + "id": 640, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -16206,7 +16361,7 @@ } }, { - "id": 620, + "id": 628, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -16226,7 +16381,7 @@ } }, { - "id": 619, + "id": 627, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -16246,7 +16401,7 @@ } }, { - "id": 608, + "id": 616, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -16266,7 +16421,7 @@ } }, { - "id": 606, + "id": 614, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -16286,7 +16441,7 @@ } }, { - "id": 610, + "id": 618, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -16306,7 +16461,7 @@ } }, { - "id": 603, + "id": 611, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -16326,7 +16481,7 @@ } }, { - "id": 604, + "id": 612, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -16346,7 +16501,7 @@ } }, { - "id": 631, + "id": 639, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -16376,7 +16531,7 @@ } }, { - "id": 633, + "id": 641, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -16397,7 +16552,7 @@ } }, { - "id": 618, + "id": 626, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -16427,7 +16582,7 @@ } }, { - "id": 609, + "id": 617, "name": "type", "kind": 1024, "kindString": "Property", @@ -16447,7 +16602,7 @@ } }, { - "id": 624, + "id": 632, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -16467,7 +16622,7 @@ } }, { - "id": 598, + "id": 606, "name": "url", "kind": 1024, "kindString": "Property", @@ -16492,45 +16647,45 @@ "title": "Properties", "kind": 1024, "children": [ - 596, - 617, - 613, - 636, - 612, + 604, + 625, + 621, + 644, + 620, + 631, + 643, 623, - 635, 615, + 629, + 608, + 630, + 609, + 610, + 605, + 624, 607, - 621, - 600, + 602, 622, 601, - 602, - 597, - 616, - 599, - 594, - 614, - 593, - 611, - 595, - 605, - 634, - 625, - 632, - 620, 619, - 608, - 606, - 610, 603, - 604, - 631, + 613, + 642, 633, + 640, + 628, + 627, + 616, + 614, 618, - 609, - 624, - 598 + 611, + 612, + 639, + 641, + 626, + 617, + 632, + 606 ] } ] @@ -16543,11 +16698,11 @@ "title": "Properties", "kind": 1024, "children": [ - 637, - 589, - 638, - 590, - 591 + 645, + 597, + 646, + 598, + 599 ] } ] @@ -16558,7 +16713,7 @@ } }, { - "id": 754, + "id": 762, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -16579,7 +16734,7 @@ } }, { - "id": 758, + "id": 766, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -16600,7 +16755,7 @@ } }, { - "id": 759, + "id": 767, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -16621,7 +16776,7 @@ } }, { - "id": 639, + "id": 647, "name": "history", "kind": 1024, "kindString": "Property", @@ -16648,14 +16803,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 640, + "id": 648, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 666, + "id": 674, "name": "change_status", "kind": 1024, "kindString": "Property", @@ -16673,14 +16828,14 @@ "type": { "type": "reflection", "declaration": { - "id": 667, + "id": 675, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 669, + "id": 677, "name": "additions", "kind": 1024, "kindString": "Property", @@ -16701,7 +16856,7 @@ } }, { - "id": 670, + "id": 678, "name": "deletions", "kind": 1024, "kindString": "Property", @@ -16722,7 +16877,7 @@ } }, { - "id": 668, + "id": 676, "name": "total", "kind": 1024, "kindString": "Property", @@ -16748,9 +16903,9 @@ "title": "Properties", "kind": 1024, "children": [ - 669, - 670, - 668 + 677, + 678, + 676 ] } ] @@ -16758,7 +16913,7 @@ } }, { - "id": 665, + "id": 673, "name": "committed_at", "kind": 1024, "kindString": "Property", @@ -16779,7 +16934,7 @@ } }, { - "id": 671, + "id": 679, "name": "url", "kind": 1024, "kindString": "Property", @@ -16800,7 +16955,7 @@ } }, { - "id": 641, + "id": 649, "name": "user", "kind": 1024, "kindString": "Property", @@ -16825,14 +16980,14 @@ { "type": "reflection", "declaration": { - "id": 642, + "id": 650, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 648, + "id": 656, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -16852,7 +17007,7 @@ } }, { - "id": 644, + "id": 652, "name": "email", "kind": 1024, "kindString": "Property", @@ -16882,7 +17037,7 @@ } }, { - "id": 659, + "id": 667, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -16902,7 +17057,7 @@ } }, { - "id": 652, + "id": 660, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -16922,7 +17077,7 @@ } }, { - "id": 653, + "id": 661, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -16942,7 +17097,7 @@ } }, { - "id": 654, + "id": 662, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -16962,7 +17117,7 @@ } }, { - "id": 649, + "id": 657, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -16991,7 +17146,7 @@ } }, { - "id": 651, + "id": 659, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17011,7 +17166,7 @@ } }, { - "id": 646, + "id": 654, "name": "id", "kind": 1024, "kindString": "Property", @@ -17031,7 +17186,7 @@ } }, { - "id": 645, + "id": 653, "name": "login", "kind": 1024, "kindString": "Property", @@ -17051,7 +17206,7 @@ } }, { - "id": 643, + "id": 651, "name": "name", "kind": 1024, "kindString": "Property", @@ -17081,7 +17236,7 @@ } }, { - "id": 647, + "id": 655, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17101,7 +17256,7 @@ } }, { - "id": 657, + "id": 665, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -17121,7 +17276,7 @@ } }, { - "id": 660, + "id": 668, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -17141,7 +17296,7 @@ } }, { - "id": 658, + "id": 666, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -17161,7 +17316,7 @@ } }, { - "id": 662, + "id": 670, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -17181,7 +17336,7 @@ } }, { - "id": 663, + "id": 671, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -17202,7 +17357,7 @@ } }, { - "id": 655, + "id": 663, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -17222,7 +17377,7 @@ } }, { - "id": 656, + "id": 664, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -17242,7 +17397,7 @@ } }, { - "id": 661, + "id": 669, "name": "type", "kind": 1024, "kindString": "Property", @@ -17262,7 +17417,7 @@ } }, { - "id": 650, + "id": 658, "name": "url", "kind": 1024, "kindString": "Property", @@ -17287,27 +17442,27 @@ "title": "Properties", "kind": 1024, "children": [ - 648, - 644, - 659, + 656, 652, - 653, - 654, - 649, - 651, - 646, - 645, - 643, - 647, - 657, + 667, 660, - 658, + 661, 662, - 663, + 657, + 659, + 654, + 653, + 651, 655, - 656, - 661, - 650 + 665, + 668, + 666, + 670, + 671, + 663, + 664, + 669, + 658 ] } ] @@ -17317,7 +17472,7 @@ } }, { - "id": 664, + "id": 672, "name": "version", "kind": 1024, "kindString": "Property", @@ -17343,11 +17498,11 @@ "title": "Properties", "kind": 1024, "children": [ - 666, - 665, - 671, - 641, - 664 + 674, + 673, + 679, + 649, + 672 ] } ] @@ -17358,7 +17513,7 @@ } }, { - "id": 760, + "id": 768, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17379,7 +17534,7 @@ } }, { - "id": 756, + "id": 764, "name": "id", "kind": 1024, "kindString": "Property", @@ -17400,7 +17555,7 @@ } }, { - "id": 757, + "id": 765, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17421,7 +17576,7 @@ } }, { - "id": 780, + "id": 788, "name": "owner", "kind": 1024, "kindString": "Property", @@ -17446,14 +17601,14 @@ { "type": "reflection", "declaration": { - "id": 781, + "id": 789, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 787, + "id": 795, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -17473,7 +17628,7 @@ } }, { - "id": 783, + "id": 791, "name": "email", "kind": 1024, "kindString": "Property", @@ -17503,7 +17658,7 @@ } }, { - "id": 798, + "id": 806, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -17523,7 +17678,7 @@ } }, { - "id": 791, + "id": 799, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -17543,7 +17698,7 @@ } }, { - "id": 792, + "id": 800, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -17563,7 +17718,7 @@ } }, { - "id": 793, + "id": 801, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -17583,7 +17738,7 @@ } }, { - "id": 788, + "id": 796, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -17612,7 +17767,7 @@ } }, { - "id": 790, + "id": 798, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17632,7 +17787,7 @@ } }, { - "id": 785, + "id": 793, "name": "id", "kind": 1024, "kindString": "Property", @@ -17652,7 +17807,7 @@ } }, { - "id": 784, + "id": 792, "name": "login", "kind": 1024, "kindString": "Property", @@ -17672,7 +17827,7 @@ } }, { - "id": 782, + "id": 790, "name": "name", "kind": 1024, "kindString": "Property", @@ -17702,7 +17857,7 @@ } }, { - "id": 786, + "id": 794, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17722,7 +17877,7 @@ } }, { - "id": 796, + "id": 804, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -17742,7 +17897,7 @@ } }, { - "id": 799, + "id": 807, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -17762,7 +17917,7 @@ } }, { - "id": 797, + "id": 805, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -17782,7 +17937,7 @@ } }, { - "id": 801, + "id": 809, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -17802,7 +17957,7 @@ } }, { - "id": 802, + "id": 810, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -17823,7 +17978,7 @@ } }, { - "id": 794, + "id": 802, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -17843,7 +17998,7 @@ } }, { - "id": 795, + "id": 803, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -17863,7 +18018,7 @@ } }, { - "id": 800, + "id": 808, "name": "type", "kind": 1024, "kindString": "Property", @@ -17883,7 +18038,7 @@ } }, { - "id": 789, + "id": 797, "name": "url", "kind": 1024, "kindString": "Property", @@ -17908,27 +18063,27 @@ "title": "Properties", "kind": 1024, "children": [ - 787, - 783, - 798, + 795, 791, - 792, - 793, - 788, - 790, - 785, - 784, - 782, - 786, - 796, + 806, 799, - 797, + 800, 801, - 802, + 796, + 798, + 793, + 792, + 790, 794, - 795, - 800, - 789 + 804, + 807, + 805, + 809, + 810, + 802, + 803, + 808, + 797 ] } ] @@ -17938,7 +18093,7 @@ } }, { - "id": 773, + "id": 781, "name": "public", "kind": 1024, "kindString": "Property", @@ -17959,7 +18114,7 @@ } }, { - "id": 803, + "id": 811, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -17980,7 +18135,7 @@ } }, { - "id": 775, + "id": 783, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18001,7 +18156,7 @@ } }, { - "id": 753, + "id": 761, "name": "url", "kind": 1024, "kindString": "Property", @@ -18022,7 +18177,7 @@ } }, { - "id": 778, + "id": 786, "name": "user", "kind": 1024, "kindString": "Property", @@ -18057,27 +18212,27 @@ "title": "Properties", "kind": 1024, "children": [ - 777, - 779, - 755, - 774, - 776, + 785, + 787, + 763, + 782, + 784, + 769, + 680, + 595, + 762, + 766, + 767, + 647, + 768, + 764, + 765, + 788, + 781, + 811, + 783, 761, - 672, - 587, - 754, - 758, - 759, - 639, - 760, - 756, - 757, - 780, - 773, - 803, - 775, - 753, - 778 + 786 ] } ] @@ -18085,7 +18240,7 @@ } }, { - "id": 804, + "id": 812, "name": "forks", "kind": 1024, "kindString": "Property", @@ -18102,12 +18257,12 @@ ], "type": { "type": "reference", - "id": 2884, + "id": 2889, "name": "ForkManager" } }, { - "id": 807, + "id": 815, "name": "htmlUrl", "kind": 262144, "kindString": "Accessor", @@ -18121,7 +18276,7 @@ ], "getSignature": [ { - "id": 808, + "id": 816, "name": "htmlUrl", "kind": 524288, "kindString": "Get signature", @@ -18143,7 +18298,7 @@ ] }, { - "id": 805, + "id": 813, "name": "url", "kind": 262144, "kindString": "Accessor", @@ -18157,7 +18312,7 @@ ], "getSignature": [ { - "id": 806, + "id": 814, "name": "url", "kind": 524288, "kindString": "Get signature", @@ -18184,24 +18339,24 @@ "title": "Constructors", "kind": 512, "children": [ - 361 + 369 ] }, { "title": "Properties", "kind": 1024, "children": [ - 809, - 585, - 804 + 817, + 593, + 812 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 807, - 805 + 815, + 813 ] } ], @@ -18221,39 +18376,53 @@ ] }, { - "id": 810, + "id": 818, "name": "Issue", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 811, + "id": 819, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 812, + "id": 820, "name": "new Issue", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 813, + "id": 821, "name": "data", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "any" + "type": "reference", + "typeArguments": [ + { + "type": "literal", + "value": "/repos/{owner}/{repo}/issues/{issue_number}" + }, + { + "type": "literal", + "value": "get" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Operation" } }, { - "id": 814, + "id": 822, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -18267,14 +18436,14 @@ ], "type": { "type": "reference", - "id": 810, + "id": 818, "name": "Issue" } } ] }, { - "id": 815, + "id": 823, "name": "client", "kind": 1024, "kindString": "Property", @@ -18282,7 +18451,7 @@ "sources": [ { "fileName": "src/structures/issue.ts", - "line": 4, + "line": 5, "character": 8 } ], @@ -18298,48 +18467,48 @@ "title": "Constructors", "kind": 512, "children": [ - 811 + 819 ] }, { "title": "Properties", "kind": 1024, "children": [ - 815 + 823 ] } ], "sources": [ { "fileName": "src/structures/issue.ts", - "line": 3, + "line": 4, "character": 11 } ] }, { - "id": 2901, + "id": 2906, "name": "IssueManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2902, + "id": 2907, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2903, + "id": 2908, "name": "new IssueManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2904, + "id": 2909, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18347,14 +18516,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2905, + "id": 2910, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2906, + "id": 2911, "name": "client", "kind": 1024, "kindString": "Property", @@ -18373,7 +18542,7 @@ } }, { - "id": 2907, + "id": 2912, "name": "url", "kind": 1024, "kindString": "Property", @@ -18396,8 +18565,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2906, - 2907 + 2911, + 2912 ] } ] @@ -18407,24 +18576,24 @@ ], "type": { "type": "reference", - "id": 2901, + "id": 2906, "name": "IssueManager" }, "overwrites": { "type": "reference", - "id": 2832, + "id": 2837, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2831, + "id": 2836, "name": "Manager.constructor" } }, { - "id": 2914, + "id": 2919, "name": "cache", "kind": 1024, "kindString": "Property", @@ -18461,12 +18630,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 2844, "name": "Manager.cache" } }, { - "id": 2912, + "id": 2917, "name": "client", "kind": 1024, "kindString": "Property", @@ -18485,12 +18654,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2837, + "id": 2842, "name": "Manager.client" } }, { - "id": 2913, + "id": 2918, "name": "url", "kind": 1024, "kindString": "Property", @@ -18510,12 +18679,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2838, + "id": 2843, "name": "Manager.url" } }, { - "id": 2915, + "id": 2920, "name": "add", "kind": 2048, "kindString": "Method", @@ -18529,14 +18698,14 @@ ], "signatures": [ { - "id": 2916, + "id": 2921, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2917, + "id": 2922, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -18556,7 +18725,7 @@ } }, { - "id": 2918, + "id": 2923, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18573,19 +18742,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 2841, + "id": 2846, "name": "Manager.add" } } ], "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 2845, "name": "Manager.add" } }, { - "id": 2908, + "id": 2913, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -18599,7 +18768,7 @@ ], "signatures": [ { - "id": 2909, + "id": 2914, "name": "fetch", "kind": 4096, "kindString": "Call signature", @@ -18609,7 +18778,7 @@ }, "parameters": [ { - "id": 2910, + "id": 2915, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -18623,7 +18792,7 @@ } }, { - "id": 2911, + "id": 2916, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18652,7 +18821,7 @@ ] }, { - "id": 2919, + "id": 2924, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -18666,14 +18835,14 @@ ], "signatures": [ { - "id": 2920, + "id": 2925, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2921, + "id": 2926, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -18699,14 +18868,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 2845, + "id": 2850, "name": "Manager.resolve" } } ], "inheritedFrom": { "type": "reference", - "id": 2844, + "id": 2849, "name": "Manager.resolve" } } @@ -18716,25 +18885,25 @@ "title": "Constructors", "kind": 512, "children": [ - 2902 + 2907 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2914, - 2912, - 2913 + 2919, + 2917, + 2918 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2915, - 2908, - 2919 + 2920, + 2913, + 2924 ] } ], @@ -18748,34 +18917,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2830, + "id": 2835, "name": "Manager" } ] }, { - "id": 2830, + "id": 2835, "name": "Manager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2831, + "id": 2836, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2832, + "id": 2837, "name": "new Manager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2833, + "id": 2838, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18783,14 +18952,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2834, + "id": 2839, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2835, + "id": 2840, "name": "client", "kind": 1024, "kindString": "Property", @@ -18809,7 +18978,7 @@ } }, { - "id": 2836, + "id": 2841, "name": "url", "kind": 1024, "kindString": "Property", @@ -18834,8 +19003,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2835, - 2836 + 2840, + 2841 ] } ] @@ -18845,14 +19014,14 @@ ], "type": { "type": "reference", - "id": 2830, + "id": 2835, "name": "BaseManager" } } ] }, { - "id": 2839, + "id": 2844, "name": "cache", "kind": 1024, "kindString": "Property", @@ -18889,7 +19058,7 @@ } }, { - "id": 2837, + "id": 2842, "name": "client", "kind": 1024, "kindString": "Property", @@ -18908,7 +19077,7 @@ } }, { - "id": 2838, + "id": 2843, "name": "url", "kind": 1024, "kindString": "Property", @@ -18928,7 +19097,7 @@ } }, { - "id": 2840, + "id": 2845, "name": "add", "kind": 2048, "kindString": "Method", @@ -18942,14 +19111,14 @@ ], "signatures": [ { - "id": 2841, + "id": 2846, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2842, + "id": 2847, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -18969,7 +19138,7 @@ } }, { - "id": 2843, + "id": 2848, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18988,7 +19157,7 @@ ] }, { - "id": 2844, + "id": 2849, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -19002,14 +19171,14 @@ ], "signatures": [ { - "id": 2845, + "id": 2850, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2846, + "id": 2851, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -19042,24 +19211,24 @@ "title": "Constructors", "kind": 512, "children": [ - 2831 + 2836 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2839, - 2837, - 2838 + 2844, + 2842, + 2843 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2840, - 2844 + 2845, + 2849 ] } ], @@ -19073,54 +19242,54 @@ "extendedBy": [ { "type": "reference", - "id": 2847, + "id": 2852, "name": "ArtifactsManager" }, { "type": "reference", - "id": 2884, + "id": 2889, "name": "ForkManager" }, { "type": "reference", - "id": 2901, + "id": 2906, "name": "IssueManager" }, { "type": "reference", - "id": 2922, + "id": 2927, "name": "RepoManager" }, { "type": "reference", - "id": 2939, + "id": 2944, "name": "UserManager" } ] }, { - "id": 816, + "id": 824, "name": "Repo", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 817, + "id": 825, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 818, + "id": 826, "name": "new Repo", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 819, + "id": 827, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -19132,7 +19301,7 @@ } }, { - "id": 820, + "id": 828, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19140,14 +19309,14 @@ "type": { "type": "reflection", "declaration": { - "id": 821, + "id": 829, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1176, + "id": 1184, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -19168,7 +19337,7 @@ } }, { - "id": 921, + "id": 929, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -19189,7 +19358,7 @@ } }, { - "id": 1174, + "id": 1182, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -19210,7 +19379,7 @@ } }, { - "id": 1716, + "id": 1724, "name": "anonymous_access_enabled", "kind": 1024, "kindString": "Property", @@ -19234,7 +19403,7 @@ } }, { - "id": 854, + "id": 862, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -19254,7 +19423,7 @@ } }, { - "id": 910, + "id": 918, "name": "archived", "kind": 1024, "kindString": "Property", @@ -19274,7 +19443,7 @@ } }, { - "id": 855, + "id": 863, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -19294,7 +19463,7 @@ } }, { - "id": 856, + "id": 864, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -19314,7 +19483,7 @@ } }, { - "id": 857, + "id": 865, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -19334,7 +19503,7 @@ } }, { - "id": 891, + "id": 899, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -19354,7 +19523,7 @@ } }, { - "id": 1717, + "id": 1725, "name": "code_of_conduct", "kind": 1024, "kindString": "Property", @@ -19372,14 +19541,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1718, + "id": 1726, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1722, + "id": 1730, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -19408,7 +19577,7 @@ } }, { - "id": 1720, + "id": 1728, "name": "key", "kind": 1024, "kindString": "Property", @@ -19428,7 +19597,7 @@ } }, { - "id": 1721, + "id": 1729, "name": "name", "kind": 1024, "kindString": "Property", @@ -19448,7 +19617,7 @@ } }, { - "id": 1719, + "id": 1727, "name": "url", "kind": 1024, "kindString": "Property", @@ -19473,10 +19642,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1722, - 1720, - 1721, - 1719 + 1730, + 1728, + 1729, + 1727 ] } ] @@ -19484,7 +19653,7 @@ } }, { - "id": 858, + "id": 866, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -19504,7 +19673,7 @@ } }, { - "id": 859, + "id": 867, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -19524,7 +19693,7 @@ } }, { - "id": 860, + "id": 868, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -19544,7 +19713,7 @@ } }, { - "id": 861, + "id": 869, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -19564,7 +19733,7 @@ } }, { - "id": 862, + "id": 870, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -19584,7 +19753,7 @@ } }, { - "id": 863, + "id": 871, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -19604,7 +19773,7 @@ } }, { - "id": 914, + "id": 922, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -19624,7 +19793,7 @@ } }, { - "id": 901, + "id": 909, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -19644,7 +19813,7 @@ } }, { - "id": 1175, + "id": 1183, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -19665,7 +19834,7 @@ } }, { - "id": 864, + "id": 872, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -19685,7 +19854,7 @@ } }, { - "id": 851, + "id": 859, "name": "description", "kind": 1024, "kindString": "Property", @@ -19714,7 +19883,7 @@ } }, { - "id": 911, + "id": 919, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -19737,7 +19906,7 @@ } }, { - "id": 865, + "id": 873, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -19757,7 +19926,7 @@ } }, { - "id": 866, + "id": 874, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -19777,7 +19946,7 @@ } }, { - "id": 852, + "id": 860, "name": "fork", "kind": 1024, "kindString": "Property", @@ -19797,7 +19966,7 @@ } }, { - "id": 1712, + "id": 1720, "name": "forks", "kind": 1024, "kindString": "Property", @@ -19817,7 +19986,7 @@ } }, { - "id": 897, + "id": 905, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -19837,7 +20006,7 @@ } }, { - "id": 867, + "id": 875, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -19857,7 +20026,7 @@ } }, { - "id": 825, + "id": 833, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -19877,7 +20046,7 @@ } }, { - "id": 868, + "id": 876, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -19897,7 +20066,7 @@ } }, { - "id": 869, + "id": 877, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -19917,7 +20086,7 @@ } }, { - "id": 870, + "id": 878, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -19937,7 +20106,7 @@ } }, { - "id": 871, + "id": 879, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -19957,7 +20126,7 @@ } }, { - "id": 909, + "id": 917, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -19977,7 +20146,7 @@ } }, { - "id": 905, + "id": 913, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -19997,7 +20166,7 @@ } }, { - "id": 908, + "id": 916, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -20017,7 +20186,7 @@ } }, { - "id": 906, + "id": 914, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -20037,7 +20206,7 @@ } }, { - "id": 907, + "id": 915, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -20057,7 +20226,7 @@ } }, { - "id": 895, + "id": 903, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -20086,7 +20255,7 @@ } }, { - "id": 893, + "id": 901, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -20106,7 +20275,7 @@ } }, { - "id": 850, + "id": 858, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20126,7 +20295,7 @@ } }, { - "id": 822, + "id": 830, "name": "id", "kind": 1024, "kindString": "Property", @@ -20146,7 +20315,7 @@ } }, { - "id": 903, + "id": 911, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -20167,7 +20336,7 @@ } }, { - "id": 872, + "id": 880, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -20187,7 +20356,7 @@ } }, { - "id": 873, + "id": 881, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -20207,7 +20376,7 @@ } }, { - "id": 874, + "id": 882, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -20227,7 +20396,7 @@ } }, { - "id": 875, + "id": 883, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -20247,7 +20416,7 @@ } }, { - "id": 876, + "id": 884, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -20267,7 +20436,7 @@ } }, { - "id": 896, + "id": 904, "name": "language", "kind": 1024, "kindString": "Property", @@ -20296,7 +20465,7 @@ } }, { - "id": 877, + "id": 885, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -20316,7 +20485,7 @@ } }, { - "id": 1179, + "id": 1187, "name": "license", "kind": 1024, "kindString": "Property", @@ -20340,14 +20509,14 @@ { "type": "reflection", "declaration": { - "id": 1180, + "id": 1188, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1186, + "id": 1194, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20368,7 +20537,7 @@ } }, { - "id": 1181, + "id": 1189, "name": "key", "kind": 1024, "kindString": "Property", @@ -20388,7 +20557,7 @@ } }, { - "id": 1182, + "id": 1190, "name": "name", "kind": 1024, "kindString": "Property", @@ -20408,7 +20577,7 @@ } }, { - "id": 1185, + "id": 1193, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20428,7 +20597,7 @@ } }, { - "id": 1184, + "id": 1192, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -20457,7 +20626,7 @@ } }, { - "id": 1183, + "id": 1191, "name": "url", "kind": 1024, "kindString": "Property", @@ -20491,12 +20660,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1186, - 1181, - 1182, - 1185, - 1184, - 1183 + 1194, + 1189, + 1190, + 1193, + 1192, + 1191 ] } ] @@ -20506,7 +20675,7 @@ } }, { - "id": 1713, + "id": 1721, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -20527,7 +20696,7 @@ } }, { - "id": 878, + "id": 886, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -20547,7 +20716,7 @@ } }, { - "id": 879, + "id": 887, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -20567,7 +20736,7 @@ } }, { - "id": 892, + "id": 900, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -20596,7 +20765,7 @@ } }, { - "id": 824, + "id": 832, "name": "name", "kind": 1024, "kindString": "Property", @@ -20616,7 +20785,7 @@ } }, { - "id": 1178, + "id": 1186, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -20636,7 +20805,7 @@ } }, { - "id": 823, + "id": 831, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20656,7 +20825,7 @@ } }, { - "id": 880, + "id": 888, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -20676,7 +20845,7 @@ } }, { - "id": 1714, + "id": 1722, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -20696,7 +20865,7 @@ } }, { - "id": 902, + "id": 910, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -20716,7 +20885,7 @@ } }, { - "id": 1187, + "id": 1195, "name": "organization", "kind": 1024, "kindString": "Property", @@ -20741,14 +20910,14 @@ { "type": "reflection", "declaration": { - "id": 1188, + "id": 1196, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1194, + "id": 1202, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -20768,7 +20937,7 @@ } }, { - "id": 1190, + "id": 1198, "name": "email", "kind": 1024, "kindString": "Property", @@ -20798,7 +20967,7 @@ } }, { - "id": 1205, + "id": 1213, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -20818,7 +20987,7 @@ } }, { - "id": 1198, + "id": 1206, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -20838,7 +21007,7 @@ } }, { - "id": 1199, + "id": 1207, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -20858,7 +21027,7 @@ } }, { - "id": 1200, + "id": 1208, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -20878,7 +21047,7 @@ } }, { - "id": 1195, + "id": 1203, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -20907,7 +21076,7 @@ } }, { - "id": 1197, + "id": 1205, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20927,7 +21096,7 @@ } }, { - "id": 1192, + "id": 1200, "name": "id", "kind": 1024, "kindString": "Property", @@ -20947,7 +21116,7 @@ } }, { - "id": 1191, + "id": 1199, "name": "login", "kind": 1024, "kindString": "Property", @@ -20967,7 +21136,7 @@ } }, { - "id": 1189, + "id": 1197, "name": "name", "kind": 1024, "kindString": "Property", @@ -20997,7 +21166,7 @@ } }, { - "id": 1193, + "id": 1201, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -21017,7 +21186,7 @@ } }, { - "id": 1203, + "id": 1211, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -21037,7 +21206,7 @@ } }, { - "id": 1206, + "id": 1214, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -21057,7 +21226,7 @@ } }, { - "id": 1204, + "id": 1212, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -21077,7 +21246,7 @@ } }, { - "id": 1208, + "id": 1216, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -21097,7 +21266,7 @@ } }, { - "id": 1209, + "id": 1217, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -21118,7 +21287,7 @@ } }, { - "id": 1201, + "id": 1209, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -21138,7 +21307,7 @@ } }, { - "id": 1202, + "id": 1210, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -21158,7 +21327,7 @@ } }, { - "id": 1207, + "id": 1215, "name": "type", "kind": 1024, "kindString": "Property", @@ -21178,7 +21347,7 @@ } }, { - "id": 1196, + "id": 1204, "name": "url", "kind": 1024, "kindString": "Property", @@ -21203,27 +21372,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1194, - 1190, - 1205, + 1202, 1198, - 1199, - 1200, - 1195, - 1197, - 1192, - 1191, - 1189, - 1193, - 1203, + 1213, 1206, - 1204, + 1207, 1208, - 1209, + 1203, + 1205, + 1200, + 1199, + 1197, 1201, - 1202, - 1207, - 1196 + 1211, + 1214, + 1212, + 1216, + 1217, + 1209, + 1210, + 1215, + 1204 ] } ] @@ -21233,7 +21402,7 @@ } }, { - "id": 826, + "id": 834, "name": "owner", "kind": 1024, "kindString": "Property", @@ -21257,14 +21426,14 @@ { "type": "reflection", "declaration": { - "id": 827, + "id": 835, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 833, + "id": 841, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -21284,7 +21453,7 @@ } }, { - "id": 829, + "id": 837, "name": "email", "kind": 1024, "kindString": "Property", @@ -21314,7 +21483,7 @@ } }, { - "id": 844, + "id": 852, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -21334,7 +21503,7 @@ } }, { - "id": 837, + "id": 845, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -21354,7 +21523,7 @@ } }, { - "id": 838, + "id": 846, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -21374,7 +21543,7 @@ } }, { - "id": 839, + "id": 847, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -21394,7 +21563,7 @@ } }, { - "id": 834, + "id": 842, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -21423,7 +21592,7 @@ } }, { - "id": 836, + "id": 844, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -21443,7 +21612,7 @@ } }, { - "id": 831, + "id": 839, "name": "id", "kind": 1024, "kindString": "Property", @@ -21463,7 +21632,7 @@ } }, { - "id": 830, + "id": 838, "name": "login", "kind": 1024, "kindString": "Property", @@ -21483,7 +21652,7 @@ } }, { - "id": 828, + "id": 836, "name": "name", "kind": 1024, "kindString": "Property", @@ -21513,7 +21682,7 @@ } }, { - "id": 832, + "id": 840, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -21533,7 +21702,7 @@ } }, { - "id": 842, + "id": 850, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -21553,7 +21722,7 @@ } }, { - "id": 845, + "id": 853, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -21573,7 +21742,7 @@ } }, { - "id": 843, + "id": 851, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -21593,7 +21762,7 @@ } }, { - "id": 847, + "id": 855, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -21613,7 +21782,7 @@ } }, { - "id": 848, + "id": 856, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -21634,7 +21803,7 @@ } }, { - "id": 840, + "id": 848, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -21654,7 +21823,7 @@ } }, { - "id": 841, + "id": 849, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -21674,7 +21843,7 @@ } }, { - "id": 846, + "id": 854, "name": "type", "kind": 1024, "kindString": "Property", @@ -21694,7 +21863,7 @@ } }, { - "id": 835, + "id": 843, "name": "url", "kind": 1024, "kindString": "Property", @@ -21719,27 +21888,27 @@ "title": "Properties", "kind": 1024, "children": [ - 833, - 829, - 844, + 841, 837, - 838, - 839, - 834, - 836, - 831, - 830, - 828, - 832, - 842, + 852, 845, - 843, + 846, 847, - 848, + 842, + 844, + 839, + 838, + 836, 840, - 841, - 846, - 835 + 850, + 853, + 851, + 855, + 856, + 848, + 849, + 854, + 843 ] } ] @@ -21749,7 +21918,7 @@ } }, { - "id": 1210, + "id": 1218, "name": "parent", "kind": 1024, "kindString": "Property", @@ -21767,14 +21936,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1211, + "id": 1219, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1454, + "id": 1462, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -21798,7 +21967,7 @@ } }, { - "id": 1345, + "id": 1353, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -21822,7 +21991,7 @@ } }, { - "id": 1452, + "id": 1460, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -21846,7 +22015,7 @@ } }, { - "id": 1283, + "id": 1291, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -21866,7 +22035,7 @@ } }, { - "id": 1339, + "id": 1347, "name": "archived", "kind": 1024, "kindString": "Property", @@ -21889,7 +22058,7 @@ } }, { - "id": 1284, + "id": 1292, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -21909,7 +22078,7 @@ } }, { - "id": 1285, + "id": 1293, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -21929,7 +22098,7 @@ } }, { - "id": 1286, + "id": 1294, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -21949,7 +22118,7 @@ } }, { - "id": 1320, + "id": 1328, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -21969,7 +22138,7 @@ } }, { - "id": 1287, + "id": 1295, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -21989,7 +22158,7 @@ } }, { - "id": 1288, + "id": 1296, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -22009,7 +22178,7 @@ } }, { - "id": 1289, + "id": 1297, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -22029,7 +22198,7 @@ } }, { - "id": 1290, + "id": 1298, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -22049,7 +22218,7 @@ } }, { - "id": 1291, + "id": 1299, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -22069,7 +22238,7 @@ } }, { - "id": 1292, + "id": 1300, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -22089,7 +22258,7 @@ } }, { - "id": 1343, + "id": 1351, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -22118,7 +22287,7 @@ } }, { - "id": 1330, + "id": 1338, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -22141,7 +22310,7 @@ } }, { - "id": 1453, + "id": 1461, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -22165,7 +22334,7 @@ } }, { - "id": 1293, + "id": 1301, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -22185,7 +22354,7 @@ } }, { - "id": 1280, + "id": 1288, "name": "description", "kind": 1024, "kindString": "Property", @@ -22214,7 +22383,7 @@ } }, { - "id": 1340, + "id": 1348, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -22237,7 +22406,7 @@ } }, { - "id": 1294, + "id": 1302, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -22257,7 +22426,7 @@ } }, { - "id": 1295, + "id": 1303, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -22277,7 +22446,7 @@ } }, { - "id": 1281, + "id": 1289, "name": "fork", "kind": 1024, "kindString": "Property", @@ -22297,7 +22466,7 @@ } }, { - "id": 1247, + "id": 1255, "name": "forks", "kind": 1024, "kindString": "Property", @@ -22317,7 +22486,7 @@ } }, { - "id": 1326, + "id": 1334, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -22337,7 +22506,7 @@ } }, { - "id": 1296, + "id": 1304, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -22357,7 +22526,7 @@ } }, { - "id": 1215, + "id": 1223, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -22377,7 +22546,7 @@ } }, { - "id": 1297, + "id": 1305, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -22397,7 +22566,7 @@ } }, { - "id": 1298, + "id": 1306, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -22417,7 +22586,7 @@ } }, { - "id": 1299, + "id": 1307, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -22437,7 +22606,7 @@ } }, { - "id": 1300, + "id": 1308, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -22457,7 +22626,7 @@ } }, { - "id": 1338, + "id": 1346, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -22480,7 +22649,7 @@ } }, { - "id": 1334, + "id": 1342, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -22503,7 +22672,7 @@ } }, { - "id": 1337, + "id": 1345, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -22523,7 +22692,7 @@ } }, { - "id": 1335, + "id": 1343, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -22546,7 +22715,7 @@ } }, { - "id": 1336, + "id": 1344, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -22569,7 +22738,7 @@ } }, { - "id": 1324, + "id": 1332, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -22598,7 +22767,7 @@ } }, { - "id": 1322, + "id": 1330, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -22618,7 +22787,7 @@ } }, { - "id": 1279, + "id": 1287, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22638,7 +22807,7 @@ } }, { - "id": 1212, + "id": 1220, "name": "id", "kind": 1024, "kindString": "Property", @@ -22661,7 +22830,7 @@ } }, { - "id": 1332, + "id": 1340, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -22685,7 +22854,7 @@ } }, { - "id": 1301, + "id": 1309, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -22705,7 +22874,7 @@ } }, { - "id": 1302, + "id": 1310, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -22725,7 +22894,7 @@ } }, { - "id": 1303, + "id": 1311, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -22745,7 +22914,7 @@ } }, { - "id": 1304, + "id": 1312, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -22765,7 +22934,7 @@ } }, { - "id": 1305, + "id": 1313, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -22785,7 +22954,7 @@ } }, { - "id": 1325, + "id": 1333, "name": "language", "kind": 1024, "kindString": "Property", @@ -22814,7 +22983,7 @@ } }, { - "id": 1306, + "id": 1314, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -22834,7 +23003,7 @@ } }, { - "id": 1216, + "id": 1224, "name": "license", "kind": 1024, "kindString": "Property", @@ -22858,14 +23027,14 @@ { "type": "reflection", "declaration": { - "id": 1217, + "id": 1225, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1223, + "id": 1231, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22886,7 +23055,7 @@ } }, { - "id": 1218, + "id": 1226, "name": "key", "kind": 1024, "kindString": "Property", @@ -22906,7 +23075,7 @@ } }, { - "id": 1219, + "id": 1227, "name": "name", "kind": 1024, "kindString": "Property", @@ -22926,7 +23095,7 @@ } }, { - "id": 1222, + "id": 1230, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -22946,7 +23115,7 @@ } }, { - "id": 1221, + "id": 1229, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -22975,7 +23144,7 @@ } }, { - "id": 1220, + "id": 1228, "name": "url", "kind": 1024, "kindString": "Property", @@ -23009,12 +23178,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1223, - 1218, - 1219, - 1222, - 1221, - 1220 + 1231, + 1226, + 1227, + 1230, + 1229, + 1228 ] } ] @@ -23024,7 +23193,7 @@ } }, { - "id": 1459, + "id": 1467, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -23045,7 +23214,7 @@ } }, { - "id": 1307, + "id": 1315, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -23065,7 +23234,7 @@ } }, { - "id": 1308, + "id": 1316, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -23085,7 +23254,7 @@ } }, { - "id": 1321, + "id": 1329, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -23114,7 +23283,7 @@ } }, { - "id": 1214, + "id": 1222, "name": "name", "kind": 1024, "kindString": "Property", @@ -23137,7 +23306,7 @@ } }, { - "id": 1456, + "id": 1464, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -23158,7 +23327,7 @@ } }, { - "id": 1213, + "id": 1221, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23178,7 +23347,7 @@ } }, { - "id": 1309, + "id": 1317, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -23198,7 +23367,7 @@ } }, { - "id": 1457, + "id": 1465, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -23218,7 +23387,7 @@ } }, { - "id": 1331, + "id": 1339, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -23238,7 +23407,7 @@ } }, { - "id": 1224, + "id": 1232, "name": "organization", "kind": 1024, "kindString": "Property", @@ -23263,14 +23432,14 @@ { "type": "reflection", "declaration": { - "id": 1225, + "id": 1233, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1231, + "id": 1239, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -23290,7 +23459,7 @@ } }, { - "id": 1227, + "id": 1235, "name": "email", "kind": 1024, "kindString": "Property", @@ -23320,7 +23489,7 @@ } }, { - "id": 1242, + "id": 1250, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -23340,7 +23509,7 @@ } }, { - "id": 1235, + "id": 1243, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -23360,7 +23529,7 @@ } }, { - "id": 1236, + "id": 1244, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -23380,7 +23549,7 @@ } }, { - "id": 1237, + "id": 1245, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -23400,7 +23569,7 @@ } }, { - "id": 1232, + "id": 1240, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -23429,7 +23598,7 @@ } }, { - "id": 1234, + "id": 1242, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -23449,7 +23618,7 @@ } }, { - "id": 1229, + "id": 1237, "name": "id", "kind": 1024, "kindString": "Property", @@ -23469,7 +23638,7 @@ } }, { - "id": 1228, + "id": 1236, "name": "login", "kind": 1024, "kindString": "Property", @@ -23489,7 +23658,7 @@ } }, { - "id": 1226, + "id": 1234, "name": "name", "kind": 1024, "kindString": "Property", @@ -23519,7 +23688,7 @@ } }, { - "id": 1230, + "id": 1238, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23539,7 +23708,7 @@ } }, { - "id": 1240, + "id": 1248, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -23559,7 +23728,7 @@ } }, { - "id": 1243, + "id": 1251, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -23579,7 +23748,7 @@ } }, { - "id": 1241, + "id": 1249, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -23599,7 +23768,7 @@ } }, { - "id": 1245, + "id": 1253, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -23619,7 +23788,7 @@ } }, { - "id": 1246, + "id": 1254, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -23640,7 +23809,7 @@ } }, { - "id": 1238, + "id": 1246, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -23660,7 +23829,7 @@ } }, { - "id": 1239, + "id": 1247, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -23680,7 +23849,7 @@ } }, { - "id": 1244, + "id": 1252, "name": "type", "kind": 1024, "kindString": "Property", @@ -23700,7 +23869,7 @@ } }, { - "id": 1233, + "id": 1241, "name": "url", "kind": 1024, "kindString": "Property", @@ -23725,27 +23894,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1231, - 1227, - 1242, + 1239, 1235, - 1236, - 1237, - 1232, - 1234, - 1229, - 1228, - 1226, - 1230, - 1240, + 1250, 1243, - 1241, + 1244, 1245, - 1246, + 1240, + 1242, + 1237, + 1236, + 1234, 1238, - 1239, - 1244, - 1233 + 1248, + 1251, + 1249, + 1253, + 1254, + 1246, + 1247, + 1252, + 1241 ] } ] @@ -23755,7 +23924,7 @@ } }, { - "id": 1255, + "id": 1263, "name": "owner", "kind": 1024, "kindString": "Property", @@ -23779,14 +23948,14 @@ { "type": "reflection", "declaration": { - "id": 1256, + "id": 1264, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1262, + "id": 1270, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -23806,7 +23975,7 @@ } }, { - "id": 1258, + "id": 1266, "name": "email", "kind": 1024, "kindString": "Property", @@ -23836,7 +24005,7 @@ } }, { - "id": 1273, + "id": 1281, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -23856,7 +24025,7 @@ } }, { - "id": 1266, + "id": 1274, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -23876,7 +24045,7 @@ } }, { - "id": 1267, + "id": 1275, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -23896,7 +24065,7 @@ } }, { - "id": 1268, + "id": 1276, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -23916,7 +24085,7 @@ } }, { - "id": 1263, + "id": 1271, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -23945,7 +24114,7 @@ } }, { - "id": 1265, + "id": 1273, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -23965,7 +24134,7 @@ } }, { - "id": 1260, + "id": 1268, "name": "id", "kind": 1024, "kindString": "Property", @@ -23985,7 +24154,7 @@ } }, { - "id": 1259, + "id": 1267, "name": "login", "kind": 1024, "kindString": "Property", @@ -24005,7 +24174,7 @@ } }, { - "id": 1257, + "id": 1265, "name": "name", "kind": 1024, "kindString": "Property", @@ -24035,7 +24204,7 @@ } }, { - "id": 1261, + "id": 1269, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -24055,7 +24224,7 @@ } }, { - "id": 1271, + "id": 1279, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -24075,7 +24244,7 @@ } }, { - "id": 1274, + "id": 1282, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -24095,7 +24264,7 @@ } }, { - "id": 1272, + "id": 1280, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -24115,7 +24284,7 @@ } }, { - "id": 1276, + "id": 1284, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -24135,7 +24304,7 @@ } }, { - "id": 1277, + "id": 1285, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -24156,7 +24325,7 @@ } }, { - "id": 1269, + "id": 1277, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -24176,7 +24345,7 @@ } }, { - "id": 1270, + "id": 1278, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -24196,7 +24365,7 @@ } }, { - "id": 1275, + "id": 1283, "name": "type", "kind": 1024, "kindString": "Property", @@ -24216,7 +24385,7 @@ } }, { - "id": 1264, + "id": 1272, "name": "url", "kind": 1024, "kindString": "Property", @@ -24241,27 +24410,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1262, - 1258, - 1273, + 1270, 1266, - 1267, - 1268, - 1263, - 1265, - 1260, - 1259, - 1257, - 1261, - 1271, + 1281, 1274, - 1272, + 1275, 1276, - 1277, + 1271, + 1273, + 1268, + 1267, + 1265, 1269, - 1270, - 1275, - 1264 + 1279, + 1282, + 1280, + 1284, + 1285, + 1277, + 1278, + 1283, + 1272 ] } ] @@ -24271,7 +24440,7 @@ } }, { - "id": 1248, + "id": 1256, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -24289,14 +24458,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1249, + "id": 1257, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1250, + "id": 1258, "name": "admin", "kind": 1024, "kindString": "Property", @@ -24316,7 +24485,7 @@ } }, { - "id": 1254, + "id": 1262, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -24337,7 +24506,7 @@ } }, { - "id": 1251, + "id": 1259, "name": "pull", "kind": 1024, "kindString": "Property", @@ -24357,7 +24526,7 @@ } }, { - "id": 1253, + "id": 1261, "name": "push", "kind": 1024, "kindString": "Property", @@ -24377,7 +24546,7 @@ } }, { - "id": 1252, + "id": 1260, "name": "triage", "kind": 1024, "kindString": "Property", @@ -24403,11 +24572,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1250, - 1254, - 1251, - 1253, - 1252 + 1258, + 1262, + 1259, + 1261, + 1260 ] } ] @@ -24415,7 +24584,7 @@ } }, { - "id": 1278, + "id": 1286, "name": "private", "kind": 1024, "kindString": "Property", @@ -24438,7 +24607,7 @@ } }, { - "id": 1310, + "id": 1318, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -24458,7 +24627,7 @@ } }, { - "id": 1342, + "id": 1350, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -24487,7 +24656,7 @@ } }, { - "id": 1311, + "id": 1319, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -24507,7 +24676,7 @@ } }, { - "id": 1329, + "id": 1337, "name": "size", "kind": 1024, "kindString": "Property", @@ -24527,7 +24696,7 @@ } }, { - "id": 1312, + "id": 1320, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -24547,7 +24716,7 @@ } }, { - "id": 1327, + "id": 1335, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -24567,7 +24736,7 @@ } }, { - "id": 1313, + "id": 1321, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -24587,7 +24756,7 @@ } }, { - "id": 1460, + "id": 1468, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -24608,7 +24777,7 @@ } }, { - "id": 1314, + "id": 1322, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -24628,7 +24797,7 @@ } }, { - "id": 1455, + "id": 1463, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -24649,7 +24818,7 @@ } }, { - "id": 1315, + "id": 1323, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -24669,7 +24838,7 @@ } }, { - "id": 1316, + "id": 1324, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -24689,7 +24858,7 @@ } }, { - "id": 1323, + "id": 1331, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -24709,7 +24878,7 @@ } }, { - "id": 1317, + "id": 1325, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -24729,7 +24898,7 @@ } }, { - "id": 1318, + "id": 1326, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -24749,7 +24918,7 @@ } }, { - "id": 1451, + "id": 1459, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -24770,7 +24939,7 @@ } }, { - "id": 1346, + "id": 1354, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -24795,14 +24964,14 @@ { "type": "reflection", "declaration": { - "id": 1347, + "id": 1355, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1448, + "id": 1456, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -24823,7 +24992,7 @@ } }, { - "id": 1444, + "id": 1452, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -24844,7 +25013,7 @@ } }, { - "id": 1446, + "id": 1454, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -24865,7 +25034,7 @@ } }, { - "id": 1377, + "id": 1385, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -24886,7 +25055,7 @@ } }, { - "id": 1433, + "id": 1441, "name": "archived", "kind": 1024, "kindString": "Property", @@ -24907,7 +25076,7 @@ } }, { - "id": 1378, + "id": 1386, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -24928,7 +25097,7 @@ } }, { - "id": 1379, + "id": 1387, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -24949,7 +25118,7 @@ } }, { - "id": 1380, + "id": 1388, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -24970,7 +25139,7 @@ } }, { - "id": 1414, + "id": 1422, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -24991,7 +25160,7 @@ } }, { - "id": 1381, + "id": 1389, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -25012,7 +25181,7 @@ } }, { - "id": 1382, + "id": 1390, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -25033,7 +25202,7 @@ } }, { - "id": 1383, + "id": 1391, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -25054,7 +25223,7 @@ } }, { - "id": 1384, + "id": 1392, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -25075,7 +25244,7 @@ } }, { - "id": 1385, + "id": 1393, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -25096,7 +25265,7 @@ } }, { - "id": 1386, + "id": 1394, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -25117,7 +25286,7 @@ } }, { - "id": 1437, + "id": 1445, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -25138,7 +25307,7 @@ } }, { - "id": 1424, + "id": 1432, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -25159,7 +25328,7 @@ } }, { - "id": 1447, + "id": 1455, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -25180,7 +25349,7 @@ } }, { - "id": 1387, + "id": 1395, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -25201,7 +25370,7 @@ } }, { - "id": 1374, + "id": 1382, "name": "description", "kind": 1024, "kindString": "Property", @@ -25222,7 +25391,7 @@ } }, { - "id": 1434, + "id": 1442, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -25243,7 +25412,7 @@ } }, { - "id": 1388, + "id": 1396, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -25264,7 +25433,7 @@ } }, { - "id": 1389, + "id": 1397, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -25285,7 +25454,7 @@ } }, { - "id": 1375, + "id": 1383, "name": "fork", "kind": 1024, "kindString": "Property", @@ -25306,7 +25475,7 @@ } }, { - "id": 1420, + "id": 1428, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -25327,7 +25496,7 @@ } }, { - "id": 1390, + "id": 1398, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -25348,7 +25517,7 @@ } }, { - "id": 1351, + "id": 1359, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -25369,7 +25538,7 @@ } }, { - "id": 1391, + "id": 1399, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -25390,7 +25559,7 @@ } }, { - "id": 1392, + "id": 1400, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -25411,7 +25580,7 @@ } }, { - "id": 1393, + "id": 1401, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -25432,7 +25601,7 @@ } }, { - "id": 1394, + "id": 1402, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -25453,7 +25622,7 @@ } }, { - "id": 1432, + "id": 1440, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -25474,7 +25643,7 @@ } }, { - "id": 1428, + "id": 1436, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -25495,7 +25664,7 @@ } }, { - "id": 1431, + "id": 1439, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -25516,7 +25685,7 @@ } }, { - "id": 1429, + "id": 1437, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -25537,7 +25706,7 @@ } }, { - "id": 1430, + "id": 1438, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -25558,7 +25727,7 @@ } }, { - "id": 1418, + "id": 1426, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -25579,7 +25748,7 @@ } }, { - "id": 1416, + "id": 1424, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -25600,7 +25769,7 @@ } }, { - "id": 1373, + "id": 1381, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -25621,7 +25790,7 @@ } }, { - "id": 1348, + "id": 1356, "name": "id", "kind": 1024, "kindString": "Property", @@ -25642,7 +25811,7 @@ } }, { - "id": 1426, + "id": 1434, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -25663,7 +25832,7 @@ } }, { - "id": 1395, + "id": 1403, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -25684,7 +25853,7 @@ } }, { - "id": 1396, + "id": 1404, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -25705,7 +25874,7 @@ } }, { - "id": 1397, + "id": 1405, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -25726,7 +25895,7 @@ } }, { - "id": 1398, + "id": 1406, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -25747,7 +25916,7 @@ } }, { - "id": 1399, + "id": 1407, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -25768,7 +25937,7 @@ } }, { - "id": 1419, + "id": 1427, "name": "language", "kind": 1024, "kindString": "Property", @@ -25789,7 +25958,7 @@ } }, { - "id": 1400, + "id": 1408, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -25810,7 +25979,7 @@ } }, { - "id": 1401, + "id": 1409, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -25831,7 +26000,7 @@ } }, { - "id": 1402, + "id": 1410, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -25852,7 +26021,7 @@ } }, { - "id": 1415, + "id": 1423, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -25873,7 +26042,7 @@ } }, { - "id": 1350, + "id": 1358, "name": "name", "kind": 1024, "kindString": "Property", @@ -25894,7 +26063,7 @@ } }, { - "id": 1450, + "id": 1458, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -25915,7 +26084,7 @@ } }, { - "id": 1349, + "id": 1357, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -25936,7 +26105,7 @@ } }, { - "id": 1403, + "id": 1411, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -25957,7 +26126,7 @@ } }, { - "id": 1425, + "id": 1433, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -25978,7 +26147,7 @@ } }, { - "id": 1352, + "id": 1360, "name": "owner", "kind": 1024, "kindString": "Property", @@ -25996,14 +26165,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1353, + "id": 1361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1357, + "id": 1365, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -26024,7 +26193,7 @@ } }, { - "id": 1368, + "id": 1376, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -26045,7 +26214,7 @@ } }, { - "id": 1361, + "id": 1369, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -26066,7 +26235,7 @@ } }, { - "id": 1362, + "id": 1370, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -26087,7 +26256,7 @@ } }, { - "id": 1363, + "id": 1371, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -26108,7 +26277,7 @@ } }, { - "id": 1358, + "id": 1366, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -26129,7 +26298,7 @@ } }, { - "id": 1360, + "id": 1368, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -26150,7 +26319,7 @@ } }, { - "id": 1355, + "id": 1363, "name": "id", "kind": 1024, "kindString": "Property", @@ -26171,7 +26340,7 @@ } }, { - "id": 1354, + "id": 1362, "name": "login", "kind": 1024, "kindString": "Property", @@ -26192,7 +26361,7 @@ } }, { - "id": 1356, + "id": 1364, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -26213,7 +26382,7 @@ } }, { - "id": 1366, + "id": 1374, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -26234,7 +26403,7 @@ } }, { - "id": 1369, + "id": 1377, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -26255,7 +26424,7 @@ } }, { - "id": 1367, + "id": 1375, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -26276,7 +26445,7 @@ } }, { - "id": 1371, + "id": 1379, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -26297,7 +26466,7 @@ } }, { - "id": 1364, + "id": 1372, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -26318,7 +26487,7 @@ } }, { - "id": 1365, + "id": 1373, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -26339,7 +26508,7 @@ } }, { - "id": 1370, + "id": 1378, "name": "type", "kind": 1024, "kindString": "Property", @@ -26360,7 +26529,7 @@ } }, { - "id": 1359, + "id": 1367, "name": "url", "kind": 1024, "kindString": "Property", @@ -26386,24 +26555,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1357, - 1368, - 1361, - 1362, - 1363, - 1358, - 1360, - 1355, - 1354, - 1356, - 1366, + 1365, + 1376, 1369, - 1367, + 1370, 1371, + 1366, + 1368, + 1363, + 1362, 1364, - 1365, - 1370, - 1359 + 1374, + 1377, + 1375, + 1379, + 1372, + 1373, + 1378, + 1367 ] } ] @@ -26411,7 +26580,7 @@ } }, { - "id": 1439, + "id": 1447, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -26429,14 +26598,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1440, + "id": 1448, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1441, + "id": 1449, "name": "admin", "kind": 1024, "kindString": "Property", @@ -26457,7 +26626,7 @@ } }, { - "id": 1443, + "id": 1451, "name": "pull", "kind": 1024, "kindString": "Property", @@ -26478,7 +26647,7 @@ } }, { - "id": 1442, + "id": 1450, "name": "push", "kind": 1024, "kindString": "Property", @@ -26504,9 +26673,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1441, - 1443, - 1442 + 1449, + 1451, + 1450 ] } ] @@ -26514,7 +26683,7 @@ } }, { - "id": 1372, + "id": 1380, "name": "private", "kind": 1024, "kindString": "Property", @@ -26535,7 +26704,7 @@ } }, { - "id": 1404, + "id": 1412, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -26556,7 +26725,7 @@ } }, { - "id": 1436, + "id": 1444, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -26577,7 +26746,7 @@ } }, { - "id": 1405, + "id": 1413, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -26598,7 +26767,7 @@ } }, { - "id": 1423, + "id": 1431, "name": "size", "kind": 1024, "kindString": "Property", @@ -26619,7 +26788,7 @@ } }, { - "id": 1406, + "id": 1414, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -26640,7 +26809,7 @@ } }, { - "id": 1421, + "id": 1429, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -26661,7 +26830,7 @@ } }, { - "id": 1407, + "id": 1415, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -26682,7 +26851,7 @@ } }, { - "id": 1408, + "id": 1416, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -26703,7 +26872,7 @@ } }, { - "id": 1449, + "id": 1457, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -26724,7 +26893,7 @@ } }, { - "id": 1409, + "id": 1417, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -26745,7 +26914,7 @@ } }, { - "id": 1410, + "id": 1418, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -26766,7 +26935,7 @@ } }, { - "id": 1417, + "id": 1425, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -26787,7 +26956,7 @@ } }, { - "id": 1411, + "id": 1419, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -26808,7 +26977,7 @@ } }, { - "id": 1412, + "id": 1420, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -26829,7 +26998,7 @@ } }, { - "id": 1445, + "id": 1453, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -26850,7 +27019,7 @@ } }, { - "id": 1427, + "id": 1435, "name": "topics", "kind": 1024, "kindString": "Property", @@ -26874,7 +27043,7 @@ } }, { - "id": 1413, + "id": 1421, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -26895,7 +27064,7 @@ } }, { - "id": 1438, + "id": 1446, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -26916,7 +27085,7 @@ } }, { - "id": 1376, + "id": 1384, "name": "url", "kind": 1024, "kindString": "Property", @@ -26937,7 +27106,7 @@ } }, { - "id": 1435, + "id": 1443, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -26958,7 +27127,7 @@ } }, { - "id": 1422, + "id": 1430, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -26984,86 +27153,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1448, - 1444, - 1446, - 1377, - 1433, - 1378, - 1379, - 1380, - 1414, - 1381, - 1382, - 1383, - 1384, + 1456, + 1452, + 1454, 1385, + 1441, 1386, - 1437, - 1424, - 1447, 1387, - 1374, - 1434, 1388, + 1422, 1389, - 1375, - 1420, 1390, - 1351, 1391, 1392, 1393, 1394, + 1445, 1432, - 1428, - 1431, - 1429, - 1430, - 1418, - 1416, - 1373, - 1348, - 1426, + 1455, 1395, + 1382, + 1442, 1396, 1397, + 1383, + 1428, 1398, + 1359, 1399, - 1419, 1400, 1401, 1402, - 1415, - 1350, - 1450, - 1349, - 1403, - 1425, - 1352, + 1440, + 1436, 1439, - 1372, + 1437, + 1438, + 1426, + 1424, + 1381, + 1356, + 1434, + 1403, 1404, - 1436, 1405, - 1423, 1406, - 1421, 1407, + 1427, 1408, - 1449, 1409, 1410, - 1417, + 1423, + 1358, + 1458, + 1357, 1411, + 1433, + 1360, + 1447, + 1380, 1412, - 1445, - 1427, + 1444, 1413, - 1438, - 1376, + 1431, + 1414, + 1429, + 1415, + 1416, + 1457, + 1417, + 1418, + 1425, + 1419, + 1420, + 1453, 1435, - 1422 + 1421, + 1446, + 1384, + 1443, + 1430 ] } ] @@ -27073,7 +27242,7 @@ } }, { - "id": 1333, + "id": 1341, "name": "topics", "kind": 1024, "kindString": "Property", @@ -27097,7 +27266,7 @@ } }, { - "id": 1319, + "id": 1327, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -27117,7 +27286,7 @@ } }, { - "id": 1344, + "id": 1352, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -27146,7 +27315,7 @@ } }, { - "id": 1282, + "id": 1290, "name": "url", "kind": 1024, "kindString": "Property", @@ -27166,7 +27335,7 @@ } }, { - "id": 1341, + "id": 1349, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -27190,7 +27359,7 @@ } }, { - "id": 1458, + "id": 1466, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -27210,7 +27379,7 @@ } }, { - "id": 1328, + "id": 1336, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -27235,94 +27404,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1454, - 1345, - 1452, - 1283, - 1339, - 1284, - 1285, - 1286, - 1320, - 1287, - 1288, - 1289, - 1290, + 1462, + 1353, + 1460, 1291, + 1347, 1292, - 1343, - 1330, - 1453, 1293, - 1280, - 1340, 1294, + 1328, 1295, - 1281, - 1247, - 1326, 1296, - 1215, 1297, 1298, 1299, 1300, + 1351, 1338, - 1334, - 1337, - 1335, - 1336, - 1324, - 1322, - 1279, - 1212, - 1332, + 1461, 1301, + 1288, + 1348, 1302, 1303, + 1289, + 1255, + 1334, 1304, + 1223, 1305, - 1325, 1306, - 1216, - 1459, 1307, 1308, - 1321, - 1214, - 1456, - 1213, + 1346, + 1342, + 1345, + 1343, + 1344, + 1332, + 1330, + 1287, + 1220, + 1340, 1309, - 1457, - 1331, - 1224, - 1255, - 1248, - 1278, 1310, - 1342, 1311, - 1329, 1312, - 1327, 1313, - 1460, + 1333, 1314, - 1455, + 1224, + 1467, 1315, 1316, - 1323, + 1329, + 1222, + 1464, + 1221, 1317, + 1465, + 1339, + 1232, + 1263, + 1256, + 1286, 1318, - 1451, - 1346, - 1333, + 1350, 1319, - 1344, - 1282, + 1337, + 1320, + 1335, + 1321, + 1468, + 1322, + 1463, + 1323, + 1324, + 1331, + 1325, + 1326, + 1459, + 1354, 1341, - 1458, - 1328 + 1327, + 1352, + 1290, + 1349, + 1466, + 1336 ] } ] @@ -27330,7 +27499,7 @@ } }, { - "id": 916, + "id": 924, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -27348,14 +27517,14 @@ "type": { "type": "reflection", "declaration": { - "id": 917, + "id": 925, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 918, + "id": 926, "name": "admin", "kind": 1024, "kindString": "Property", @@ -27375,7 +27544,7 @@ } }, { - "id": 919, + "id": 927, "name": "pull", "kind": 1024, "kindString": "Property", @@ -27395,7 +27564,7 @@ } }, { - "id": 920, + "id": 928, "name": "push", "kind": 1024, "kindString": "Property", @@ -27420,9 +27589,9 @@ "title": "Properties", "kind": 1024, "children": [ - 918, - 919, - 920 + 926, + 927, + 928 ] } ] @@ -27430,7 +27599,7 @@ } }, { - "id": 849, + "id": 857, "name": "private", "kind": 1024, "kindString": "Property", @@ -27450,7 +27619,7 @@ } }, { - "id": 881, + "id": 889, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -27470,7 +27639,7 @@ } }, { - "id": 913, + "id": 921, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -27490,7 +27659,7 @@ } }, { - "id": 882, + "id": 890, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -27510,7 +27679,7 @@ } }, { - "id": 1723, + "id": 1731, "name": "security_and_analysis", "kind": 1024, "kindString": "Property", @@ -27535,14 +27704,14 @@ { "type": "reflection", "declaration": { - "id": 1724, + "id": 1732, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1725, + "id": 1733, "name": "advanced_security", "kind": 1024, "kindString": "Property", @@ -27560,14 +27729,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1734, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1727, + "id": 1735, "name": "status", "kind": 1024, "kindString": "Property", @@ -27602,7 +27771,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1727 + 1735 ] } ] @@ -27610,7 +27779,7 @@ } }, { - "id": 1728, + "id": 1736, "name": "secret_scanning", "kind": 1024, "kindString": "Property", @@ -27628,14 +27797,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1729, + "id": 1737, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1730, + "id": 1738, "name": "status", "kind": 1024, "kindString": "Property", @@ -27670,7 +27839,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1730 + 1738 ] } ] @@ -27683,8 +27852,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1725, - 1728 + 1733, + 1736 ] } ] @@ -27694,7 +27863,7 @@ } }, { - "id": 900, + "id": 908, "name": "size", "kind": 1024, "kindString": "Property", @@ -27714,7 +27883,7 @@ } }, { - "id": 1461, + "id": 1469, "name": "source", "kind": 1024, "kindString": "Property", @@ -27732,14 +27901,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1462, + "id": 1470, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1705, + "id": 1713, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -27763,7 +27932,7 @@ } }, { - "id": 1596, + "id": 1604, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -27787,7 +27956,7 @@ } }, { - "id": 1703, + "id": 1711, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -27811,7 +27980,7 @@ } }, { - "id": 1534, + "id": 1542, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -27831,7 +28000,7 @@ } }, { - "id": 1590, + "id": 1598, "name": "archived", "kind": 1024, "kindString": "Property", @@ -27854,7 +28023,7 @@ } }, { - "id": 1535, + "id": 1543, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -27874,7 +28043,7 @@ } }, { - "id": 1536, + "id": 1544, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -27894,7 +28063,7 @@ } }, { - "id": 1537, + "id": 1545, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -27914,7 +28083,7 @@ } }, { - "id": 1571, + "id": 1579, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -27934,7 +28103,7 @@ } }, { - "id": 1538, + "id": 1546, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -27954,7 +28123,7 @@ } }, { - "id": 1539, + "id": 1547, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -27974,7 +28143,7 @@ } }, { - "id": 1540, + "id": 1548, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -27994,7 +28163,7 @@ } }, { - "id": 1541, + "id": 1549, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -28014,7 +28183,7 @@ } }, { - "id": 1542, + "id": 1550, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -28034,7 +28203,7 @@ } }, { - "id": 1543, + "id": 1551, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -28054,7 +28223,7 @@ } }, { - "id": 1594, + "id": 1602, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -28083,7 +28252,7 @@ } }, { - "id": 1581, + "id": 1589, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -28106,7 +28275,7 @@ } }, { - "id": 1704, + "id": 1712, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -28130,7 +28299,7 @@ } }, { - "id": 1544, + "id": 1552, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -28150,7 +28319,7 @@ } }, { - "id": 1531, + "id": 1539, "name": "description", "kind": 1024, "kindString": "Property", @@ -28179,7 +28348,7 @@ } }, { - "id": 1591, + "id": 1599, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -28202,7 +28371,7 @@ } }, { - "id": 1545, + "id": 1553, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -28222,7 +28391,7 @@ } }, { - "id": 1546, + "id": 1554, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -28242,7 +28411,7 @@ } }, { - "id": 1532, + "id": 1540, "name": "fork", "kind": 1024, "kindString": "Property", @@ -28262,7 +28431,7 @@ } }, { - "id": 1498, + "id": 1506, "name": "forks", "kind": 1024, "kindString": "Property", @@ -28282,7 +28451,7 @@ } }, { - "id": 1577, + "id": 1585, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -28302,7 +28471,7 @@ } }, { - "id": 1547, + "id": 1555, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -28322,7 +28491,7 @@ } }, { - "id": 1466, + "id": 1474, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -28342,7 +28511,7 @@ } }, { - "id": 1548, + "id": 1556, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -28362,7 +28531,7 @@ } }, { - "id": 1549, + "id": 1557, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -28382,7 +28551,7 @@ } }, { - "id": 1550, + "id": 1558, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -28402,7 +28571,7 @@ } }, { - "id": 1551, + "id": 1559, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -28422,7 +28591,7 @@ } }, { - "id": 1589, + "id": 1597, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -28445,7 +28614,7 @@ } }, { - "id": 1585, + "id": 1593, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -28468,7 +28637,7 @@ } }, { - "id": 1588, + "id": 1596, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -28488,7 +28657,7 @@ } }, { - "id": 1586, + "id": 1594, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -28511,7 +28680,7 @@ } }, { - "id": 1587, + "id": 1595, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -28534,7 +28703,7 @@ } }, { - "id": 1575, + "id": 1583, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -28563,7 +28732,7 @@ } }, { - "id": 1573, + "id": 1581, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -28583,7 +28752,7 @@ } }, { - "id": 1530, + "id": 1538, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28603,7 +28772,7 @@ } }, { - "id": 1463, + "id": 1471, "name": "id", "kind": 1024, "kindString": "Property", @@ -28626,7 +28795,7 @@ } }, { - "id": 1583, + "id": 1591, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -28650,7 +28819,7 @@ } }, { - "id": 1552, + "id": 1560, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -28670,7 +28839,7 @@ } }, { - "id": 1553, + "id": 1561, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -28690,7 +28859,7 @@ } }, { - "id": 1554, + "id": 1562, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -28710,7 +28879,7 @@ } }, { - "id": 1555, + "id": 1563, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -28730,7 +28899,7 @@ } }, { - "id": 1556, + "id": 1564, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -28750,7 +28919,7 @@ } }, { - "id": 1576, + "id": 1584, "name": "language", "kind": 1024, "kindString": "Property", @@ -28779,7 +28948,7 @@ } }, { - "id": 1557, + "id": 1565, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -28799,7 +28968,7 @@ } }, { - "id": 1467, + "id": 1475, "name": "license", "kind": 1024, "kindString": "Property", @@ -28823,14 +28992,14 @@ { "type": "reflection", "declaration": { - "id": 1468, + "id": 1476, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1474, + "id": 1482, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28851,7 +29020,7 @@ } }, { - "id": 1469, + "id": 1477, "name": "key", "kind": 1024, "kindString": "Property", @@ -28871,7 +29040,7 @@ } }, { - "id": 1470, + "id": 1478, "name": "name", "kind": 1024, "kindString": "Property", @@ -28891,7 +29060,7 @@ } }, { - "id": 1473, + "id": 1481, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -28911,7 +29080,7 @@ } }, { - "id": 1472, + "id": 1480, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -28940,7 +29109,7 @@ } }, { - "id": 1471, + "id": 1479, "name": "url", "kind": 1024, "kindString": "Property", @@ -28974,12 +29143,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1474, - 1469, - 1470, - 1473, - 1472, - 1471 + 1482, + 1477, + 1478, + 1481, + 1480, + 1479 ] } ] @@ -28989,7 +29158,7 @@ } }, { - "id": 1710, + "id": 1718, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -29010,7 +29179,7 @@ } }, { - "id": 1558, + "id": 1566, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -29030,7 +29199,7 @@ } }, { - "id": 1559, + "id": 1567, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -29050,7 +29219,7 @@ } }, { - "id": 1572, + "id": 1580, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -29079,7 +29248,7 @@ } }, { - "id": 1465, + "id": 1473, "name": "name", "kind": 1024, "kindString": "Property", @@ -29102,7 +29271,7 @@ } }, { - "id": 1707, + "id": 1715, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -29123,7 +29292,7 @@ } }, { - "id": 1464, + "id": 1472, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -29143,7 +29312,7 @@ } }, { - "id": 1560, + "id": 1568, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -29163,7 +29332,7 @@ } }, { - "id": 1708, + "id": 1716, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -29183,7 +29352,7 @@ } }, { - "id": 1582, + "id": 1590, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -29203,7 +29372,7 @@ } }, { - "id": 1475, + "id": 1483, "name": "organization", "kind": 1024, "kindString": "Property", @@ -29228,14 +29397,14 @@ { "type": "reflection", "declaration": { - "id": 1476, + "id": 1484, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1482, + "id": 1490, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -29255,7 +29424,7 @@ } }, { - "id": 1478, + "id": 1486, "name": "email", "kind": 1024, "kindString": "Property", @@ -29285,7 +29454,7 @@ } }, { - "id": 1493, + "id": 1501, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -29305,7 +29474,7 @@ } }, { - "id": 1486, + "id": 1494, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -29325,7 +29494,7 @@ } }, { - "id": 1487, + "id": 1495, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -29345,7 +29514,7 @@ } }, { - "id": 1488, + "id": 1496, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -29365,7 +29534,7 @@ } }, { - "id": 1483, + "id": 1491, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -29394,7 +29563,7 @@ } }, { - "id": 1485, + "id": 1493, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -29414,7 +29583,7 @@ } }, { - "id": 1480, + "id": 1488, "name": "id", "kind": 1024, "kindString": "Property", @@ -29434,7 +29603,7 @@ } }, { - "id": 1479, + "id": 1487, "name": "login", "kind": 1024, "kindString": "Property", @@ -29454,7 +29623,7 @@ } }, { - "id": 1477, + "id": 1485, "name": "name", "kind": 1024, "kindString": "Property", @@ -29484,7 +29653,7 @@ } }, { - "id": 1481, + "id": 1489, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -29504,7 +29673,7 @@ } }, { - "id": 1491, + "id": 1499, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -29524,7 +29693,7 @@ } }, { - "id": 1494, + "id": 1502, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -29544,7 +29713,7 @@ } }, { - "id": 1492, + "id": 1500, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -29564,7 +29733,7 @@ } }, { - "id": 1496, + "id": 1504, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -29584,7 +29753,7 @@ } }, { - "id": 1497, + "id": 1505, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -29605,7 +29774,7 @@ } }, { - "id": 1489, + "id": 1497, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -29625,7 +29794,7 @@ } }, { - "id": 1490, + "id": 1498, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -29645,7 +29814,7 @@ } }, { - "id": 1495, + "id": 1503, "name": "type", "kind": 1024, "kindString": "Property", @@ -29665,7 +29834,7 @@ } }, { - "id": 1484, + "id": 1492, "name": "url", "kind": 1024, "kindString": "Property", @@ -29690,27 +29859,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1482, - 1478, - 1493, + 1490, 1486, - 1487, - 1488, - 1483, - 1485, - 1480, - 1479, - 1477, - 1481, - 1491, + 1501, 1494, - 1492, + 1495, 1496, - 1497, + 1491, + 1493, + 1488, + 1487, + 1485, 1489, - 1490, - 1495, - 1484 + 1499, + 1502, + 1500, + 1504, + 1505, + 1497, + 1498, + 1503, + 1492 ] } ] @@ -29720,7 +29889,7 @@ } }, { - "id": 1506, + "id": 1514, "name": "owner", "kind": 1024, "kindString": "Property", @@ -29744,14 +29913,14 @@ { "type": "reflection", "declaration": { - "id": 1507, + "id": 1515, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1513, + "id": 1521, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -29771,7 +29940,7 @@ } }, { - "id": 1509, + "id": 1517, "name": "email", "kind": 1024, "kindString": "Property", @@ -29801,7 +29970,7 @@ } }, { - "id": 1524, + "id": 1532, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -29821,7 +29990,7 @@ } }, { - "id": 1517, + "id": 1525, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -29841,7 +30010,7 @@ } }, { - "id": 1518, + "id": 1526, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -29861,7 +30030,7 @@ } }, { - "id": 1519, + "id": 1527, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -29881,7 +30050,7 @@ } }, { - "id": 1514, + "id": 1522, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -29910,7 +30079,7 @@ } }, { - "id": 1516, + "id": 1524, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -29930,7 +30099,7 @@ } }, { - "id": 1511, + "id": 1519, "name": "id", "kind": 1024, "kindString": "Property", @@ -29950,7 +30119,7 @@ } }, { - "id": 1510, + "id": 1518, "name": "login", "kind": 1024, "kindString": "Property", @@ -29970,7 +30139,7 @@ } }, { - "id": 1508, + "id": 1516, "name": "name", "kind": 1024, "kindString": "Property", @@ -30000,7 +30169,7 @@ } }, { - "id": 1512, + "id": 1520, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -30020,7 +30189,7 @@ } }, { - "id": 1522, + "id": 1530, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -30040,7 +30209,7 @@ } }, { - "id": 1525, + "id": 1533, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -30060,7 +30229,7 @@ } }, { - "id": 1523, + "id": 1531, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -30080,7 +30249,7 @@ } }, { - "id": 1527, + "id": 1535, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -30100,7 +30269,7 @@ } }, { - "id": 1528, + "id": 1536, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -30121,7 +30290,7 @@ } }, { - "id": 1520, + "id": 1528, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -30141,7 +30310,7 @@ } }, { - "id": 1521, + "id": 1529, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -30161,7 +30330,7 @@ } }, { - "id": 1526, + "id": 1534, "name": "type", "kind": 1024, "kindString": "Property", @@ -30181,7 +30350,7 @@ } }, { - "id": 1515, + "id": 1523, "name": "url", "kind": 1024, "kindString": "Property", @@ -30206,27 +30375,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1513, - 1509, - 1524, + 1521, 1517, - 1518, - 1519, - 1514, - 1516, - 1511, - 1510, - 1508, - 1512, - 1522, + 1532, 1525, - 1523, + 1526, 1527, - 1528, + 1522, + 1524, + 1519, + 1518, + 1516, 1520, - 1521, - 1526, - 1515 + 1530, + 1533, + 1531, + 1535, + 1536, + 1528, + 1529, + 1534, + 1523 ] } ] @@ -30236,7 +30405,7 @@ } }, { - "id": 1499, + "id": 1507, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -30254,14 +30423,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1500, + "id": 1508, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1501, + "id": 1509, "name": "admin", "kind": 1024, "kindString": "Property", @@ -30281,7 +30450,7 @@ } }, { - "id": 1505, + "id": 1513, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -30302,7 +30471,7 @@ } }, { - "id": 1502, + "id": 1510, "name": "pull", "kind": 1024, "kindString": "Property", @@ -30322,7 +30491,7 @@ } }, { - "id": 1504, + "id": 1512, "name": "push", "kind": 1024, "kindString": "Property", @@ -30342,7 +30511,7 @@ } }, { - "id": 1503, + "id": 1511, "name": "triage", "kind": 1024, "kindString": "Property", @@ -30368,11 +30537,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1501, - 1505, - 1502, - 1504, - 1503 + 1509, + 1513, + 1510, + 1512, + 1511 ] } ] @@ -30380,7 +30549,7 @@ } }, { - "id": 1529, + "id": 1537, "name": "private", "kind": 1024, "kindString": "Property", @@ -30403,7 +30572,7 @@ } }, { - "id": 1561, + "id": 1569, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -30423,7 +30592,7 @@ } }, { - "id": 1593, + "id": 1601, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -30452,7 +30621,7 @@ } }, { - "id": 1562, + "id": 1570, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -30472,7 +30641,7 @@ } }, { - "id": 1580, + "id": 1588, "name": "size", "kind": 1024, "kindString": "Property", @@ -30492,7 +30661,7 @@ } }, { - "id": 1563, + "id": 1571, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -30512,7 +30681,7 @@ } }, { - "id": 1578, + "id": 1586, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -30532,7 +30701,7 @@ } }, { - "id": 1564, + "id": 1572, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -30552,7 +30721,7 @@ } }, { - "id": 1711, + "id": 1719, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -30573,7 +30742,7 @@ } }, { - "id": 1565, + "id": 1573, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -30593,7 +30762,7 @@ } }, { - "id": 1706, + "id": 1714, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -30614,7 +30783,7 @@ } }, { - "id": 1566, + "id": 1574, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -30634,7 +30803,7 @@ } }, { - "id": 1567, + "id": 1575, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -30654,7 +30823,7 @@ } }, { - "id": 1574, + "id": 1582, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -30674,7 +30843,7 @@ } }, { - "id": 1568, + "id": 1576, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -30694,7 +30863,7 @@ } }, { - "id": 1569, + "id": 1577, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -30714,7 +30883,7 @@ } }, { - "id": 1702, + "id": 1710, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -30735,7 +30904,7 @@ } }, { - "id": 1597, + "id": 1605, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -30760,14 +30929,14 @@ { "type": "reflection", "declaration": { - "id": 1598, + "id": 1606, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1699, + "id": 1707, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -30788,7 +30957,7 @@ } }, { - "id": 1695, + "id": 1703, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -30809,7 +30978,7 @@ } }, { - "id": 1697, + "id": 1705, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -30830,7 +30999,7 @@ } }, { - "id": 1628, + "id": 1636, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -30851,7 +31020,7 @@ } }, { - "id": 1684, + "id": 1692, "name": "archived", "kind": 1024, "kindString": "Property", @@ -30872,7 +31041,7 @@ } }, { - "id": 1629, + "id": 1637, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -30893,7 +31062,7 @@ } }, { - "id": 1630, + "id": 1638, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -30914,7 +31083,7 @@ } }, { - "id": 1631, + "id": 1639, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -30935,7 +31104,7 @@ } }, { - "id": 1665, + "id": 1673, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -30956,7 +31125,7 @@ } }, { - "id": 1632, + "id": 1640, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -30977,7 +31146,7 @@ } }, { - "id": 1633, + "id": 1641, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -30998,7 +31167,7 @@ } }, { - "id": 1634, + "id": 1642, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -31019,7 +31188,7 @@ } }, { - "id": 1635, + "id": 1643, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -31040,7 +31209,7 @@ } }, { - "id": 1636, + "id": 1644, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -31061,7 +31230,7 @@ } }, { - "id": 1637, + "id": 1645, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -31082,7 +31251,7 @@ } }, { - "id": 1688, + "id": 1696, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -31103,7 +31272,7 @@ } }, { - "id": 1675, + "id": 1683, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -31124,7 +31293,7 @@ } }, { - "id": 1698, + "id": 1706, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -31145,7 +31314,7 @@ } }, { - "id": 1638, + "id": 1646, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -31166,7 +31335,7 @@ } }, { - "id": 1625, + "id": 1633, "name": "description", "kind": 1024, "kindString": "Property", @@ -31187,7 +31356,7 @@ } }, { - "id": 1685, + "id": 1693, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -31208,7 +31377,7 @@ } }, { - "id": 1639, + "id": 1647, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -31229,7 +31398,7 @@ } }, { - "id": 1640, + "id": 1648, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -31250,7 +31419,7 @@ } }, { - "id": 1626, + "id": 1634, "name": "fork", "kind": 1024, "kindString": "Property", @@ -31271,7 +31440,7 @@ } }, { - "id": 1671, + "id": 1679, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -31292,7 +31461,7 @@ } }, { - "id": 1641, + "id": 1649, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -31313,7 +31482,7 @@ } }, { - "id": 1602, + "id": 1610, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -31334,7 +31503,7 @@ } }, { - "id": 1642, + "id": 1650, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -31355,7 +31524,7 @@ } }, { - "id": 1643, + "id": 1651, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -31376,7 +31545,7 @@ } }, { - "id": 1644, + "id": 1652, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -31397,7 +31566,7 @@ } }, { - "id": 1645, + "id": 1653, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -31418,7 +31587,7 @@ } }, { - "id": 1683, + "id": 1691, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -31439,7 +31608,7 @@ } }, { - "id": 1679, + "id": 1687, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -31460,7 +31629,7 @@ } }, { - "id": 1682, + "id": 1690, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -31481,7 +31650,7 @@ } }, { - "id": 1680, + "id": 1688, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -31502,7 +31671,7 @@ } }, { - "id": 1681, + "id": 1689, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -31523,7 +31692,7 @@ } }, { - "id": 1669, + "id": 1677, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -31544,7 +31713,7 @@ } }, { - "id": 1667, + "id": 1675, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -31565,7 +31734,7 @@ } }, { - "id": 1624, + "id": 1632, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -31586,7 +31755,7 @@ } }, { - "id": 1599, + "id": 1607, "name": "id", "kind": 1024, "kindString": "Property", @@ -31607,7 +31776,7 @@ } }, { - "id": 1677, + "id": 1685, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -31628,7 +31797,7 @@ } }, { - "id": 1646, + "id": 1654, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -31649,7 +31818,7 @@ } }, { - "id": 1647, + "id": 1655, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -31670,7 +31839,7 @@ } }, { - "id": 1648, + "id": 1656, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -31691,7 +31860,7 @@ } }, { - "id": 1649, + "id": 1657, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -31712,7 +31881,7 @@ } }, { - "id": 1650, + "id": 1658, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -31733,7 +31902,7 @@ } }, { - "id": 1670, + "id": 1678, "name": "language", "kind": 1024, "kindString": "Property", @@ -31754,7 +31923,7 @@ } }, { - "id": 1651, + "id": 1659, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -31775,7 +31944,7 @@ } }, { - "id": 1652, + "id": 1660, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -31796,7 +31965,7 @@ } }, { - "id": 1653, + "id": 1661, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -31817,7 +31986,7 @@ } }, { - "id": 1666, + "id": 1674, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -31838,7 +32007,7 @@ } }, { - "id": 1601, + "id": 1609, "name": "name", "kind": 1024, "kindString": "Property", @@ -31859,7 +32028,7 @@ } }, { - "id": 1701, + "id": 1709, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -31880,7 +32049,7 @@ } }, { - "id": 1600, + "id": 1608, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -31901,7 +32070,7 @@ } }, { - "id": 1654, + "id": 1662, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -31922,7 +32091,7 @@ } }, { - "id": 1676, + "id": 1684, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -31943,7 +32112,7 @@ } }, { - "id": 1603, + "id": 1611, "name": "owner", "kind": 1024, "kindString": "Property", @@ -31961,14 +32130,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1604, + "id": 1612, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1608, + "id": 1616, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -31989,7 +32158,7 @@ } }, { - "id": 1619, + "id": 1627, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -32010,7 +32179,7 @@ } }, { - "id": 1612, + "id": 1620, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -32031,7 +32200,7 @@ } }, { - "id": 1613, + "id": 1621, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -32052,7 +32221,7 @@ } }, { - "id": 1614, + "id": 1622, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -32073,7 +32242,7 @@ } }, { - "id": 1609, + "id": 1617, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -32094,7 +32263,7 @@ } }, { - "id": 1611, + "id": 1619, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -32115,7 +32284,7 @@ } }, { - "id": 1606, + "id": 1614, "name": "id", "kind": 1024, "kindString": "Property", @@ -32136,7 +32305,7 @@ } }, { - "id": 1605, + "id": 1613, "name": "login", "kind": 1024, "kindString": "Property", @@ -32157,7 +32326,7 @@ } }, { - "id": 1607, + "id": 1615, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -32178,7 +32347,7 @@ } }, { - "id": 1617, + "id": 1625, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -32199,7 +32368,7 @@ } }, { - "id": 1620, + "id": 1628, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -32220,7 +32389,7 @@ } }, { - "id": 1618, + "id": 1626, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -32241,7 +32410,7 @@ } }, { - "id": 1622, + "id": 1630, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -32262,7 +32431,7 @@ } }, { - "id": 1615, + "id": 1623, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -32283,7 +32452,7 @@ } }, { - "id": 1616, + "id": 1624, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -32304,7 +32473,7 @@ } }, { - "id": 1621, + "id": 1629, "name": "type", "kind": 1024, "kindString": "Property", @@ -32325,7 +32494,7 @@ } }, { - "id": 1610, + "id": 1618, "name": "url", "kind": 1024, "kindString": "Property", @@ -32351,24 +32520,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1608, - 1619, - 1612, - 1613, - 1614, - 1609, - 1611, - 1606, - 1605, - 1607, - 1617, + 1616, + 1627, 1620, - 1618, + 1621, 1622, + 1617, + 1619, + 1614, + 1613, 1615, - 1616, - 1621, - 1610 + 1625, + 1628, + 1626, + 1630, + 1623, + 1624, + 1629, + 1618 ] } ] @@ -32376,7 +32545,7 @@ } }, { - "id": 1690, + "id": 1698, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -32394,14 +32563,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1691, + "id": 1699, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1692, + "id": 1700, "name": "admin", "kind": 1024, "kindString": "Property", @@ -32422,7 +32591,7 @@ } }, { - "id": 1694, + "id": 1702, "name": "pull", "kind": 1024, "kindString": "Property", @@ -32443,7 +32612,7 @@ } }, { - "id": 1693, + "id": 1701, "name": "push", "kind": 1024, "kindString": "Property", @@ -32469,9 +32638,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1692, - 1694, - 1693 + 1700, + 1702, + 1701 ] } ] @@ -32479,7 +32648,7 @@ } }, { - "id": 1623, + "id": 1631, "name": "private", "kind": 1024, "kindString": "Property", @@ -32500,7 +32669,7 @@ } }, { - "id": 1655, + "id": 1663, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -32521,7 +32690,7 @@ } }, { - "id": 1687, + "id": 1695, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -32542,7 +32711,7 @@ } }, { - "id": 1656, + "id": 1664, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -32563,7 +32732,7 @@ } }, { - "id": 1674, + "id": 1682, "name": "size", "kind": 1024, "kindString": "Property", @@ -32584,7 +32753,7 @@ } }, { - "id": 1657, + "id": 1665, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -32605,7 +32774,7 @@ } }, { - "id": 1672, + "id": 1680, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -32626,7 +32795,7 @@ } }, { - "id": 1658, + "id": 1666, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -32647,7 +32816,7 @@ } }, { - "id": 1659, + "id": 1667, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -32668,7 +32837,7 @@ } }, { - "id": 1700, + "id": 1708, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -32689,7 +32858,7 @@ } }, { - "id": 1660, + "id": 1668, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -32710,7 +32879,7 @@ } }, { - "id": 1661, + "id": 1669, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -32731,7 +32900,7 @@ } }, { - "id": 1668, + "id": 1676, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -32752,7 +32921,7 @@ } }, { - "id": 1662, + "id": 1670, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -32773,7 +32942,7 @@ } }, { - "id": 1663, + "id": 1671, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -32794,7 +32963,7 @@ } }, { - "id": 1696, + "id": 1704, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -32815,7 +32984,7 @@ } }, { - "id": 1678, + "id": 1686, "name": "topics", "kind": 1024, "kindString": "Property", @@ -32839,7 +33008,7 @@ } }, { - "id": 1664, + "id": 1672, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -32860,7 +33029,7 @@ } }, { - "id": 1689, + "id": 1697, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -32881,7 +33050,7 @@ } }, { - "id": 1627, + "id": 1635, "name": "url", "kind": 1024, "kindString": "Property", @@ -32902,7 +33071,7 @@ } }, { - "id": 1686, + "id": 1694, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -32923,7 +33092,7 @@ } }, { - "id": 1673, + "id": 1681, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -32949,86 +33118,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1699, - 1695, - 1697, - 1628, - 1684, - 1629, - 1630, - 1631, - 1665, - 1632, - 1633, - 1634, - 1635, + 1707, + 1703, + 1705, 1636, + 1692, 1637, - 1688, - 1675, - 1698, 1638, - 1625, - 1685, 1639, + 1673, 1640, - 1626, - 1671, 1641, - 1602, 1642, 1643, 1644, 1645, + 1696, 1683, - 1679, - 1682, - 1680, - 1681, - 1669, - 1667, - 1624, - 1599, - 1677, + 1706, 1646, + 1633, + 1693, 1647, 1648, + 1634, + 1679, 1649, + 1610, 1650, - 1670, 1651, 1652, 1653, - 1666, - 1601, - 1701, - 1600, - 1654, - 1676, - 1603, + 1691, + 1687, 1690, - 1623, + 1688, + 1689, + 1677, + 1675, + 1632, + 1607, + 1685, + 1654, 1655, - 1687, 1656, - 1674, 1657, - 1672, 1658, + 1678, 1659, - 1700, 1660, 1661, - 1668, + 1674, + 1609, + 1709, + 1608, 1662, + 1684, + 1611, + 1698, + 1631, 1663, - 1696, - 1678, + 1695, 1664, - 1689, - 1627, + 1682, + 1665, + 1680, + 1666, + 1667, + 1708, + 1668, + 1669, + 1676, + 1670, + 1671, + 1704, 1686, - 1673 + 1672, + 1697, + 1635, + 1694, + 1681 ] } ] @@ -33038,7 +33207,7 @@ } }, { - "id": 1584, + "id": 1592, "name": "topics", "kind": 1024, "kindString": "Property", @@ -33062,7 +33231,7 @@ } }, { - "id": 1570, + "id": 1578, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -33082,7 +33251,7 @@ } }, { - "id": 1595, + "id": 1603, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -33111,7 +33280,7 @@ } }, { - "id": 1533, + "id": 1541, "name": "url", "kind": 1024, "kindString": "Property", @@ -33131,7 +33300,7 @@ } }, { - "id": 1592, + "id": 1600, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -33155,7 +33324,7 @@ } }, { - "id": 1709, + "id": 1717, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -33175,7 +33344,7 @@ } }, { - "id": 1579, + "id": 1587, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -33200,94 +33369,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1705, - 1596, - 1703, - 1534, - 1590, - 1535, - 1536, - 1537, - 1571, - 1538, - 1539, - 1540, - 1541, + 1713, + 1604, + 1711, 1542, + 1598, 1543, - 1594, - 1581, - 1704, 1544, - 1531, - 1591, 1545, + 1579, 1546, - 1532, - 1498, - 1577, 1547, - 1466, 1548, 1549, 1550, 1551, + 1602, 1589, - 1585, - 1588, - 1586, - 1587, - 1575, - 1573, - 1530, - 1463, - 1583, + 1712, 1552, + 1539, + 1599, 1553, 1554, + 1540, + 1506, + 1585, 1555, + 1474, 1556, - 1576, 1557, - 1467, - 1710, 1558, 1559, - 1572, - 1465, - 1707, - 1464, + 1597, + 1593, + 1596, + 1594, + 1595, + 1583, + 1581, + 1538, + 1471, + 1591, 1560, - 1708, - 1582, - 1475, - 1506, - 1499, - 1529, 1561, - 1593, 1562, - 1580, 1563, - 1578, 1564, - 1711, + 1584, 1565, - 1706, + 1475, + 1718, 1566, 1567, - 1574, + 1580, + 1473, + 1715, + 1472, 1568, + 1716, + 1590, + 1483, + 1514, + 1507, + 1537, 1569, - 1702, - 1597, - 1584, + 1601, 1570, - 1595, - 1533, + 1588, + 1571, + 1586, + 1572, + 1719, + 1573, + 1714, + 1574, + 1575, + 1582, + 1576, + 1577, + 1710, + 1605, 1592, - 1709, - 1579 + 1578, + 1603, + 1541, + 1600, + 1717, + 1587 ] } ] @@ -33295,7 +33464,7 @@ } }, { - "id": 883, + "id": 891, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -33315,7 +33484,7 @@ } }, { - "id": 898, + "id": 906, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -33335,7 +33504,7 @@ } }, { - "id": 884, + "id": 892, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -33355,7 +33524,7 @@ } }, { - "id": 885, + "id": 893, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -33375,7 +33544,7 @@ } }, { - "id": 1177, + "id": 1185, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -33395,7 +33564,7 @@ } }, { - "id": 886, + "id": 894, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -33415,7 +33584,7 @@ } }, { - "id": 887, + "id": 895, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -33435,7 +33604,7 @@ } }, { - "id": 894, + "id": 902, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -33455,7 +33624,7 @@ } }, { - "id": 888, + "id": 896, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -33475,7 +33644,7 @@ } }, { - "id": 889, + "id": 897, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -33495,7 +33664,7 @@ } }, { - "id": 1173, + "id": 1181, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -33525,7 +33694,7 @@ } }, { - "id": 922, + "id": 930, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -33550,14 +33719,14 @@ { "type": "reflection", "declaration": { - "id": 923, + "id": 931, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1166, + "id": 1174, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -33581,7 +33750,7 @@ } }, { - "id": 1057, + "id": 1065, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -33605,7 +33774,7 @@ } }, { - "id": 1164, + "id": 1172, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -33629,7 +33798,7 @@ } }, { - "id": 995, + "id": 1003, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -33649,7 +33818,7 @@ } }, { - "id": 1051, + "id": 1059, "name": "archived", "kind": 1024, "kindString": "Property", @@ -33672,7 +33841,7 @@ } }, { - "id": 996, + "id": 1004, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -33692,7 +33861,7 @@ } }, { - "id": 997, + "id": 1005, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -33712,7 +33881,7 @@ } }, { - "id": 998, + "id": 1006, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -33732,7 +33901,7 @@ } }, { - "id": 1032, + "id": 1040, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -33752,7 +33921,7 @@ } }, { - "id": 999, + "id": 1007, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -33772,7 +33941,7 @@ } }, { - "id": 1000, + "id": 1008, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -33792,7 +33961,7 @@ } }, { - "id": 1001, + "id": 1009, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -33812,7 +33981,7 @@ } }, { - "id": 1002, + "id": 1010, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -33832,7 +34001,7 @@ } }, { - "id": 1003, + "id": 1011, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -33852,7 +34021,7 @@ } }, { - "id": 1004, + "id": 1012, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -33872,7 +34041,7 @@ } }, { - "id": 1055, + "id": 1063, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -33901,7 +34070,7 @@ } }, { - "id": 1042, + "id": 1050, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -33924,7 +34093,7 @@ } }, { - "id": 1165, + "id": 1173, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -33948,7 +34117,7 @@ } }, { - "id": 1005, + "id": 1013, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -33968,7 +34137,7 @@ } }, { - "id": 992, + "id": 1000, "name": "description", "kind": 1024, "kindString": "Property", @@ -33997,7 +34166,7 @@ } }, { - "id": 1052, + "id": 1060, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -34020,7 +34189,7 @@ } }, { - "id": 1006, + "id": 1014, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -34040,7 +34209,7 @@ } }, { - "id": 1007, + "id": 1015, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -34060,7 +34229,7 @@ } }, { - "id": 993, + "id": 1001, "name": "fork", "kind": 1024, "kindString": "Property", @@ -34080,7 +34249,7 @@ } }, { - "id": 959, + "id": 967, "name": "forks", "kind": 1024, "kindString": "Property", @@ -34100,7 +34269,7 @@ } }, { - "id": 1038, + "id": 1046, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -34120,7 +34289,7 @@ } }, { - "id": 1008, + "id": 1016, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -34140,7 +34309,7 @@ } }, { - "id": 927, + "id": 935, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -34160,7 +34329,7 @@ } }, { - "id": 1009, + "id": 1017, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -34180,7 +34349,7 @@ } }, { - "id": 1010, + "id": 1018, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -34200,7 +34369,7 @@ } }, { - "id": 1011, + "id": 1019, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -34220,7 +34389,7 @@ } }, { - "id": 1012, + "id": 1020, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -34240,7 +34409,7 @@ } }, { - "id": 1050, + "id": 1058, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -34263,7 +34432,7 @@ } }, { - "id": 1046, + "id": 1054, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -34286,7 +34455,7 @@ } }, { - "id": 1049, + "id": 1057, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -34306,7 +34475,7 @@ } }, { - "id": 1047, + "id": 1055, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -34329,7 +34498,7 @@ } }, { - "id": 1048, + "id": 1056, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -34352,7 +34521,7 @@ } }, { - "id": 1036, + "id": 1044, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -34381,7 +34550,7 @@ } }, { - "id": 1034, + "id": 1042, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -34401,7 +34570,7 @@ } }, { - "id": 991, + "id": 999, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -34421,7 +34590,7 @@ } }, { - "id": 924, + "id": 932, "name": "id", "kind": 1024, "kindString": "Property", @@ -34444,7 +34613,7 @@ } }, { - "id": 1044, + "id": 1052, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -34468,7 +34637,7 @@ } }, { - "id": 1013, + "id": 1021, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -34488,7 +34657,7 @@ } }, { - "id": 1014, + "id": 1022, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -34508,7 +34677,7 @@ } }, { - "id": 1015, + "id": 1023, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -34528,7 +34697,7 @@ } }, { - "id": 1016, + "id": 1024, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -34548,7 +34717,7 @@ } }, { - "id": 1017, + "id": 1025, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -34568,7 +34737,7 @@ } }, { - "id": 1037, + "id": 1045, "name": "language", "kind": 1024, "kindString": "Property", @@ -34597,7 +34766,7 @@ } }, { - "id": 1018, + "id": 1026, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -34617,7 +34786,7 @@ } }, { - "id": 928, + "id": 936, "name": "license", "kind": 1024, "kindString": "Property", @@ -34641,14 +34810,14 @@ { "type": "reflection", "declaration": { - "id": 929, + "id": 937, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 935, + "id": 943, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -34669,7 +34838,7 @@ } }, { - "id": 930, + "id": 938, "name": "key", "kind": 1024, "kindString": "Property", @@ -34689,7 +34858,7 @@ } }, { - "id": 931, + "id": 939, "name": "name", "kind": 1024, "kindString": "Property", @@ -34709,7 +34878,7 @@ } }, { - "id": 934, + "id": 942, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34729,7 +34898,7 @@ } }, { - "id": 933, + "id": 941, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -34758,7 +34927,7 @@ } }, { - "id": 932, + "id": 940, "name": "url", "kind": 1024, "kindString": "Property", @@ -34792,12 +34961,12 @@ "title": "Properties", "kind": 1024, "children": [ - 935, - 930, - 931, - 934, - 933, - 932 + 943, + 938, + 939, + 942, + 941, + 940 ] } ] @@ -34807,7 +34976,7 @@ } }, { - "id": 1171, + "id": 1179, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -34828,7 +34997,7 @@ } }, { - "id": 1019, + "id": 1027, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -34848,7 +35017,7 @@ } }, { - "id": 1020, + "id": 1028, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -34868,7 +35037,7 @@ } }, { - "id": 1033, + "id": 1041, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -34897,7 +35066,7 @@ } }, { - "id": 926, + "id": 934, "name": "name", "kind": 1024, "kindString": "Property", @@ -34920,7 +35089,7 @@ } }, { - "id": 1168, + "id": 1176, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -34941,7 +35110,7 @@ } }, { - "id": 925, + "id": 933, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34961,7 +35130,7 @@ } }, { - "id": 1021, + "id": 1029, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -34981,7 +35150,7 @@ } }, { - "id": 1169, + "id": 1177, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -35001,7 +35170,7 @@ } }, { - "id": 1043, + "id": 1051, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -35021,7 +35190,7 @@ } }, { - "id": 936, + "id": 944, "name": "organization", "kind": 1024, "kindString": "Property", @@ -35046,14 +35215,14 @@ { "type": "reflection", "declaration": { - "id": 937, + "id": 945, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 943, + "id": 951, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -35073,7 +35242,7 @@ } }, { - "id": 939, + "id": 947, "name": "email", "kind": 1024, "kindString": "Property", @@ -35103,7 +35272,7 @@ } }, { - "id": 954, + "id": 962, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -35123,7 +35292,7 @@ } }, { - "id": 947, + "id": 955, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -35143,7 +35312,7 @@ } }, { - "id": 948, + "id": 956, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -35163,7 +35332,7 @@ } }, { - "id": 949, + "id": 957, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -35183,7 +35352,7 @@ } }, { - "id": 944, + "id": 952, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -35212,7 +35381,7 @@ } }, { - "id": 946, + "id": 954, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -35232,7 +35401,7 @@ } }, { - "id": 941, + "id": 949, "name": "id", "kind": 1024, "kindString": "Property", @@ -35252,7 +35421,7 @@ } }, { - "id": 940, + "id": 948, "name": "login", "kind": 1024, "kindString": "Property", @@ -35272,7 +35441,7 @@ } }, { - "id": 938, + "id": 946, "name": "name", "kind": 1024, "kindString": "Property", @@ -35302,7 +35471,7 @@ } }, { - "id": 942, + "id": 950, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -35322,7 +35491,7 @@ } }, { - "id": 952, + "id": 960, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -35342,7 +35511,7 @@ } }, { - "id": 955, + "id": 963, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -35362,7 +35531,7 @@ } }, { - "id": 953, + "id": 961, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -35382,7 +35551,7 @@ } }, { - "id": 957, + "id": 965, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -35402,7 +35571,7 @@ } }, { - "id": 958, + "id": 966, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -35423,7 +35592,7 @@ } }, { - "id": 950, + "id": 958, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -35443,7 +35612,7 @@ } }, { - "id": 951, + "id": 959, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -35463,7 +35632,7 @@ } }, { - "id": 956, + "id": 964, "name": "type", "kind": 1024, "kindString": "Property", @@ -35483,7 +35652,7 @@ } }, { - "id": 945, + "id": 953, "name": "url", "kind": 1024, "kindString": "Property", @@ -35508,27 +35677,27 @@ "title": "Properties", "kind": 1024, "children": [ - 943, - 939, - 954, + 951, 947, - 948, - 949, - 944, - 946, - 941, - 940, - 938, - 942, - 952, + 962, 955, - 953, + 956, 957, - 958, + 952, + 954, + 949, + 948, + 946, 950, - 951, - 956, - 945 + 960, + 963, + 961, + 965, + 966, + 958, + 959, + 964, + 953 ] } ] @@ -35538,7 +35707,7 @@ } }, { - "id": 967, + "id": 975, "name": "owner", "kind": 1024, "kindString": "Property", @@ -35562,14 +35731,14 @@ { "type": "reflection", "declaration": { - "id": 968, + "id": 976, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 974, + "id": 982, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -35589,7 +35758,7 @@ } }, { - "id": 970, + "id": 978, "name": "email", "kind": 1024, "kindString": "Property", @@ -35619,7 +35788,7 @@ } }, { - "id": 985, + "id": 993, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -35639,7 +35808,7 @@ } }, { - "id": 978, + "id": 986, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -35659,7 +35828,7 @@ } }, { - "id": 979, + "id": 987, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -35679,7 +35848,7 @@ } }, { - "id": 980, + "id": 988, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -35699,7 +35868,7 @@ } }, { - "id": 975, + "id": 983, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -35728,7 +35897,7 @@ } }, { - "id": 977, + "id": 985, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -35748,7 +35917,7 @@ } }, { - "id": 972, + "id": 980, "name": "id", "kind": 1024, "kindString": "Property", @@ -35768,7 +35937,7 @@ } }, { - "id": 971, + "id": 979, "name": "login", "kind": 1024, "kindString": "Property", @@ -35788,7 +35957,7 @@ } }, { - "id": 969, + "id": 977, "name": "name", "kind": 1024, "kindString": "Property", @@ -35818,7 +35987,7 @@ } }, { - "id": 973, + "id": 981, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -35838,7 +36007,7 @@ } }, { - "id": 983, + "id": 991, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -35858,7 +36027,7 @@ } }, { - "id": 986, + "id": 994, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -35878,7 +36047,7 @@ } }, { - "id": 984, + "id": 992, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -35898,7 +36067,7 @@ } }, { - "id": 988, + "id": 996, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -35918,7 +36087,7 @@ } }, { - "id": 989, + "id": 997, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -35939,7 +36108,7 @@ } }, { - "id": 981, + "id": 989, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -35959,7 +36128,7 @@ } }, { - "id": 982, + "id": 990, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -35979,7 +36148,7 @@ } }, { - "id": 987, + "id": 995, "name": "type", "kind": 1024, "kindString": "Property", @@ -35999,7 +36168,7 @@ } }, { - "id": 976, + "id": 984, "name": "url", "kind": 1024, "kindString": "Property", @@ -36024,27 +36193,27 @@ "title": "Properties", "kind": 1024, "children": [ - 974, - 970, - 985, + 982, 978, - 979, - 980, - 975, - 977, - 972, - 971, - 969, - 973, - 983, + 993, 986, - 984, + 987, 988, - 989, + 983, + 985, + 980, + 979, + 977, 981, - 982, - 987, - 976 + 991, + 994, + 992, + 996, + 997, + 989, + 990, + 995, + 984 ] } ] @@ -36054,7 +36223,7 @@ } }, { - "id": 960, + "id": 968, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -36072,14 +36241,14 @@ "type": { "type": "reflection", "declaration": { - "id": 961, + "id": 969, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 962, + "id": 970, "name": "admin", "kind": 1024, "kindString": "Property", @@ -36099,7 +36268,7 @@ } }, { - "id": 966, + "id": 974, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -36120,7 +36289,7 @@ } }, { - "id": 963, + "id": 971, "name": "pull", "kind": 1024, "kindString": "Property", @@ -36140,7 +36309,7 @@ } }, { - "id": 965, + "id": 973, "name": "push", "kind": 1024, "kindString": "Property", @@ -36160,7 +36329,7 @@ } }, { - "id": 964, + "id": 972, "name": "triage", "kind": 1024, "kindString": "Property", @@ -36186,11 +36355,11 @@ "title": "Properties", "kind": 1024, "children": [ - 962, - 966, - 963, - 965, - 964 + 970, + 974, + 971, + 973, + 972 ] } ] @@ -36198,7 +36367,7 @@ } }, { - "id": 990, + "id": 998, "name": "private", "kind": 1024, "kindString": "Property", @@ -36221,7 +36390,7 @@ } }, { - "id": 1022, + "id": 1030, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -36241,7 +36410,7 @@ } }, { - "id": 1054, + "id": 1062, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -36270,7 +36439,7 @@ } }, { - "id": 1023, + "id": 1031, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -36290,7 +36459,7 @@ } }, { - "id": 1041, + "id": 1049, "name": "size", "kind": 1024, "kindString": "Property", @@ -36310,7 +36479,7 @@ } }, { - "id": 1024, + "id": 1032, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -36330,7 +36499,7 @@ } }, { - "id": 1039, + "id": 1047, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -36350,7 +36519,7 @@ } }, { - "id": 1025, + "id": 1033, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -36370,7 +36539,7 @@ } }, { - "id": 1172, + "id": 1180, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -36391,7 +36560,7 @@ } }, { - "id": 1026, + "id": 1034, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -36411,7 +36580,7 @@ } }, { - "id": 1167, + "id": 1175, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -36432,7 +36601,7 @@ } }, { - "id": 1027, + "id": 1035, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -36452,7 +36621,7 @@ } }, { - "id": 1028, + "id": 1036, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -36472,7 +36641,7 @@ } }, { - "id": 1035, + "id": 1043, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -36492,7 +36661,7 @@ } }, { - "id": 1029, + "id": 1037, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -36512,7 +36681,7 @@ } }, { - "id": 1030, + "id": 1038, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -36532,7 +36701,7 @@ } }, { - "id": 1163, + "id": 1171, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -36553,7 +36722,7 @@ } }, { - "id": 1058, + "id": 1066, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -36578,14 +36747,14 @@ { "type": "reflection", "declaration": { - "id": 1059, + "id": 1067, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1160, + "id": 1168, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -36606,7 +36775,7 @@ } }, { - "id": 1156, + "id": 1164, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -36627,7 +36796,7 @@ } }, { - "id": 1158, + "id": 1166, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -36648,7 +36817,7 @@ } }, { - "id": 1089, + "id": 1097, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -36669,7 +36838,7 @@ } }, { - "id": 1145, + "id": 1153, "name": "archived", "kind": 1024, "kindString": "Property", @@ -36690,7 +36859,7 @@ } }, { - "id": 1090, + "id": 1098, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -36711,7 +36880,7 @@ } }, { - "id": 1091, + "id": 1099, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -36732,7 +36901,7 @@ } }, { - "id": 1092, + "id": 1100, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -36753,7 +36922,7 @@ } }, { - "id": 1126, + "id": 1134, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -36774,7 +36943,7 @@ } }, { - "id": 1093, + "id": 1101, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -36795,7 +36964,7 @@ } }, { - "id": 1094, + "id": 1102, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -36816,7 +36985,7 @@ } }, { - "id": 1095, + "id": 1103, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -36837,7 +37006,7 @@ } }, { - "id": 1096, + "id": 1104, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -36858,7 +37027,7 @@ } }, { - "id": 1097, + "id": 1105, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -36879,7 +37048,7 @@ } }, { - "id": 1098, + "id": 1106, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -36900,7 +37069,7 @@ } }, { - "id": 1149, + "id": 1157, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -36921,7 +37090,7 @@ } }, { - "id": 1136, + "id": 1144, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -36942,7 +37111,7 @@ } }, { - "id": 1159, + "id": 1167, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -36963,7 +37132,7 @@ } }, { - "id": 1099, + "id": 1107, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -36984,7 +37153,7 @@ } }, { - "id": 1086, + "id": 1094, "name": "description", "kind": 1024, "kindString": "Property", @@ -37005,7 +37174,7 @@ } }, { - "id": 1146, + "id": 1154, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -37026,7 +37195,7 @@ } }, { - "id": 1100, + "id": 1108, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -37047,7 +37216,7 @@ } }, { - "id": 1101, + "id": 1109, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -37068,7 +37237,7 @@ } }, { - "id": 1087, + "id": 1095, "name": "fork", "kind": 1024, "kindString": "Property", @@ -37089,7 +37258,7 @@ } }, { - "id": 1132, + "id": 1140, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -37110,7 +37279,7 @@ } }, { - "id": 1102, + "id": 1110, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -37131,7 +37300,7 @@ } }, { - "id": 1063, + "id": 1071, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -37152,7 +37321,7 @@ } }, { - "id": 1103, + "id": 1111, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -37173,7 +37342,7 @@ } }, { - "id": 1104, + "id": 1112, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -37194,7 +37363,7 @@ } }, { - "id": 1105, + "id": 1113, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -37215,7 +37384,7 @@ } }, { - "id": 1106, + "id": 1114, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -37236,7 +37405,7 @@ } }, { - "id": 1144, + "id": 1152, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -37257,7 +37426,7 @@ } }, { - "id": 1140, + "id": 1148, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -37278,7 +37447,7 @@ } }, { - "id": 1143, + "id": 1151, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -37299,7 +37468,7 @@ } }, { - "id": 1141, + "id": 1149, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -37320,7 +37489,7 @@ } }, { - "id": 1142, + "id": 1150, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -37341,7 +37510,7 @@ } }, { - "id": 1130, + "id": 1138, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -37362,7 +37531,7 @@ } }, { - "id": 1128, + "id": 1136, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -37383,7 +37552,7 @@ } }, { - "id": 1085, + "id": 1093, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -37404,7 +37573,7 @@ } }, { - "id": 1060, + "id": 1068, "name": "id", "kind": 1024, "kindString": "Property", @@ -37425,7 +37594,7 @@ } }, { - "id": 1138, + "id": 1146, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -37446,7 +37615,7 @@ } }, { - "id": 1107, + "id": 1115, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -37467,7 +37636,7 @@ } }, { - "id": 1108, + "id": 1116, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -37488,7 +37657,7 @@ } }, { - "id": 1109, + "id": 1117, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -37509,7 +37678,7 @@ } }, { - "id": 1110, + "id": 1118, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -37530,7 +37699,7 @@ } }, { - "id": 1111, + "id": 1119, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -37551,7 +37720,7 @@ } }, { - "id": 1131, + "id": 1139, "name": "language", "kind": 1024, "kindString": "Property", @@ -37572,7 +37741,7 @@ } }, { - "id": 1112, + "id": 1120, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -37593,7 +37762,7 @@ } }, { - "id": 1113, + "id": 1121, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -37614,7 +37783,7 @@ } }, { - "id": 1114, + "id": 1122, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -37635,7 +37804,7 @@ } }, { - "id": 1127, + "id": 1135, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -37656,7 +37825,7 @@ } }, { - "id": 1062, + "id": 1070, "name": "name", "kind": 1024, "kindString": "Property", @@ -37677,7 +37846,7 @@ } }, { - "id": 1162, + "id": 1170, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -37698,7 +37867,7 @@ } }, { - "id": 1061, + "id": 1069, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -37719,7 +37888,7 @@ } }, { - "id": 1115, + "id": 1123, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -37740,7 +37909,7 @@ } }, { - "id": 1137, + "id": 1145, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -37761,7 +37930,7 @@ } }, { - "id": 1064, + "id": 1072, "name": "owner", "kind": 1024, "kindString": "Property", @@ -37779,14 +37948,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1065, + "id": 1073, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1069, + "id": 1077, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -37807,7 +37976,7 @@ } }, { - "id": 1080, + "id": 1088, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -37828,7 +37997,7 @@ } }, { - "id": 1073, + "id": 1081, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -37849,7 +38018,7 @@ } }, { - "id": 1074, + "id": 1082, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -37870,7 +38039,7 @@ } }, { - "id": 1075, + "id": 1083, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -37891,7 +38060,7 @@ } }, { - "id": 1070, + "id": 1078, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -37912,7 +38081,7 @@ } }, { - "id": 1072, + "id": 1080, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -37933,7 +38102,7 @@ } }, { - "id": 1067, + "id": 1075, "name": "id", "kind": 1024, "kindString": "Property", @@ -37954,7 +38123,7 @@ } }, { - "id": 1066, + "id": 1074, "name": "login", "kind": 1024, "kindString": "Property", @@ -37975,7 +38144,7 @@ } }, { - "id": 1068, + "id": 1076, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -37996,7 +38165,7 @@ } }, { - "id": 1078, + "id": 1086, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -38017,7 +38186,7 @@ } }, { - "id": 1081, + "id": 1089, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -38038,7 +38207,7 @@ } }, { - "id": 1079, + "id": 1087, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -38059,7 +38228,7 @@ } }, { - "id": 1083, + "id": 1091, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -38080,7 +38249,7 @@ } }, { - "id": 1076, + "id": 1084, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -38101,7 +38270,7 @@ } }, { - "id": 1077, + "id": 1085, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -38122,7 +38291,7 @@ } }, { - "id": 1082, + "id": 1090, "name": "type", "kind": 1024, "kindString": "Property", @@ -38143,7 +38312,7 @@ } }, { - "id": 1071, + "id": 1079, "name": "url", "kind": 1024, "kindString": "Property", @@ -38169,24 +38338,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1069, - 1080, - 1073, - 1074, - 1075, - 1070, - 1072, - 1067, - 1066, - 1068, - 1078, + 1077, + 1088, 1081, - 1079, + 1082, 1083, + 1078, + 1080, + 1075, + 1074, 1076, - 1077, - 1082, - 1071 + 1086, + 1089, + 1087, + 1091, + 1084, + 1085, + 1090, + 1079 ] } ] @@ -38194,7 +38363,7 @@ } }, { - "id": 1151, + "id": 1159, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -38212,14 +38381,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1152, + "id": 1160, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1153, + "id": 1161, "name": "admin", "kind": 1024, "kindString": "Property", @@ -38240,7 +38409,7 @@ } }, { - "id": 1155, + "id": 1163, "name": "pull", "kind": 1024, "kindString": "Property", @@ -38261,7 +38430,7 @@ } }, { - "id": 1154, + "id": 1162, "name": "push", "kind": 1024, "kindString": "Property", @@ -38287,9 +38456,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1153, - 1155, - 1154 + 1161, + 1163, + 1162 ] } ] @@ -38297,7 +38466,7 @@ } }, { - "id": 1084, + "id": 1092, "name": "private", "kind": 1024, "kindString": "Property", @@ -38318,7 +38487,7 @@ } }, { - "id": 1116, + "id": 1124, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -38339,7 +38508,7 @@ } }, { - "id": 1148, + "id": 1156, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -38360,7 +38529,7 @@ } }, { - "id": 1117, + "id": 1125, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -38381,7 +38550,7 @@ } }, { - "id": 1135, + "id": 1143, "name": "size", "kind": 1024, "kindString": "Property", @@ -38402,7 +38571,7 @@ } }, { - "id": 1118, + "id": 1126, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -38423,7 +38592,7 @@ } }, { - "id": 1133, + "id": 1141, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -38444,7 +38613,7 @@ } }, { - "id": 1119, + "id": 1127, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -38465,7 +38634,7 @@ } }, { - "id": 1120, + "id": 1128, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -38486,7 +38655,7 @@ } }, { - "id": 1161, + "id": 1169, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -38507,7 +38676,7 @@ } }, { - "id": 1121, + "id": 1129, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -38528,7 +38697,7 @@ } }, { - "id": 1122, + "id": 1130, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -38549,7 +38718,7 @@ } }, { - "id": 1129, + "id": 1137, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -38570,7 +38739,7 @@ } }, { - "id": 1123, + "id": 1131, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -38591,7 +38760,7 @@ } }, { - "id": 1124, + "id": 1132, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -38612,7 +38781,7 @@ } }, { - "id": 1157, + "id": 1165, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -38633,7 +38802,7 @@ } }, { - "id": 1139, + "id": 1147, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38657,7 +38826,7 @@ } }, { - "id": 1125, + "id": 1133, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38678,7 +38847,7 @@ } }, { - "id": 1150, + "id": 1158, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38699,7 +38868,7 @@ } }, { - "id": 1088, + "id": 1096, "name": "url", "kind": 1024, "kindString": "Property", @@ -38720,7 +38889,7 @@ } }, { - "id": 1147, + "id": 1155, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38741,7 +38910,7 @@ } }, { - "id": 1134, + "id": 1142, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -38767,86 +38936,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1160, - 1156, - 1158, - 1089, - 1145, - 1090, - 1091, - 1092, - 1126, - 1093, - 1094, - 1095, - 1096, + 1168, + 1164, + 1166, 1097, + 1153, 1098, - 1149, - 1136, - 1159, 1099, - 1086, - 1146, 1100, + 1134, 1101, - 1087, - 1132, 1102, - 1063, 1103, 1104, 1105, 1106, + 1157, 1144, - 1140, - 1143, - 1141, - 1142, - 1130, - 1128, - 1085, - 1060, - 1138, + 1167, 1107, + 1094, + 1154, 1108, 1109, + 1095, + 1140, 1110, + 1071, 1111, - 1131, 1112, 1113, 1114, - 1127, - 1062, - 1162, - 1061, - 1115, - 1137, - 1064, + 1152, + 1148, 1151, - 1084, + 1149, + 1150, + 1138, + 1136, + 1093, + 1068, + 1146, + 1115, 1116, - 1148, 1117, - 1135, 1118, - 1133, 1119, + 1139, 1120, - 1161, 1121, 1122, - 1129, + 1135, + 1070, + 1170, + 1069, 1123, + 1145, + 1072, + 1159, + 1092, 1124, - 1157, - 1139, + 1156, 1125, - 1150, - 1088, + 1143, + 1126, + 1141, + 1127, + 1128, + 1169, + 1129, + 1130, + 1137, + 1131, + 1132, + 1165, 1147, - 1134 + 1133, + 1158, + 1096, + 1155, + 1142 ] } ] @@ -38856,7 +39025,7 @@ } }, { - "id": 1045, + "id": 1053, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38880,7 +39049,7 @@ } }, { - "id": 1031, + "id": 1039, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38900,7 +39069,7 @@ } }, { - "id": 1056, + "id": 1064, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38929,7 +39098,7 @@ } }, { - "id": 994, + "id": 1002, "name": "url", "kind": 1024, "kindString": "Property", @@ -38949,7 +39118,7 @@ } }, { - "id": 1053, + "id": 1061, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38973,7 +39142,7 @@ } }, { - "id": 1170, + "id": 1178, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -38993,7 +39162,7 @@ } }, { - "id": 1040, + "id": 1048, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -39018,94 +39187,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1166, - 1057, - 1164, - 995, - 1051, - 996, - 997, - 998, - 1032, - 999, - 1000, - 1001, - 1002, + 1174, + 1065, + 1172, 1003, + 1059, 1004, - 1055, - 1042, - 1165, 1005, - 992, - 1052, 1006, + 1040, 1007, - 993, - 959, - 1038, 1008, - 927, 1009, 1010, 1011, 1012, + 1063, 1050, - 1046, - 1049, - 1047, - 1048, - 1036, - 1034, - 991, - 924, - 1044, + 1173, 1013, + 1000, + 1060, 1014, 1015, + 1001, + 967, + 1046, 1016, + 935, 1017, - 1037, 1018, - 928, - 1171, 1019, 1020, - 1033, - 926, - 1168, - 925, + 1058, + 1054, + 1057, + 1055, + 1056, + 1044, + 1042, + 999, + 932, + 1052, 1021, - 1169, - 1043, - 936, - 967, - 960, - 990, 1022, - 1054, 1023, - 1041, 1024, - 1039, 1025, - 1172, + 1045, 1026, - 1167, + 936, + 1179, 1027, 1028, - 1035, + 1041, + 934, + 1176, + 933, 1029, + 1177, + 1051, + 944, + 975, + 968, + 998, 1030, - 1163, - 1058, - 1045, + 1062, 1031, - 1056, - 994, + 1049, + 1032, + 1047, + 1033, + 1180, + 1034, + 1175, + 1035, + 1036, + 1043, + 1037, + 1038, + 1171, + 1066, 1053, - 1170, - 1040 + 1039, + 1064, + 1002, + 1061, + 1178, + 1048 ] } ] @@ -39115,7 +39284,7 @@ } }, { - "id": 904, + "id": 912, "name": "topics", "kind": 1024, "kindString": "Property", @@ -39139,7 +39308,7 @@ } }, { - "id": 890, + "id": 898, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -39159,7 +39328,7 @@ } }, { - "id": 915, + "id": 923, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -39179,7 +39348,7 @@ } }, { - "id": 853, + "id": 861, "name": "url", "kind": 1024, "kindString": "Property", @@ -39199,7 +39368,7 @@ } }, { - "id": 912, + "id": 920, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -39223,7 +39392,7 @@ } }, { - "id": 1715, + "id": 1723, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -39243,7 +39412,7 @@ } }, { - "id": 899, + "id": 907, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -39268,98 +39437,98 @@ "title": "Properties", "kind": 1024, "children": [ - 1176, - 921, - 1174, - 1716, - 854, - 910, - 855, - 856, - 857, - 891, - 1717, - 858, - 859, - 860, - 861, + 1184, + 929, + 1182, + 1724, 862, + 918, 863, - 914, - 901, - 1175, 864, - 851, - 911, 865, + 899, + 1725, 866, - 852, - 1712, - 897, 867, - 825, 868, 869, 870, 871, + 922, 909, - 905, - 908, - 906, - 907, - 895, - 893, - 850, - 822, - 903, + 1183, 872, + 859, + 919, 873, 874, + 860, + 1720, + 905, 875, + 833, 876, - 896, 877, - 1179, - 1713, 878, 879, - 892, - 824, - 1178, - 823, - 880, - 1714, - 902, - 1187, - 826, - 1210, + 917, + 913, 916, - 849, + 914, + 915, + 903, + 901, + 858, + 830, + 911, + 880, 881, - 913, 882, - 1723, - 900, - 1461, 883, - 898, 884, + 904, 885, - 1177, + 1187, + 1721, 886, 887, - 894, + 900, + 832, + 1186, + 831, 888, + 1722, + 910, + 1195, + 834, + 1218, + 924, + 857, 889, - 1173, - 922, - 904, + 921, 890, - 915, - 853, + 1731, + 908, + 1469, + 891, + 906, + 892, + 893, + 1185, + 894, + 895, + 902, + 896, + 897, + 1181, + 930, 912, - 1715, - 899 + 898, + 923, + 861, + 920, + 1723, + 907 ] } ] @@ -39369,7 +39538,7 @@ ], "type": { "type": "reference", - "id": 816, + "id": 824, "name": "Repo" }, "overwrites": { @@ -39386,7 +39555,7 @@ } }, { - "id": 2691, + "id": 2699, "name": "client", "kind": 1024, "kindString": "Property", @@ -39410,7 +39579,7 @@ } }, { - "id": 1733, + "id": 1741, "name": "data", "kind": 1024, "kindString": "Property", @@ -39428,14 +39597,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1734, + "id": 1742, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2089, + "id": 2097, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -39456,7 +39625,7 @@ } }, { - "id": 1834, + "id": 1842, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -39477,7 +39646,7 @@ } }, { - "id": 2087, + "id": 2095, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -39498,7 +39667,7 @@ } }, { - "id": 2629, + "id": 2637, "name": "anonymous_access_enabled", "kind": 1024, "kindString": "Property", @@ -39522,7 +39691,7 @@ } }, { - "id": 1767, + "id": 1775, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -39542,7 +39711,7 @@ } }, { - "id": 1823, + "id": 1831, "name": "archived", "kind": 1024, "kindString": "Property", @@ -39562,7 +39731,7 @@ } }, { - "id": 1768, + "id": 1776, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -39582,7 +39751,7 @@ } }, { - "id": 1769, + "id": 1777, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -39602,7 +39771,7 @@ } }, { - "id": 1770, + "id": 1778, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -39622,7 +39791,7 @@ } }, { - "id": 1804, + "id": 1812, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -39642,7 +39811,7 @@ } }, { - "id": 2630, + "id": 2638, "name": "code_of_conduct", "kind": 1024, "kindString": "Property", @@ -39660,14 +39829,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2631, + "id": 2639, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2635, + "id": 2643, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -39696,7 +39865,7 @@ } }, { - "id": 2633, + "id": 2641, "name": "key", "kind": 1024, "kindString": "Property", @@ -39716,7 +39885,7 @@ } }, { - "id": 2634, + "id": 2642, "name": "name", "kind": 1024, "kindString": "Property", @@ -39736,7 +39905,7 @@ } }, { - "id": 2632, + "id": 2640, "name": "url", "kind": 1024, "kindString": "Property", @@ -39761,10 +39930,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2635, - 2633, - 2634, - 2632 + 2643, + 2641, + 2642, + 2640 ] } ] @@ -39772,7 +39941,7 @@ } }, { - "id": 1771, + "id": 1779, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -39792,7 +39961,7 @@ } }, { - "id": 1772, + "id": 1780, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -39812,7 +39981,7 @@ } }, { - "id": 1773, + "id": 1781, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -39832,7 +40001,7 @@ } }, { - "id": 1774, + "id": 1782, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -39852,7 +40021,7 @@ } }, { - "id": 1775, + "id": 1783, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -39872,7 +40041,7 @@ } }, { - "id": 1776, + "id": 1784, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -39892,7 +40061,7 @@ } }, { - "id": 1827, + "id": 1835, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -39912,7 +40081,7 @@ } }, { - "id": 1814, + "id": 1822, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -39932,7 +40101,7 @@ } }, { - "id": 2088, + "id": 2096, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -39953,7 +40122,7 @@ } }, { - "id": 1777, + "id": 1785, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -39973,7 +40142,7 @@ } }, { - "id": 1764, + "id": 1772, "name": "description", "kind": 1024, "kindString": "Property", @@ -40002,7 +40171,7 @@ } }, { - "id": 1824, + "id": 1832, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -40025,7 +40194,7 @@ } }, { - "id": 1778, + "id": 1786, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -40045,7 +40214,7 @@ } }, { - "id": 1779, + "id": 1787, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -40065,7 +40234,7 @@ } }, { - "id": 1765, + "id": 1773, "name": "fork", "kind": 1024, "kindString": "Property", @@ -40085,7 +40254,7 @@ } }, { - "id": 2625, + "id": 2633, "name": "forks", "kind": 1024, "kindString": "Property", @@ -40105,7 +40274,7 @@ } }, { - "id": 1810, + "id": 1818, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -40125,7 +40294,7 @@ } }, { - "id": 1780, + "id": 1788, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -40145,7 +40314,7 @@ } }, { - "id": 1738, + "id": 1746, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -40165,7 +40334,7 @@ } }, { - "id": 1781, + "id": 1789, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -40185,7 +40354,7 @@ } }, { - "id": 1782, + "id": 1790, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -40205,7 +40374,7 @@ } }, { - "id": 1783, + "id": 1791, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -40225,7 +40394,7 @@ } }, { - "id": 1784, + "id": 1792, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -40245,7 +40414,7 @@ } }, { - "id": 1822, + "id": 1830, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -40265,7 +40434,7 @@ } }, { - "id": 1818, + "id": 1826, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -40285,7 +40454,7 @@ } }, { - "id": 1821, + "id": 1829, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -40305,7 +40474,7 @@ } }, { - "id": 1819, + "id": 1827, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -40325,7 +40494,7 @@ } }, { - "id": 1820, + "id": 1828, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -40345,7 +40514,7 @@ } }, { - "id": 1808, + "id": 1816, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -40374,7 +40543,7 @@ } }, { - "id": 1806, + "id": 1814, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -40394,7 +40563,7 @@ } }, { - "id": 1763, + "id": 1771, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -40414,7 +40583,7 @@ } }, { - "id": 1735, + "id": 1743, "name": "id", "kind": 1024, "kindString": "Property", @@ -40434,7 +40603,7 @@ } }, { - "id": 1816, + "id": 1824, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -40455,7 +40624,7 @@ } }, { - "id": 1785, + "id": 1793, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -40475,7 +40644,7 @@ } }, { - "id": 1786, + "id": 1794, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -40495,7 +40664,7 @@ } }, { - "id": 1787, + "id": 1795, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -40515,7 +40684,7 @@ } }, { - "id": 1788, + "id": 1796, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -40535,7 +40704,7 @@ } }, { - "id": 1789, + "id": 1797, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -40555,7 +40724,7 @@ } }, { - "id": 1809, + "id": 1817, "name": "language", "kind": 1024, "kindString": "Property", @@ -40584,7 +40753,7 @@ } }, { - "id": 1790, + "id": 1798, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -40604,7 +40773,7 @@ } }, { - "id": 2092, + "id": 2100, "name": "license", "kind": 1024, "kindString": "Property", @@ -40628,14 +40797,14 @@ { "type": "reflection", "declaration": { - "id": 2093, + "id": 2101, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2099, + "id": 2107, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -40656,7 +40825,7 @@ } }, { - "id": 2094, + "id": 2102, "name": "key", "kind": 1024, "kindString": "Property", @@ -40676,7 +40845,7 @@ } }, { - "id": 2095, + "id": 2103, "name": "name", "kind": 1024, "kindString": "Property", @@ -40696,7 +40865,7 @@ } }, { - "id": 2098, + "id": 2106, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40716,7 +40885,7 @@ } }, { - "id": 2097, + "id": 2105, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -40745,7 +40914,7 @@ } }, { - "id": 2096, + "id": 2104, "name": "url", "kind": 1024, "kindString": "Property", @@ -40779,12 +40948,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2099, - 2094, - 2095, - 2098, - 2097, - 2096 + 2107, + 2102, + 2103, + 2106, + 2105, + 2104 ] } ] @@ -40794,7 +40963,7 @@ } }, { - "id": 2626, + "id": 2634, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -40815,7 +40984,7 @@ } }, { - "id": 1791, + "id": 1799, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -40835,7 +41004,7 @@ } }, { - "id": 1792, + "id": 1800, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -40855,7 +41024,7 @@ } }, { - "id": 1805, + "id": 1813, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -40884,7 +41053,7 @@ } }, { - "id": 1737, + "id": 1745, "name": "name", "kind": 1024, "kindString": "Property", @@ -40904,7 +41073,7 @@ } }, { - "id": 2091, + "id": 2099, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -40924,7 +41093,7 @@ } }, { - "id": 1736, + "id": 1744, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40944,7 +41113,7 @@ } }, { - "id": 1793, + "id": 1801, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -40964,7 +41133,7 @@ } }, { - "id": 2627, + "id": 2635, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -40984,7 +41153,7 @@ } }, { - "id": 1815, + "id": 1823, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -41004,7 +41173,7 @@ } }, { - "id": 2100, + "id": 2108, "name": "organization", "kind": 1024, "kindString": "Property", @@ -41029,14 +41198,14 @@ { "type": "reflection", "declaration": { - "id": 2101, + "id": 2109, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2107, + "id": 2115, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -41056,7 +41225,7 @@ } }, { - "id": 2103, + "id": 2111, "name": "email", "kind": 1024, "kindString": "Property", @@ -41086,7 +41255,7 @@ } }, { - "id": 2118, + "id": 2126, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -41106,7 +41275,7 @@ } }, { - "id": 2111, + "id": 2119, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -41126,7 +41295,7 @@ } }, { - "id": 2112, + "id": 2120, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -41146,7 +41315,7 @@ } }, { - "id": 2113, + "id": 2121, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -41166,7 +41335,7 @@ } }, { - "id": 2108, + "id": 2116, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -41195,7 +41364,7 @@ } }, { - "id": 2110, + "id": 2118, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -41215,7 +41384,7 @@ } }, { - "id": 2105, + "id": 2113, "name": "id", "kind": 1024, "kindString": "Property", @@ -41235,7 +41404,7 @@ } }, { - "id": 2104, + "id": 2112, "name": "login", "kind": 1024, "kindString": "Property", @@ -41255,7 +41424,7 @@ } }, { - "id": 2102, + "id": 2110, "name": "name", "kind": 1024, "kindString": "Property", @@ -41285,7 +41454,7 @@ } }, { - "id": 2106, + "id": 2114, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -41305,7 +41474,7 @@ } }, { - "id": 2116, + "id": 2124, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -41325,7 +41494,7 @@ } }, { - "id": 2119, + "id": 2127, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -41345,7 +41514,7 @@ } }, { - "id": 2117, + "id": 2125, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -41365,7 +41534,7 @@ } }, { - "id": 2121, + "id": 2129, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -41385,7 +41554,7 @@ } }, { - "id": 2122, + "id": 2130, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -41406,7 +41575,7 @@ } }, { - "id": 2114, + "id": 2122, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -41426,7 +41595,7 @@ } }, { - "id": 2115, + "id": 2123, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -41446,7 +41615,7 @@ } }, { - "id": 2120, + "id": 2128, "name": "type", "kind": 1024, "kindString": "Property", @@ -41466,7 +41635,7 @@ } }, { - "id": 2109, + "id": 2117, "name": "url", "kind": 1024, "kindString": "Property", @@ -41491,27 +41660,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2107, - 2103, - 2118, + 2115, 2111, - 2112, - 2113, - 2108, - 2110, - 2105, - 2104, - 2102, - 2106, - 2116, + 2126, 2119, - 2117, + 2120, 2121, - 2122, + 2116, + 2118, + 2113, + 2112, + 2110, 2114, - 2115, - 2120, - 2109 + 2124, + 2127, + 2125, + 2129, + 2130, + 2122, + 2123, + 2128, + 2117 ] } ] @@ -41521,7 +41690,7 @@ } }, { - "id": 1739, + "id": 1747, "name": "owner", "kind": 1024, "kindString": "Property", @@ -41545,14 +41714,14 @@ { "type": "reflection", "declaration": { - "id": 1740, + "id": 1748, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1746, + "id": 1754, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -41572,7 +41741,7 @@ } }, { - "id": 1742, + "id": 1750, "name": "email", "kind": 1024, "kindString": "Property", @@ -41602,7 +41771,7 @@ } }, { - "id": 1757, + "id": 1765, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -41622,7 +41791,7 @@ } }, { - "id": 1750, + "id": 1758, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -41642,7 +41811,7 @@ } }, { - "id": 1751, + "id": 1759, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -41662,7 +41831,7 @@ } }, { - "id": 1752, + "id": 1760, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -41682,7 +41851,7 @@ } }, { - "id": 1747, + "id": 1755, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -41711,7 +41880,7 @@ } }, { - "id": 1749, + "id": 1757, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -41731,7 +41900,7 @@ } }, { - "id": 1744, + "id": 1752, "name": "id", "kind": 1024, "kindString": "Property", @@ -41751,7 +41920,7 @@ } }, { - "id": 1743, + "id": 1751, "name": "login", "kind": 1024, "kindString": "Property", @@ -41771,7 +41940,7 @@ } }, { - "id": 1741, + "id": 1749, "name": "name", "kind": 1024, "kindString": "Property", @@ -41801,7 +41970,7 @@ } }, { - "id": 1745, + "id": 1753, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -41821,7 +41990,7 @@ } }, { - "id": 1755, + "id": 1763, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -41841,7 +42010,7 @@ } }, { - "id": 1758, + "id": 1766, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -41861,7 +42030,7 @@ } }, { - "id": 1756, + "id": 1764, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -41881,7 +42050,7 @@ } }, { - "id": 1760, + "id": 1768, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -41901,7 +42070,7 @@ } }, { - "id": 1761, + "id": 1769, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -41922,7 +42091,7 @@ } }, { - "id": 1753, + "id": 1761, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -41942,7 +42111,7 @@ } }, { - "id": 1754, + "id": 1762, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -41962,7 +42131,7 @@ } }, { - "id": 1759, + "id": 1767, "name": "type", "kind": 1024, "kindString": "Property", @@ -41982,7 +42151,7 @@ } }, { - "id": 1748, + "id": 1756, "name": "url", "kind": 1024, "kindString": "Property", @@ -42007,27 +42176,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1746, - 1742, - 1757, + 1754, 1750, - 1751, - 1752, - 1747, - 1749, - 1744, - 1743, - 1741, - 1745, - 1755, + 1765, 1758, - 1756, + 1759, 1760, - 1761, + 1755, + 1757, + 1752, + 1751, + 1749, 1753, - 1754, - 1759, - 1748 + 1763, + 1766, + 1764, + 1768, + 1769, + 1761, + 1762, + 1767, + 1756 ] } ] @@ -42037,7 +42206,7 @@ } }, { - "id": 2123, + "id": 2131, "name": "parent", "kind": 1024, "kindString": "Property", @@ -42055,14 +42224,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2124, + "id": 2132, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2367, + "id": 2375, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -42086,7 +42255,7 @@ } }, { - "id": 2258, + "id": 2266, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -42110,7 +42279,7 @@ } }, { - "id": 2365, + "id": 2373, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -42134,7 +42303,7 @@ } }, { - "id": 2196, + "id": 2204, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -42154,7 +42323,7 @@ } }, { - "id": 2252, + "id": 2260, "name": "archived", "kind": 1024, "kindString": "Property", @@ -42177,7 +42346,7 @@ } }, { - "id": 2197, + "id": 2205, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -42197,7 +42366,7 @@ } }, { - "id": 2198, + "id": 2206, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -42217,7 +42386,7 @@ } }, { - "id": 2199, + "id": 2207, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -42237,7 +42406,7 @@ } }, { - "id": 2233, + "id": 2241, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -42257,7 +42426,7 @@ } }, { - "id": 2200, + "id": 2208, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -42277,7 +42446,7 @@ } }, { - "id": 2201, + "id": 2209, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -42297,7 +42466,7 @@ } }, { - "id": 2202, + "id": 2210, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -42317,7 +42486,7 @@ } }, { - "id": 2203, + "id": 2211, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -42337,7 +42506,7 @@ } }, { - "id": 2204, + "id": 2212, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -42357,7 +42526,7 @@ } }, { - "id": 2205, + "id": 2213, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -42377,7 +42546,7 @@ } }, { - "id": 2256, + "id": 2264, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -42406,7 +42575,7 @@ } }, { - "id": 2243, + "id": 2251, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -42429,7 +42598,7 @@ } }, { - "id": 2366, + "id": 2374, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -42453,7 +42622,7 @@ } }, { - "id": 2206, + "id": 2214, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -42473,7 +42642,7 @@ } }, { - "id": 2193, + "id": 2201, "name": "description", "kind": 1024, "kindString": "Property", @@ -42502,7 +42671,7 @@ } }, { - "id": 2253, + "id": 2261, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -42525,7 +42694,7 @@ } }, { - "id": 2207, + "id": 2215, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -42545,7 +42714,7 @@ } }, { - "id": 2208, + "id": 2216, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -42565,7 +42734,7 @@ } }, { - "id": 2194, + "id": 2202, "name": "fork", "kind": 1024, "kindString": "Property", @@ -42585,7 +42754,7 @@ } }, { - "id": 2160, + "id": 2168, "name": "forks", "kind": 1024, "kindString": "Property", @@ -42605,7 +42774,7 @@ } }, { - "id": 2239, + "id": 2247, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -42625,7 +42794,7 @@ } }, { - "id": 2209, + "id": 2217, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -42645,7 +42814,7 @@ } }, { - "id": 2128, + "id": 2136, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -42665,7 +42834,7 @@ } }, { - "id": 2210, + "id": 2218, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -42685,7 +42854,7 @@ } }, { - "id": 2211, + "id": 2219, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -42705,7 +42874,7 @@ } }, { - "id": 2212, + "id": 2220, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -42725,7 +42894,7 @@ } }, { - "id": 2213, + "id": 2221, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -42745,7 +42914,7 @@ } }, { - "id": 2251, + "id": 2259, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -42768,7 +42937,7 @@ } }, { - "id": 2247, + "id": 2255, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -42791,7 +42960,7 @@ } }, { - "id": 2250, + "id": 2258, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -42811,7 +42980,7 @@ } }, { - "id": 2248, + "id": 2256, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -42834,7 +43003,7 @@ } }, { - "id": 2249, + "id": 2257, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -42857,7 +43026,7 @@ } }, { - "id": 2237, + "id": 2245, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -42886,7 +43055,7 @@ } }, { - "id": 2235, + "id": 2243, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -42906,7 +43075,7 @@ } }, { - "id": 2192, + "id": 2200, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -42926,7 +43095,7 @@ } }, { - "id": 2125, + "id": 2133, "name": "id", "kind": 1024, "kindString": "Property", @@ -42949,7 +43118,7 @@ } }, { - "id": 2245, + "id": 2253, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -42973,7 +43142,7 @@ } }, { - "id": 2214, + "id": 2222, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -42993,7 +43162,7 @@ } }, { - "id": 2215, + "id": 2223, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -43013,7 +43182,7 @@ } }, { - "id": 2216, + "id": 2224, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -43033,7 +43202,7 @@ } }, { - "id": 2217, + "id": 2225, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -43053,7 +43222,7 @@ } }, { - "id": 2218, + "id": 2226, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -43073,7 +43242,7 @@ } }, { - "id": 2238, + "id": 2246, "name": "language", "kind": 1024, "kindString": "Property", @@ -43102,7 +43271,7 @@ } }, { - "id": 2219, + "id": 2227, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -43122,7 +43291,7 @@ } }, { - "id": 2129, + "id": 2137, "name": "license", "kind": 1024, "kindString": "Property", @@ -43146,14 +43315,14 @@ { "type": "reflection", "declaration": { - "id": 2130, + "id": 2138, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2136, + "id": 2144, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -43174,7 +43343,7 @@ } }, { - "id": 2131, + "id": 2139, "name": "key", "kind": 1024, "kindString": "Property", @@ -43194,7 +43363,7 @@ } }, { - "id": 2132, + "id": 2140, "name": "name", "kind": 1024, "kindString": "Property", @@ -43214,7 +43383,7 @@ } }, { - "id": 2135, + "id": 2143, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43234,7 +43403,7 @@ } }, { - "id": 2134, + "id": 2142, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -43263,7 +43432,7 @@ } }, { - "id": 2133, + "id": 2141, "name": "url", "kind": 1024, "kindString": "Property", @@ -43297,12 +43466,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2136, - 2131, - 2132, - 2135, - 2134, - 2133 + 2144, + 2139, + 2140, + 2143, + 2142, + 2141 ] } ] @@ -43312,7 +43481,7 @@ } }, { - "id": 2372, + "id": 2380, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -43333,7 +43502,7 @@ } }, { - "id": 2220, + "id": 2228, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -43353,7 +43522,7 @@ } }, { - "id": 2221, + "id": 2229, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -43373,7 +43542,7 @@ } }, { - "id": 2234, + "id": 2242, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -43402,7 +43571,7 @@ } }, { - "id": 2127, + "id": 2135, "name": "name", "kind": 1024, "kindString": "Property", @@ -43425,7 +43594,7 @@ } }, { - "id": 2369, + "id": 2377, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -43446,7 +43615,7 @@ } }, { - "id": 2126, + "id": 2134, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43466,7 +43635,7 @@ } }, { - "id": 2222, + "id": 2230, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -43486,7 +43655,7 @@ } }, { - "id": 2370, + "id": 2378, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -43506,7 +43675,7 @@ } }, { - "id": 2244, + "id": 2252, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -43526,7 +43695,7 @@ } }, { - "id": 2137, + "id": 2145, "name": "organization", "kind": 1024, "kindString": "Property", @@ -43551,14 +43720,14 @@ { "type": "reflection", "declaration": { - "id": 2138, + "id": 2146, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2144, + "id": 2152, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -43578,7 +43747,7 @@ } }, { - "id": 2140, + "id": 2148, "name": "email", "kind": 1024, "kindString": "Property", @@ -43608,7 +43777,7 @@ } }, { - "id": 2155, + "id": 2163, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -43628,7 +43797,7 @@ } }, { - "id": 2148, + "id": 2156, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -43648,7 +43817,7 @@ } }, { - "id": 2149, + "id": 2157, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -43668,7 +43837,7 @@ } }, { - "id": 2150, + "id": 2158, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -43688,7 +43857,7 @@ } }, { - "id": 2145, + "id": 2153, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -43717,7 +43886,7 @@ } }, { - "id": 2147, + "id": 2155, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -43737,7 +43906,7 @@ } }, { - "id": 2142, + "id": 2150, "name": "id", "kind": 1024, "kindString": "Property", @@ -43757,7 +43926,7 @@ } }, { - "id": 2141, + "id": 2149, "name": "login", "kind": 1024, "kindString": "Property", @@ -43777,7 +43946,7 @@ } }, { - "id": 2139, + "id": 2147, "name": "name", "kind": 1024, "kindString": "Property", @@ -43807,7 +43976,7 @@ } }, { - "id": 2143, + "id": 2151, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43827,7 +43996,7 @@ } }, { - "id": 2153, + "id": 2161, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -43847,7 +44016,7 @@ } }, { - "id": 2156, + "id": 2164, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -43867,7 +44036,7 @@ } }, { - "id": 2154, + "id": 2162, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -43887,7 +44056,7 @@ } }, { - "id": 2158, + "id": 2166, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -43907,7 +44076,7 @@ } }, { - "id": 2159, + "id": 2167, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -43928,7 +44097,7 @@ } }, { - "id": 2151, + "id": 2159, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -43948,7 +44117,7 @@ } }, { - "id": 2152, + "id": 2160, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -43968,7 +44137,7 @@ } }, { - "id": 2157, + "id": 2165, "name": "type", "kind": 1024, "kindString": "Property", @@ -43988,7 +44157,7 @@ } }, { - "id": 2146, + "id": 2154, "name": "url", "kind": 1024, "kindString": "Property", @@ -44013,27 +44182,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2144, - 2140, - 2155, + 2152, 2148, - 2149, - 2150, - 2145, - 2147, - 2142, - 2141, - 2139, - 2143, - 2153, + 2163, 2156, - 2154, + 2157, 2158, - 2159, + 2153, + 2155, + 2150, + 2149, + 2147, 2151, - 2152, - 2157, - 2146 + 2161, + 2164, + 2162, + 2166, + 2167, + 2159, + 2160, + 2165, + 2154 ] } ] @@ -44043,7 +44212,7 @@ } }, { - "id": 2168, + "id": 2176, "name": "owner", "kind": 1024, "kindString": "Property", @@ -44067,14 +44236,14 @@ { "type": "reflection", "declaration": { - "id": 2169, + "id": 2177, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2175, + "id": 2183, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -44094,7 +44263,7 @@ } }, { - "id": 2171, + "id": 2179, "name": "email", "kind": 1024, "kindString": "Property", @@ -44124,7 +44293,7 @@ } }, { - "id": 2186, + "id": 2194, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -44144,7 +44313,7 @@ } }, { - "id": 2179, + "id": 2187, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -44164,7 +44333,7 @@ } }, { - "id": 2180, + "id": 2188, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -44184,7 +44353,7 @@ } }, { - "id": 2181, + "id": 2189, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -44204,7 +44373,7 @@ } }, { - "id": 2176, + "id": 2184, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -44233,7 +44402,7 @@ } }, { - "id": 2178, + "id": 2186, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -44253,7 +44422,7 @@ } }, { - "id": 2173, + "id": 2181, "name": "id", "kind": 1024, "kindString": "Property", @@ -44273,7 +44442,7 @@ } }, { - "id": 2172, + "id": 2180, "name": "login", "kind": 1024, "kindString": "Property", @@ -44293,7 +44462,7 @@ } }, { - "id": 2170, + "id": 2178, "name": "name", "kind": 1024, "kindString": "Property", @@ -44323,7 +44492,7 @@ } }, { - "id": 2174, + "id": 2182, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -44343,7 +44512,7 @@ } }, { - "id": 2184, + "id": 2192, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -44363,7 +44532,7 @@ } }, { - "id": 2187, + "id": 2195, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -44383,7 +44552,7 @@ } }, { - "id": 2185, + "id": 2193, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -44403,7 +44572,7 @@ } }, { - "id": 2189, + "id": 2197, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -44423,7 +44592,7 @@ } }, { - "id": 2190, + "id": 2198, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -44444,7 +44613,7 @@ } }, { - "id": 2182, + "id": 2190, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -44464,7 +44633,7 @@ } }, { - "id": 2183, + "id": 2191, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -44484,7 +44653,7 @@ } }, { - "id": 2188, + "id": 2196, "name": "type", "kind": 1024, "kindString": "Property", @@ -44504,7 +44673,7 @@ } }, { - "id": 2177, + "id": 2185, "name": "url", "kind": 1024, "kindString": "Property", @@ -44529,27 +44698,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2175, - 2171, - 2186, + 2183, 2179, - 2180, - 2181, - 2176, - 2178, - 2173, - 2172, - 2170, - 2174, - 2184, + 2194, 2187, - 2185, + 2188, 2189, - 2190, + 2184, + 2186, + 2181, + 2180, + 2178, 2182, - 2183, - 2188, - 2177 + 2192, + 2195, + 2193, + 2197, + 2198, + 2190, + 2191, + 2196, + 2185 ] } ] @@ -44559,7 +44728,7 @@ } }, { - "id": 2161, + "id": 2169, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -44577,14 +44746,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2162, + "id": 2170, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2163, + "id": 2171, "name": "admin", "kind": 1024, "kindString": "Property", @@ -44604,7 +44773,7 @@ } }, { - "id": 2167, + "id": 2175, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -44625,7 +44794,7 @@ } }, { - "id": 2164, + "id": 2172, "name": "pull", "kind": 1024, "kindString": "Property", @@ -44645,7 +44814,7 @@ } }, { - "id": 2166, + "id": 2174, "name": "push", "kind": 1024, "kindString": "Property", @@ -44665,7 +44834,7 @@ } }, { - "id": 2165, + "id": 2173, "name": "triage", "kind": 1024, "kindString": "Property", @@ -44691,11 +44860,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2163, - 2167, - 2164, - 2166, - 2165 + 2171, + 2175, + 2172, + 2174, + 2173 ] } ] @@ -44703,7 +44872,7 @@ } }, { - "id": 2191, + "id": 2199, "name": "private", "kind": 1024, "kindString": "Property", @@ -44726,7 +44895,7 @@ } }, { - "id": 2223, + "id": 2231, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -44746,7 +44915,7 @@ } }, { - "id": 2255, + "id": 2263, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -44775,7 +44944,7 @@ } }, { - "id": 2224, + "id": 2232, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -44795,7 +44964,7 @@ } }, { - "id": 2242, + "id": 2250, "name": "size", "kind": 1024, "kindString": "Property", @@ -44815,7 +44984,7 @@ } }, { - "id": 2225, + "id": 2233, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -44835,7 +45004,7 @@ } }, { - "id": 2240, + "id": 2248, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -44855,7 +45024,7 @@ } }, { - "id": 2226, + "id": 2234, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -44875,7 +45044,7 @@ } }, { - "id": 2373, + "id": 2381, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -44896,7 +45065,7 @@ } }, { - "id": 2227, + "id": 2235, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -44916,7 +45085,7 @@ } }, { - "id": 2368, + "id": 2376, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -44937,7 +45106,7 @@ } }, { - "id": 2228, + "id": 2236, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -44957,7 +45126,7 @@ } }, { - "id": 2229, + "id": 2237, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -44977,7 +45146,7 @@ } }, { - "id": 2236, + "id": 2244, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -44997,7 +45166,7 @@ } }, { - "id": 2230, + "id": 2238, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -45017,7 +45186,7 @@ } }, { - "id": 2231, + "id": 2239, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -45037,7 +45206,7 @@ } }, { - "id": 2364, + "id": 2372, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -45058,7 +45227,7 @@ } }, { - "id": 2259, + "id": 2267, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -45083,14 +45252,14 @@ { "type": "reflection", "declaration": { - "id": 2260, + "id": 2268, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2361, + "id": 2369, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -45111,7 +45280,7 @@ } }, { - "id": 2357, + "id": 2365, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -45132,7 +45301,7 @@ } }, { - "id": 2359, + "id": 2367, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -45153,7 +45322,7 @@ } }, { - "id": 2290, + "id": 2298, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -45174,7 +45343,7 @@ } }, { - "id": 2346, + "id": 2354, "name": "archived", "kind": 1024, "kindString": "Property", @@ -45195,7 +45364,7 @@ } }, { - "id": 2291, + "id": 2299, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -45216,7 +45385,7 @@ } }, { - "id": 2292, + "id": 2300, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -45237,7 +45406,7 @@ } }, { - "id": 2293, + "id": 2301, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -45258,7 +45427,7 @@ } }, { - "id": 2327, + "id": 2335, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -45279,7 +45448,7 @@ } }, { - "id": 2294, + "id": 2302, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -45300,7 +45469,7 @@ } }, { - "id": 2295, + "id": 2303, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -45321,7 +45490,7 @@ } }, { - "id": 2296, + "id": 2304, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -45342,7 +45511,7 @@ } }, { - "id": 2297, + "id": 2305, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -45363,7 +45532,7 @@ } }, { - "id": 2298, + "id": 2306, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -45384,7 +45553,7 @@ } }, { - "id": 2299, + "id": 2307, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -45405,7 +45574,7 @@ } }, { - "id": 2350, + "id": 2358, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -45426,7 +45595,7 @@ } }, { - "id": 2337, + "id": 2345, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -45447,7 +45616,7 @@ } }, { - "id": 2360, + "id": 2368, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -45468,7 +45637,7 @@ } }, { - "id": 2300, + "id": 2308, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -45489,7 +45658,7 @@ } }, { - "id": 2287, + "id": 2295, "name": "description", "kind": 1024, "kindString": "Property", @@ -45510,7 +45679,7 @@ } }, { - "id": 2347, + "id": 2355, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -45531,7 +45700,7 @@ } }, { - "id": 2301, + "id": 2309, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -45552,7 +45721,7 @@ } }, { - "id": 2302, + "id": 2310, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -45573,7 +45742,7 @@ } }, { - "id": 2288, + "id": 2296, "name": "fork", "kind": 1024, "kindString": "Property", @@ -45594,7 +45763,7 @@ } }, { - "id": 2333, + "id": 2341, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -45615,7 +45784,7 @@ } }, { - "id": 2303, + "id": 2311, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -45636,7 +45805,7 @@ } }, { - "id": 2264, + "id": 2272, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -45657,7 +45826,7 @@ } }, { - "id": 2304, + "id": 2312, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -45678,7 +45847,7 @@ } }, { - "id": 2305, + "id": 2313, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -45699,7 +45868,7 @@ } }, { - "id": 2306, + "id": 2314, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -45720,7 +45889,7 @@ } }, { - "id": 2307, + "id": 2315, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -45741,7 +45910,7 @@ } }, { - "id": 2345, + "id": 2353, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -45762,7 +45931,7 @@ } }, { - "id": 2341, + "id": 2349, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -45783,7 +45952,7 @@ } }, { - "id": 2344, + "id": 2352, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -45804,7 +45973,7 @@ } }, { - "id": 2342, + "id": 2350, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -45825,7 +45994,7 @@ } }, { - "id": 2343, + "id": 2351, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -45846,7 +46015,7 @@ } }, { - "id": 2331, + "id": 2339, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -45867,7 +46036,7 @@ } }, { - "id": 2329, + "id": 2337, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -45888,7 +46057,7 @@ } }, { - "id": 2286, + "id": 2294, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -45909,7 +46078,7 @@ } }, { - "id": 2261, + "id": 2269, "name": "id", "kind": 1024, "kindString": "Property", @@ -45930,7 +46099,7 @@ } }, { - "id": 2339, + "id": 2347, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -45951,7 +46120,7 @@ } }, { - "id": 2308, + "id": 2316, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -45972,7 +46141,7 @@ } }, { - "id": 2309, + "id": 2317, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -45993,7 +46162,7 @@ } }, { - "id": 2310, + "id": 2318, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -46014,7 +46183,7 @@ } }, { - "id": 2311, + "id": 2319, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -46035,7 +46204,7 @@ } }, { - "id": 2312, + "id": 2320, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -46056,7 +46225,7 @@ } }, { - "id": 2332, + "id": 2340, "name": "language", "kind": 1024, "kindString": "Property", @@ -46077,7 +46246,7 @@ } }, { - "id": 2313, + "id": 2321, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -46098,7 +46267,7 @@ } }, { - "id": 2314, + "id": 2322, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -46119,7 +46288,7 @@ } }, { - "id": 2315, + "id": 2323, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -46140,7 +46309,7 @@ } }, { - "id": 2328, + "id": 2336, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -46161,7 +46330,7 @@ } }, { - "id": 2263, + "id": 2271, "name": "name", "kind": 1024, "kindString": "Property", @@ -46182,7 +46351,7 @@ } }, { - "id": 2363, + "id": 2371, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -46203,7 +46372,7 @@ } }, { - "id": 2262, + "id": 2270, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -46224,7 +46393,7 @@ } }, { - "id": 2316, + "id": 2324, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -46245,7 +46414,7 @@ } }, { - "id": 2338, + "id": 2346, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -46266,7 +46435,7 @@ } }, { - "id": 2265, + "id": 2273, "name": "owner", "kind": 1024, "kindString": "Property", @@ -46284,14 +46453,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2266, + "id": 2274, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2270, + "id": 2278, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -46312,7 +46481,7 @@ } }, { - "id": 2281, + "id": 2289, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -46333,7 +46502,7 @@ } }, { - "id": 2274, + "id": 2282, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -46354,7 +46523,7 @@ } }, { - "id": 2275, + "id": 2283, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -46375,7 +46544,7 @@ } }, { - "id": 2276, + "id": 2284, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -46396,7 +46565,7 @@ } }, { - "id": 2271, + "id": 2279, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -46417,7 +46586,7 @@ } }, { - "id": 2273, + "id": 2281, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -46438,7 +46607,7 @@ } }, { - "id": 2268, + "id": 2276, "name": "id", "kind": 1024, "kindString": "Property", @@ -46459,7 +46628,7 @@ } }, { - "id": 2267, + "id": 2275, "name": "login", "kind": 1024, "kindString": "Property", @@ -46480,7 +46649,7 @@ } }, { - "id": 2269, + "id": 2277, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -46501,7 +46670,7 @@ } }, { - "id": 2279, + "id": 2287, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -46522,7 +46691,7 @@ } }, { - "id": 2282, + "id": 2290, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -46543,7 +46712,7 @@ } }, { - "id": 2280, + "id": 2288, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -46564,7 +46733,7 @@ } }, { - "id": 2284, + "id": 2292, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -46585,7 +46754,7 @@ } }, { - "id": 2277, + "id": 2285, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -46606,7 +46775,7 @@ } }, { - "id": 2278, + "id": 2286, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -46627,7 +46796,7 @@ } }, { - "id": 2283, + "id": 2291, "name": "type", "kind": 1024, "kindString": "Property", @@ -46648,7 +46817,7 @@ } }, { - "id": 2272, + "id": 2280, "name": "url", "kind": 1024, "kindString": "Property", @@ -46674,24 +46843,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2270, - 2281, - 2274, - 2275, - 2276, - 2271, - 2273, - 2268, - 2267, - 2269, - 2279, + 2278, + 2289, 2282, - 2280, + 2283, 2284, + 2279, + 2281, + 2276, + 2275, 2277, - 2278, - 2283, - 2272 + 2287, + 2290, + 2288, + 2292, + 2285, + 2286, + 2291, + 2280 ] } ] @@ -46699,7 +46868,7 @@ } }, { - "id": 2352, + "id": 2360, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -46717,14 +46886,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2353, + "id": 2361, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2354, + "id": 2362, "name": "admin", "kind": 1024, "kindString": "Property", @@ -46745,7 +46914,7 @@ } }, { - "id": 2356, + "id": 2364, "name": "pull", "kind": 1024, "kindString": "Property", @@ -46766,7 +46935,7 @@ } }, { - "id": 2355, + "id": 2363, "name": "push", "kind": 1024, "kindString": "Property", @@ -46792,9 +46961,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2354, - 2356, - 2355 + 2362, + 2364, + 2363 ] } ] @@ -46802,7 +46971,7 @@ } }, { - "id": 2285, + "id": 2293, "name": "private", "kind": 1024, "kindString": "Property", @@ -46823,7 +46992,7 @@ } }, { - "id": 2317, + "id": 2325, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -46844,7 +47013,7 @@ } }, { - "id": 2349, + "id": 2357, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -46865,7 +47034,7 @@ } }, { - "id": 2318, + "id": 2326, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -46886,7 +47055,7 @@ } }, { - "id": 2336, + "id": 2344, "name": "size", "kind": 1024, "kindString": "Property", @@ -46907,7 +47076,7 @@ } }, { - "id": 2319, + "id": 2327, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -46928,7 +47097,7 @@ } }, { - "id": 2334, + "id": 2342, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -46949,7 +47118,7 @@ } }, { - "id": 2320, + "id": 2328, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -46970,7 +47139,7 @@ } }, { - "id": 2321, + "id": 2329, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -46991,7 +47160,7 @@ } }, { - "id": 2362, + "id": 2370, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -47012,7 +47181,7 @@ } }, { - "id": 2322, + "id": 2330, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -47033,7 +47202,7 @@ } }, { - "id": 2323, + "id": 2331, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -47054,7 +47223,7 @@ } }, { - "id": 2330, + "id": 2338, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -47075,7 +47244,7 @@ } }, { - "id": 2324, + "id": 2332, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -47096,7 +47265,7 @@ } }, { - "id": 2325, + "id": 2333, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -47117,7 +47286,7 @@ } }, { - "id": 2358, + "id": 2366, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -47138,7 +47307,7 @@ } }, { - "id": 2340, + "id": 2348, "name": "topics", "kind": 1024, "kindString": "Property", @@ -47162,7 +47331,7 @@ } }, { - "id": 2326, + "id": 2334, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -47183,7 +47352,7 @@ } }, { - "id": 2351, + "id": 2359, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -47204,7 +47373,7 @@ } }, { - "id": 2289, + "id": 2297, "name": "url", "kind": 1024, "kindString": "Property", @@ -47225,7 +47394,7 @@ } }, { - "id": 2348, + "id": 2356, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -47246,7 +47415,7 @@ } }, { - "id": 2335, + "id": 2343, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -47272,86 +47441,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2361, - 2357, - 2359, - 2290, - 2346, - 2291, - 2292, - 2293, - 2327, - 2294, - 2295, - 2296, - 2297, + 2369, + 2365, + 2367, 2298, + 2354, 2299, - 2350, - 2337, - 2360, 2300, - 2287, - 2347, 2301, + 2335, 2302, - 2288, - 2333, 2303, - 2264, 2304, 2305, 2306, 2307, + 2358, 2345, - 2341, - 2344, - 2342, - 2343, - 2331, - 2329, - 2286, - 2261, - 2339, + 2368, 2308, + 2295, + 2355, 2309, 2310, + 2296, + 2341, 2311, + 2272, 2312, - 2332, 2313, 2314, 2315, - 2328, - 2263, - 2363, - 2262, - 2316, - 2338, - 2265, + 2353, + 2349, 2352, - 2285, + 2350, + 2351, + 2339, + 2337, + 2294, + 2269, + 2347, + 2316, 2317, - 2349, 2318, - 2336, 2319, - 2334, 2320, + 2340, 2321, - 2362, 2322, 2323, - 2330, + 2336, + 2271, + 2371, + 2270, 2324, + 2346, + 2273, + 2360, + 2293, 2325, - 2358, - 2340, + 2357, 2326, - 2351, - 2289, + 2344, + 2327, + 2342, + 2328, + 2329, + 2370, + 2330, + 2331, + 2338, + 2332, + 2333, + 2366, 2348, - 2335 + 2334, + 2359, + 2297, + 2356, + 2343 ] } ] @@ -47361,7 +47530,7 @@ } }, { - "id": 2246, + "id": 2254, "name": "topics", "kind": 1024, "kindString": "Property", @@ -47385,7 +47554,7 @@ } }, { - "id": 2232, + "id": 2240, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -47405,7 +47574,7 @@ } }, { - "id": 2257, + "id": 2265, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -47434,7 +47603,7 @@ } }, { - "id": 2195, + "id": 2203, "name": "url", "kind": 1024, "kindString": "Property", @@ -47454,7 +47623,7 @@ } }, { - "id": 2254, + "id": 2262, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -47478,7 +47647,7 @@ } }, { - "id": 2371, + "id": 2379, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -47498,7 +47667,7 @@ } }, { - "id": 2241, + "id": 2249, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -47523,94 +47692,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2367, - 2258, - 2365, - 2196, - 2252, - 2197, - 2198, - 2199, - 2233, - 2200, - 2201, - 2202, - 2203, + 2375, + 2266, + 2373, 2204, + 2260, 2205, - 2256, - 2243, - 2366, 2206, - 2193, - 2253, 2207, + 2241, 2208, - 2194, - 2160, - 2239, 2209, - 2128, 2210, 2211, 2212, 2213, + 2264, 2251, - 2247, - 2250, - 2248, - 2249, - 2237, - 2235, - 2192, - 2125, - 2245, + 2374, 2214, + 2201, + 2261, 2215, 2216, + 2202, + 2168, + 2247, 2217, + 2136, 2218, - 2238, 2219, - 2129, - 2372, 2220, 2221, - 2234, - 2127, - 2369, - 2126, + 2259, + 2255, + 2258, + 2256, + 2257, + 2245, + 2243, + 2200, + 2133, + 2253, 2222, - 2370, - 2244, - 2137, - 2168, - 2161, - 2191, 2223, - 2255, 2224, - 2242, 2225, - 2240, 2226, - 2373, + 2246, 2227, - 2368, + 2137, + 2380, 2228, 2229, - 2236, + 2242, + 2135, + 2377, + 2134, 2230, + 2378, + 2252, + 2145, + 2176, + 2169, + 2199, 2231, - 2364, - 2259, - 2246, + 2263, 2232, - 2257, - 2195, + 2250, + 2233, + 2248, + 2234, + 2381, + 2235, + 2376, + 2236, + 2237, + 2244, + 2238, + 2239, + 2372, + 2267, 2254, - 2371, - 2241 + 2240, + 2265, + 2203, + 2262, + 2379, + 2249 ] } ] @@ -47618,7 +47787,7 @@ } }, { - "id": 1829, + "id": 1837, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -47636,14 +47805,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1830, + "id": 1838, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1831, + "id": 1839, "name": "admin", "kind": 1024, "kindString": "Property", @@ -47663,7 +47832,7 @@ } }, { - "id": 1832, + "id": 1840, "name": "pull", "kind": 1024, "kindString": "Property", @@ -47683,7 +47852,7 @@ } }, { - "id": 1833, + "id": 1841, "name": "push", "kind": 1024, "kindString": "Property", @@ -47708,9 +47877,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1831, - 1832, - 1833 + 1839, + 1840, + 1841 ] } ] @@ -47718,7 +47887,7 @@ } }, { - "id": 1762, + "id": 1770, "name": "private", "kind": 1024, "kindString": "Property", @@ -47738,7 +47907,7 @@ } }, { - "id": 1794, + "id": 1802, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -47758,7 +47927,7 @@ } }, { - "id": 1826, + "id": 1834, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -47778,7 +47947,7 @@ } }, { - "id": 1795, + "id": 1803, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -47798,7 +47967,7 @@ } }, { - "id": 2636, + "id": 2644, "name": "security_and_analysis", "kind": 1024, "kindString": "Property", @@ -47823,14 +47992,14 @@ { "type": "reflection", "declaration": { - "id": 2637, + "id": 2645, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2638, + "id": 2646, "name": "advanced_security", "kind": 1024, "kindString": "Property", @@ -47848,14 +48017,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2639, + "id": 2647, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2640, + "id": 2648, "name": "status", "kind": 1024, "kindString": "Property", @@ -47890,7 +48059,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2640 + 2648 ] } ] @@ -47898,7 +48067,7 @@ } }, { - "id": 2641, + "id": 2649, "name": "secret_scanning", "kind": 1024, "kindString": "Property", @@ -47916,14 +48085,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2642, + "id": 2650, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2643, + "id": 2651, "name": "status", "kind": 1024, "kindString": "Property", @@ -47958,7 +48127,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2643 + 2651 ] } ] @@ -47971,8 +48140,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2638, - 2641 + 2646, + 2649 ] } ] @@ -47982,7 +48151,7 @@ } }, { - "id": 1813, + "id": 1821, "name": "size", "kind": 1024, "kindString": "Property", @@ -48002,7 +48171,7 @@ } }, { - "id": 2374, + "id": 2382, "name": "source", "kind": 1024, "kindString": "Property", @@ -48020,14 +48189,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2375, + "id": 2383, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2618, + "id": 2626, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -48051,7 +48220,7 @@ } }, { - "id": 2509, + "id": 2517, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -48075,7 +48244,7 @@ } }, { - "id": 2616, + "id": 2624, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -48099,7 +48268,7 @@ } }, { - "id": 2447, + "id": 2455, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -48119,7 +48288,7 @@ } }, { - "id": 2503, + "id": 2511, "name": "archived", "kind": 1024, "kindString": "Property", @@ -48142,7 +48311,7 @@ } }, { - "id": 2448, + "id": 2456, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -48162,7 +48331,7 @@ } }, { - "id": 2449, + "id": 2457, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -48182,7 +48351,7 @@ } }, { - "id": 2450, + "id": 2458, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -48202,7 +48371,7 @@ } }, { - "id": 2484, + "id": 2492, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -48222,7 +48391,7 @@ } }, { - "id": 2451, + "id": 2459, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -48242,7 +48411,7 @@ } }, { - "id": 2452, + "id": 2460, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -48262,7 +48431,7 @@ } }, { - "id": 2453, + "id": 2461, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -48282,7 +48451,7 @@ } }, { - "id": 2454, + "id": 2462, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -48302,7 +48471,7 @@ } }, { - "id": 2455, + "id": 2463, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -48322,7 +48491,7 @@ } }, { - "id": 2456, + "id": 2464, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -48342,7 +48511,7 @@ } }, { - "id": 2507, + "id": 2515, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -48371,7 +48540,7 @@ } }, { - "id": 2494, + "id": 2502, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -48394,7 +48563,7 @@ } }, { - "id": 2617, + "id": 2625, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -48418,7 +48587,7 @@ } }, { - "id": 2457, + "id": 2465, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -48438,7 +48607,7 @@ } }, { - "id": 2444, + "id": 2452, "name": "description", "kind": 1024, "kindString": "Property", @@ -48467,7 +48636,7 @@ } }, { - "id": 2504, + "id": 2512, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -48490,7 +48659,7 @@ } }, { - "id": 2458, + "id": 2466, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -48510,7 +48679,7 @@ } }, { - "id": 2459, + "id": 2467, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -48530,7 +48699,7 @@ } }, { - "id": 2445, + "id": 2453, "name": "fork", "kind": 1024, "kindString": "Property", @@ -48550,7 +48719,7 @@ } }, { - "id": 2411, + "id": 2419, "name": "forks", "kind": 1024, "kindString": "Property", @@ -48570,7 +48739,7 @@ } }, { - "id": 2490, + "id": 2498, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -48590,7 +48759,7 @@ } }, { - "id": 2460, + "id": 2468, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -48610,7 +48779,7 @@ } }, { - "id": 2379, + "id": 2387, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -48630,7 +48799,7 @@ } }, { - "id": 2461, + "id": 2469, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -48650,7 +48819,7 @@ } }, { - "id": 2462, + "id": 2470, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -48670,7 +48839,7 @@ } }, { - "id": 2463, + "id": 2471, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -48690,7 +48859,7 @@ } }, { - "id": 2464, + "id": 2472, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -48710,7 +48879,7 @@ } }, { - "id": 2502, + "id": 2510, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -48733,7 +48902,7 @@ } }, { - "id": 2498, + "id": 2506, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -48756,7 +48925,7 @@ } }, { - "id": 2501, + "id": 2509, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -48776,7 +48945,7 @@ } }, { - "id": 2499, + "id": 2507, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -48799,7 +48968,7 @@ } }, { - "id": 2500, + "id": 2508, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -48822,7 +48991,7 @@ } }, { - "id": 2488, + "id": 2496, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -48851,7 +49020,7 @@ } }, { - "id": 2486, + "id": 2494, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -48871,7 +49040,7 @@ } }, { - "id": 2443, + "id": 2451, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -48891,7 +49060,7 @@ } }, { - "id": 2376, + "id": 2384, "name": "id", "kind": 1024, "kindString": "Property", @@ -48914,7 +49083,7 @@ } }, { - "id": 2496, + "id": 2504, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -48938,7 +49107,7 @@ } }, { - "id": 2465, + "id": 2473, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -48958,7 +49127,7 @@ } }, { - "id": 2466, + "id": 2474, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -48978,7 +49147,7 @@ } }, { - "id": 2467, + "id": 2475, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -48998,7 +49167,7 @@ } }, { - "id": 2468, + "id": 2476, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -49018,7 +49187,7 @@ } }, { - "id": 2469, + "id": 2477, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -49038,7 +49207,7 @@ } }, { - "id": 2489, + "id": 2497, "name": "language", "kind": 1024, "kindString": "Property", @@ -49067,7 +49236,7 @@ } }, { - "id": 2470, + "id": 2478, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -49087,7 +49256,7 @@ } }, { - "id": 2380, + "id": 2388, "name": "license", "kind": 1024, "kindString": "Property", @@ -49111,14 +49280,14 @@ { "type": "reflection", "declaration": { - "id": 2381, + "id": 2389, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2387, + "id": 2395, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -49139,7 +49308,7 @@ } }, { - "id": 2382, + "id": 2390, "name": "key", "kind": 1024, "kindString": "Property", @@ -49159,7 +49328,7 @@ } }, { - "id": 2383, + "id": 2391, "name": "name", "kind": 1024, "kindString": "Property", @@ -49179,7 +49348,7 @@ } }, { - "id": 2386, + "id": 2394, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49199,7 +49368,7 @@ } }, { - "id": 2385, + "id": 2393, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -49228,7 +49397,7 @@ } }, { - "id": 2384, + "id": 2392, "name": "url", "kind": 1024, "kindString": "Property", @@ -49262,12 +49431,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2387, - 2382, - 2383, - 2386, - 2385, - 2384 + 2395, + 2390, + 2391, + 2394, + 2393, + 2392 ] } ] @@ -49277,7 +49446,7 @@ } }, { - "id": 2623, + "id": 2631, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -49298,7 +49467,7 @@ } }, { - "id": 2471, + "id": 2479, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -49318,7 +49487,7 @@ } }, { - "id": 2472, + "id": 2480, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -49338,7 +49507,7 @@ } }, { - "id": 2485, + "id": 2493, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -49367,7 +49536,7 @@ } }, { - "id": 2378, + "id": 2386, "name": "name", "kind": 1024, "kindString": "Property", @@ -49390,7 +49559,7 @@ } }, { - "id": 2620, + "id": 2628, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -49411,7 +49580,7 @@ } }, { - "id": 2377, + "id": 2385, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49431,7 +49600,7 @@ } }, { - "id": 2473, + "id": 2481, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -49451,7 +49620,7 @@ } }, { - "id": 2621, + "id": 2629, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -49471,7 +49640,7 @@ } }, { - "id": 2495, + "id": 2503, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -49491,7 +49660,7 @@ } }, { - "id": 2388, + "id": 2396, "name": "organization", "kind": 1024, "kindString": "Property", @@ -49516,14 +49685,14 @@ { "type": "reflection", "declaration": { - "id": 2389, + "id": 2397, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2395, + "id": 2403, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -49543,7 +49712,7 @@ } }, { - "id": 2391, + "id": 2399, "name": "email", "kind": 1024, "kindString": "Property", @@ -49573,7 +49742,7 @@ } }, { - "id": 2406, + "id": 2414, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -49593,7 +49762,7 @@ } }, { - "id": 2399, + "id": 2407, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -49613,7 +49782,7 @@ } }, { - "id": 2400, + "id": 2408, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -49633,7 +49802,7 @@ } }, { - "id": 2401, + "id": 2409, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -49653,7 +49822,7 @@ } }, { - "id": 2396, + "id": 2404, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -49682,7 +49851,7 @@ } }, { - "id": 2398, + "id": 2406, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -49702,7 +49871,7 @@ } }, { - "id": 2393, + "id": 2401, "name": "id", "kind": 1024, "kindString": "Property", @@ -49722,7 +49891,7 @@ } }, { - "id": 2392, + "id": 2400, "name": "login", "kind": 1024, "kindString": "Property", @@ -49742,7 +49911,7 @@ } }, { - "id": 2390, + "id": 2398, "name": "name", "kind": 1024, "kindString": "Property", @@ -49772,7 +49941,7 @@ } }, { - "id": 2394, + "id": 2402, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49792,7 +49961,7 @@ } }, { - "id": 2404, + "id": 2412, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -49812,7 +49981,7 @@ } }, { - "id": 2407, + "id": 2415, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -49832,7 +50001,7 @@ } }, { - "id": 2405, + "id": 2413, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -49852,7 +50021,7 @@ } }, { - "id": 2409, + "id": 2417, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -49872,7 +50041,7 @@ } }, { - "id": 2410, + "id": 2418, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -49893,7 +50062,7 @@ } }, { - "id": 2402, + "id": 2410, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -49913,7 +50082,7 @@ } }, { - "id": 2403, + "id": 2411, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -49933,7 +50102,7 @@ } }, { - "id": 2408, + "id": 2416, "name": "type", "kind": 1024, "kindString": "Property", @@ -49953,7 +50122,7 @@ } }, { - "id": 2397, + "id": 2405, "name": "url", "kind": 1024, "kindString": "Property", @@ -49978,27 +50147,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2395, - 2391, - 2406, + 2403, 2399, - 2400, - 2401, - 2396, - 2398, - 2393, - 2392, - 2390, - 2394, - 2404, + 2414, 2407, - 2405, + 2408, 2409, - 2410, + 2404, + 2406, + 2401, + 2400, + 2398, 2402, - 2403, - 2408, - 2397 + 2412, + 2415, + 2413, + 2417, + 2418, + 2410, + 2411, + 2416, + 2405 ] } ] @@ -50008,7 +50177,7 @@ } }, { - "id": 2419, + "id": 2427, "name": "owner", "kind": 1024, "kindString": "Property", @@ -50032,14 +50201,14 @@ { "type": "reflection", "declaration": { - "id": 2420, + "id": 2428, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2426, + "id": 2434, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -50059,7 +50228,7 @@ } }, { - "id": 2422, + "id": 2430, "name": "email", "kind": 1024, "kindString": "Property", @@ -50089,7 +50258,7 @@ } }, { - "id": 2437, + "id": 2445, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -50109,7 +50278,7 @@ } }, { - "id": 2430, + "id": 2438, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -50129,7 +50298,7 @@ } }, { - "id": 2431, + "id": 2439, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -50149,7 +50318,7 @@ } }, { - "id": 2432, + "id": 2440, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -50169,7 +50338,7 @@ } }, { - "id": 2427, + "id": 2435, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -50198,7 +50367,7 @@ } }, { - "id": 2429, + "id": 2437, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -50218,7 +50387,7 @@ } }, { - "id": 2424, + "id": 2432, "name": "id", "kind": 1024, "kindString": "Property", @@ -50238,7 +50407,7 @@ } }, { - "id": 2423, + "id": 2431, "name": "login", "kind": 1024, "kindString": "Property", @@ -50258,7 +50427,7 @@ } }, { - "id": 2421, + "id": 2429, "name": "name", "kind": 1024, "kindString": "Property", @@ -50288,7 +50457,7 @@ } }, { - "id": 2425, + "id": 2433, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -50308,7 +50477,7 @@ } }, { - "id": 2435, + "id": 2443, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -50328,7 +50497,7 @@ } }, { - "id": 2438, + "id": 2446, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -50348,7 +50517,7 @@ } }, { - "id": 2436, + "id": 2444, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -50368,7 +50537,7 @@ } }, { - "id": 2440, + "id": 2448, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -50388,7 +50557,7 @@ } }, { - "id": 2441, + "id": 2449, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -50409,7 +50578,7 @@ } }, { - "id": 2433, + "id": 2441, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -50429,7 +50598,7 @@ } }, { - "id": 2434, + "id": 2442, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -50449,7 +50618,7 @@ } }, { - "id": 2439, + "id": 2447, "name": "type", "kind": 1024, "kindString": "Property", @@ -50469,7 +50638,7 @@ } }, { - "id": 2428, + "id": 2436, "name": "url", "kind": 1024, "kindString": "Property", @@ -50494,27 +50663,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2426, - 2422, - 2437, + 2434, 2430, - 2431, - 2432, - 2427, - 2429, - 2424, - 2423, - 2421, - 2425, - 2435, + 2445, 2438, - 2436, + 2439, 2440, - 2441, + 2435, + 2437, + 2432, + 2431, + 2429, 2433, - 2434, - 2439, - 2428 + 2443, + 2446, + 2444, + 2448, + 2449, + 2441, + 2442, + 2447, + 2436 ] } ] @@ -50524,7 +50693,7 @@ } }, { - "id": 2412, + "id": 2420, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -50542,14 +50711,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2413, + "id": 2421, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2414, + "id": 2422, "name": "admin", "kind": 1024, "kindString": "Property", @@ -50569,7 +50738,7 @@ } }, { - "id": 2418, + "id": 2426, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -50590,7 +50759,7 @@ } }, { - "id": 2415, + "id": 2423, "name": "pull", "kind": 1024, "kindString": "Property", @@ -50610,7 +50779,7 @@ } }, { - "id": 2417, + "id": 2425, "name": "push", "kind": 1024, "kindString": "Property", @@ -50630,7 +50799,7 @@ } }, { - "id": 2416, + "id": 2424, "name": "triage", "kind": 1024, "kindString": "Property", @@ -50656,11 +50825,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2414, - 2418, - 2415, - 2417, - 2416 + 2422, + 2426, + 2423, + 2425, + 2424 ] } ] @@ -50668,7 +50837,7 @@ } }, { - "id": 2442, + "id": 2450, "name": "private", "kind": 1024, "kindString": "Property", @@ -50691,7 +50860,7 @@ } }, { - "id": 2474, + "id": 2482, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -50711,7 +50880,7 @@ } }, { - "id": 2506, + "id": 2514, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -50740,7 +50909,7 @@ } }, { - "id": 2475, + "id": 2483, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -50760,7 +50929,7 @@ } }, { - "id": 2493, + "id": 2501, "name": "size", "kind": 1024, "kindString": "Property", @@ -50780,7 +50949,7 @@ } }, { - "id": 2476, + "id": 2484, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -50800,7 +50969,7 @@ } }, { - "id": 2491, + "id": 2499, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -50820,7 +50989,7 @@ } }, { - "id": 2477, + "id": 2485, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -50840,7 +51009,7 @@ } }, { - "id": 2624, + "id": 2632, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -50861,7 +51030,7 @@ } }, { - "id": 2478, + "id": 2486, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -50881,7 +51050,7 @@ } }, { - "id": 2619, + "id": 2627, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -50902,7 +51071,7 @@ } }, { - "id": 2479, + "id": 2487, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -50922,7 +51091,7 @@ } }, { - "id": 2480, + "id": 2488, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -50942,7 +51111,7 @@ } }, { - "id": 2487, + "id": 2495, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -50962,7 +51131,7 @@ } }, { - "id": 2481, + "id": 2489, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -50982,7 +51151,7 @@ } }, { - "id": 2482, + "id": 2490, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -51002,7 +51171,7 @@ } }, { - "id": 2615, + "id": 2623, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -51023,7 +51192,7 @@ } }, { - "id": 2510, + "id": 2518, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -51048,14 +51217,14 @@ { "type": "reflection", "declaration": { - "id": 2511, + "id": 2519, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2612, + "id": 2620, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -51076,7 +51245,7 @@ } }, { - "id": 2608, + "id": 2616, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -51097,7 +51266,7 @@ } }, { - "id": 2610, + "id": 2618, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -51118,7 +51287,7 @@ } }, { - "id": 2541, + "id": 2549, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -51139,7 +51308,7 @@ } }, { - "id": 2597, + "id": 2605, "name": "archived", "kind": 1024, "kindString": "Property", @@ -51160,7 +51329,7 @@ } }, { - "id": 2542, + "id": 2550, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -51181,7 +51350,7 @@ } }, { - "id": 2543, + "id": 2551, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -51202,7 +51371,7 @@ } }, { - "id": 2544, + "id": 2552, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -51223,7 +51392,7 @@ } }, { - "id": 2578, + "id": 2586, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -51244,7 +51413,7 @@ } }, { - "id": 2545, + "id": 2553, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -51265,7 +51434,7 @@ } }, { - "id": 2546, + "id": 2554, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -51286,7 +51455,7 @@ } }, { - "id": 2547, + "id": 2555, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -51307,7 +51476,7 @@ } }, { - "id": 2548, + "id": 2556, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -51328,7 +51497,7 @@ } }, { - "id": 2549, + "id": 2557, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -51349,7 +51518,7 @@ } }, { - "id": 2550, + "id": 2558, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -51370,7 +51539,7 @@ } }, { - "id": 2601, + "id": 2609, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -51391,7 +51560,7 @@ } }, { - "id": 2588, + "id": 2596, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -51412,7 +51581,7 @@ } }, { - "id": 2611, + "id": 2619, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -51433,7 +51602,7 @@ } }, { - "id": 2551, + "id": 2559, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -51454,7 +51623,7 @@ } }, { - "id": 2538, + "id": 2546, "name": "description", "kind": 1024, "kindString": "Property", @@ -51475,7 +51644,7 @@ } }, { - "id": 2598, + "id": 2606, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -51496,7 +51665,7 @@ } }, { - "id": 2552, + "id": 2560, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -51517,7 +51686,7 @@ } }, { - "id": 2553, + "id": 2561, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -51538,7 +51707,7 @@ } }, { - "id": 2539, + "id": 2547, "name": "fork", "kind": 1024, "kindString": "Property", @@ -51559,7 +51728,7 @@ } }, { - "id": 2584, + "id": 2592, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -51580,7 +51749,7 @@ } }, { - "id": 2554, + "id": 2562, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -51601,7 +51770,7 @@ } }, { - "id": 2515, + "id": 2523, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -51622,7 +51791,7 @@ } }, { - "id": 2555, + "id": 2563, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -51643,7 +51812,7 @@ } }, { - "id": 2556, + "id": 2564, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -51664,7 +51833,7 @@ } }, { - "id": 2557, + "id": 2565, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -51685,7 +51854,7 @@ } }, { - "id": 2558, + "id": 2566, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -51706,7 +51875,7 @@ } }, { - "id": 2596, + "id": 2604, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -51727,7 +51896,7 @@ } }, { - "id": 2592, + "id": 2600, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -51748,7 +51917,7 @@ } }, { - "id": 2595, + "id": 2603, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -51769,7 +51938,7 @@ } }, { - "id": 2593, + "id": 2601, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -51790,7 +51959,7 @@ } }, { - "id": 2594, + "id": 2602, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -51811,7 +51980,7 @@ } }, { - "id": 2582, + "id": 2590, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -51832,7 +52001,7 @@ } }, { - "id": 2580, + "id": 2588, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -51853,7 +52022,7 @@ } }, { - "id": 2537, + "id": 2545, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -51874,7 +52043,7 @@ } }, { - "id": 2512, + "id": 2520, "name": "id", "kind": 1024, "kindString": "Property", @@ -51895,7 +52064,7 @@ } }, { - "id": 2590, + "id": 2598, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -51916,7 +52085,7 @@ } }, { - "id": 2559, + "id": 2567, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -51937,7 +52106,7 @@ } }, { - "id": 2560, + "id": 2568, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -51958,7 +52127,7 @@ } }, { - "id": 2561, + "id": 2569, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -51979,7 +52148,7 @@ } }, { - "id": 2562, + "id": 2570, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -52000,7 +52169,7 @@ } }, { - "id": 2563, + "id": 2571, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -52021,7 +52190,7 @@ } }, { - "id": 2583, + "id": 2591, "name": "language", "kind": 1024, "kindString": "Property", @@ -52042,7 +52211,7 @@ } }, { - "id": 2564, + "id": 2572, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -52063,7 +52232,7 @@ } }, { - "id": 2565, + "id": 2573, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -52084,7 +52253,7 @@ } }, { - "id": 2566, + "id": 2574, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -52105,7 +52274,7 @@ } }, { - "id": 2579, + "id": 2587, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -52126,7 +52295,7 @@ } }, { - "id": 2514, + "id": 2522, "name": "name", "kind": 1024, "kindString": "Property", @@ -52147,7 +52316,7 @@ } }, { - "id": 2614, + "id": 2622, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -52168,7 +52337,7 @@ } }, { - "id": 2513, + "id": 2521, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -52189,7 +52358,7 @@ } }, { - "id": 2567, + "id": 2575, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -52210,7 +52379,7 @@ } }, { - "id": 2589, + "id": 2597, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -52231,7 +52400,7 @@ } }, { - "id": 2516, + "id": 2524, "name": "owner", "kind": 1024, "kindString": "Property", @@ -52249,14 +52418,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2517, + "id": 2525, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2521, + "id": 2529, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -52277,7 +52446,7 @@ } }, { - "id": 2532, + "id": 2540, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -52298,7 +52467,7 @@ } }, { - "id": 2525, + "id": 2533, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -52319,7 +52488,7 @@ } }, { - "id": 2526, + "id": 2534, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -52340,7 +52509,7 @@ } }, { - "id": 2527, + "id": 2535, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -52361,7 +52530,7 @@ } }, { - "id": 2522, + "id": 2530, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -52382,7 +52551,7 @@ } }, { - "id": 2524, + "id": 2532, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -52403,7 +52572,7 @@ } }, { - "id": 2519, + "id": 2527, "name": "id", "kind": 1024, "kindString": "Property", @@ -52424,7 +52593,7 @@ } }, { - "id": 2518, + "id": 2526, "name": "login", "kind": 1024, "kindString": "Property", @@ -52445,7 +52614,7 @@ } }, { - "id": 2520, + "id": 2528, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -52466,7 +52635,7 @@ } }, { - "id": 2530, + "id": 2538, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -52487,7 +52656,7 @@ } }, { - "id": 2533, + "id": 2541, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -52508,7 +52677,7 @@ } }, { - "id": 2531, + "id": 2539, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -52529,7 +52698,7 @@ } }, { - "id": 2535, + "id": 2543, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -52550,7 +52719,7 @@ } }, { - "id": 2528, + "id": 2536, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -52571,7 +52740,7 @@ } }, { - "id": 2529, + "id": 2537, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -52592,7 +52761,7 @@ } }, { - "id": 2534, + "id": 2542, "name": "type", "kind": 1024, "kindString": "Property", @@ -52613,7 +52782,7 @@ } }, { - "id": 2523, + "id": 2531, "name": "url", "kind": 1024, "kindString": "Property", @@ -52639,24 +52808,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2521, - 2532, - 2525, - 2526, - 2527, - 2522, - 2524, - 2519, - 2518, - 2520, - 2530, + 2529, + 2540, 2533, - 2531, + 2534, 2535, + 2530, + 2532, + 2527, + 2526, 2528, - 2529, - 2534, - 2523 + 2538, + 2541, + 2539, + 2543, + 2536, + 2537, + 2542, + 2531 ] } ] @@ -52664,7 +52833,7 @@ } }, { - "id": 2603, + "id": 2611, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -52682,14 +52851,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2604, + "id": 2612, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2605, + "id": 2613, "name": "admin", "kind": 1024, "kindString": "Property", @@ -52710,7 +52879,7 @@ } }, { - "id": 2607, + "id": 2615, "name": "pull", "kind": 1024, "kindString": "Property", @@ -52731,7 +52900,7 @@ } }, { - "id": 2606, + "id": 2614, "name": "push", "kind": 1024, "kindString": "Property", @@ -52757,9 +52926,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2605, - 2607, - 2606 + 2613, + 2615, + 2614 ] } ] @@ -52767,7 +52936,7 @@ } }, { - "id": 2536, + "id": 2544, "name": "private", "kind": 1024, "kindString": "Property", @@ -52788,7 +52957,7 @@ } }, { - "id": 2568, + "id": 2576, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -52809,7 +52978,7 @@ } }, { - "id": 2600, + "id": 2608, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -52830,7 +52999,7 @@ } }, { - "id": 2569, + "id": 2577, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -52851,7 +53020,7 @@ } }, { - "id": 2587, + "id": 2595, "name": "size", "kind": 1024, "kindString": "Property", @@ -52872,7 +53041,7 @@ } }, { - "id": 2570, + "id": 2578, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -52893,7 +53062,7 @@ } }, { - "id": 2585, + "id": 2593, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -52914,7 +53083,7 @@ } }, { - "id": 2571, + "id": 2579, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -52935,7 +53104,7 @@ } }, { - "id": 2572, + "id": 2580, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -52956,7 +53125,7 @@ } }, { - "id": 2613, + "id": 2621, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -52977,7 +53146,7 @@ } }, { - "id": 2573, + "id": 2581, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -52998,7 +53167,7 @@ } }, { - "id": 2574, + "id": 2582, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -53019,7 +53188,7 @@ } }, { - "id": 2581, + "id": 2589, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -53040,7 +53209,7 @@ } }, { - "id": 2575, + "id": 2583, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -53061,7 +53230,7 @@ } }, { - "id": 2576, + "id": 2584, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -53082,7 +53251,7 @@ } }, { - "id": 2609, + "id": 2617, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -53103,7 +53272,7 @@ } }, { - "id": 2591, + "id": 2599, "name": "topics", "kind": 1024, "kindString": "Property", @@ -53127,7 +53296,7 @@ } }, { - "id": 2577, + "id": 2585, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -53148,7 +53317,7 @@ } }, { - "id": 2602, + "id": 2610, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -53169,7 +53338,7 @@ } }, { - "id": 2540, + "id": 2548, "name": "url", "kind": 1024, "kindString": "Property", @@ -53190,7 +53359,7 @@ } }, { - "id": 2599, + "id": 2607, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -53211,7 +53380,7 @@ } }, { - "id": 2586, + "id": 2594, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -53237,86 +53406,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2612, - 2608, - 2610, - 2541, - 2597, - 2542, - 2543, - 2544, - 2578, - 2545, - 2546, - 2547, - 2548, + 2620, + 2616, + 2618, 2549, + 2605, 2550, - 2601, - 2588, - 2611, 2551, - 2538, - 2598, 2552, + 2586, 2553, - 2539, - 2584, 2554, - 2515, 2555, 2556, 2557, 2558, + 2609, 2596, - 2592, - 2595, - 2593, - 2594, - 2582, - 2580, - 2537, - 2512, - 2590, + 2619, 2559, + 2546, + 2606, 2560, 2561, + 2547, + 2592, 2562, + 2523, 2563, - 2583, 2564, 2565, 2566, - 2579, - 2514, - 2614, - 2513, - 2567, - 2589, - 2516, + 2604, + 2600, 2603, - 2536, + 2601, + 2602, + 2590, + 2588, + 2545, + 2520, + 2598, + 2567, 2568, - 2600, 2569, - 2587, 2570, - 2585, 2571, + 2591, 2572, - 2613, 2573, 2574, - 2581, + 2587, + 2522, + 2622, + 2521, 2575, + 2597, + 2524, + 2611, + 2544, 2576, - 2609, - 2591, + 2608, 2577, - 2602, - 2540, + 2595, + 2578, + 2593, + 2579, + 2580, + 2621, + 2581, + 2582, + 2589, + 2583, + 2584, + 2617, 2599, - 2586 + 2585, + 2610, + 2548, + 2607, + 2594 ] } ] @@ -53326,7 +53495,7 @@ } }, { - "id": 2497, + "id": 2505, "name": "topics", "kind": 1024, "kindString": "Property", @@ -53350,7 +53519,7 @@ } }, { - "id": 2483, + "id": 2491, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -53370,7 +53539,7 @@ } }, { - "id": 2508, + "id": 2516, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -53399,7 +53568,7 @@ } }, { - "id": 2446, + "id": 2454, "name": "url", "kind": 1024, "kindString": "Property", @@ -53419,7 +53588,7 @@ } }, { - "id": 2505, + "id": 2513, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -53443,7 +53612,7 @@ } }, { - "id": 2622, + "id": 2630, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -53463,7 +53632,7 @@ } }, { - "id": 2492, + "id": 2500, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -53488,94 +53657,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2618, - 2509, - 2616, - 2447, - 2503, - 2448, - 2449, - 2450, - 2484, - 2451, - 2452, - 2453, - 2454, + 2626, + 2517, + 2624, 2455, + 2511, 2456, - 2507, - 2494, - 2617, 2457, - 2444, - 2504, 2458, + 2492, 2459, - 2445, - 2411, - 2490, 2460, - 2379, 2461, 2462, 2463, 2464, + 2515, 2502, - 2498, - 2501, - 2499, - 2500, - 2488, - 2486, - 2443, - 2376, - 2496, + 2625, 2465, + 2452, + 2512, 2466, 2467, + 2453, + 2419, + 2498, 2468, + 2387, 2469, - 2489, 2470, - 2380, - 2623, 2471, 2472, - 2485, - 2378, - 2620, - 2377, + 2510, + 2506, + 2509, + 2507, + 2508, + 2496, + 2494, + 2451, + 2384, + 2504, 2473, - 2621, - 2495, - 2388, - 2419, - 2412, - 2442, 2474, - 2506, 2475, - 2493, 2476, - 2491, 2477, - 2624, + 2497, 2478, - 2619, + 2388, + 2631, 2479, 2480, - 2487, + 2493, + 2386, + 2628, + 2385, 2481, + 2629, + 2503, + 2396, + 2427, + 2420, + 2450, 2482, - 2615, - 2510, - 2497, + 2514, 2483, - 2508, - 2446, + 2501, + 2484, + 2499, + 2485, + 2632, + 2486, + 2627, + 2487, + 2488, + 2495, + 2489, + 2490, + 2623, + 2518, 2505, - 2622, - 2492 + 2491, + 2516, + 2454, + 2513, + 2630, + 2500 ] } ] @@ -53583,7 +53752,7 @@ } }, { - "id": 1796, + "id": 1804, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -53603,7 +53772,7 @@ } }, { - "id": 1811, + "id": 1819, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -53623,7 +53792,7 @@ } }, { - "id": 1797, + "id": 1805, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -53643,7 +53812,7 @@ } }, { - "id": 1798, + "id": 1806, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -53663,7 +53832,7 @@ } }, { - "id": 2090, + "id": 2098, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -53683,7 +53852,7 @@ } }, { - "id": 1799, + "id": 1807, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -53703,7 +53872,7 @@ } }, { - "id": 1800, + "id": 1808, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -53723,7 +53892,7 @@ } }, { - "id": 1807, + "id": 1815, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -53743,7 +53912,7 @@ } }, { - "id": 1801, + "id": 1809, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -53763,7 +53932,7 @@ } }, { - "id": 1802, + "id": 1810, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -53783,7 +53952,7 @@ } }, { - "id": 2086, + "id": 2094, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -53813,7 +53982,7 @@ } }, { - "id": 1835, + "id": 1843, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -53838,14 +54007,14 @@ { "type": "reflection", "declaration": { - "id": 1836, + "id": 1844, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2079, + "id": 2087, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -53869,7 +54038,7 @@ } }, { - "id": 1970, + "id": 1978, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -53893,7 +54062,7 @@ } }, { - "id": 2077, + "id": 2085, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -53917,7 +54086,7 @@ } }, { - "id": 1908, + "id": 1916, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -53937,7 +54106,7 @@ } }, { - "id": 1964, + "id": 1972, "name": "archived", "kind": 1024, "kindString": "Property", @@ -53960,7 +54129,7 @@ } }, { - "id": 1909, + "id": 1917, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -53980,7 +54149,7 @@ } }, { - "id": 1910, + "id": 1918, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -54000,7 +54169,7 @@ } }, { - "id": 1911, + "id": 1919, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -54020,7 +54189,7 @@ } }, { - "id": 1945, + "id": 1953, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -54040,7 +54209,7 @@ } }, { - "id": 1912, + "id": 1920, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -54060,7 +54229,7 @@ } }, { - "id": 1913, + "id": 1921, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -54080,7 +54249,7 @@ } }, { - "id": 1914, + "id": 1922, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -54100,7 +54269,7 @@ } }, { - "id": 1915, + "id": 1923, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -54120,7 +54289,7 @@ } }, { - "id": 1916, + "id": 1924, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -54140,7 +54309,7 @@ } }, { - "id": 1917, + "id": 1925, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -54160,7 +54329,7 @@ } }, { - "id": 1968, + "id": 1976, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -54189,7 +54358,7 @@ } }, { - "id": 1955, + "id": 1963, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -54212,7 +54381,7 @@ } }, { - "id": 2078, + "id": 2086, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -54236,7 +54405,7 @@ } }, { - "id": 1918, + "id": 1926, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -54256,7 +54425,7 @@ } }, { - "id": 1905, + "id": 1913, "name": "description", "kind": 1024, "kindString": "Property", @@ -54285,7 +54454,7 @@ } }, { - "id": 1965, + "id": 1973, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -54308,7 +54477,7 @@ } }, { - "id": 1919, + "id": 1927, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -54328,7 +54497,7 @@ } }, { - "id": 1920, + "id": 1928, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -54348,7 +54517,7 @@ } }, { - "id": 1906, + "id": 1914, "name": "fork", "kind": 1024, "kindString": "Property", @@ -54368,7 +54537,7 @@ } }, { - "id": 1872, + "id": 1880, "name": "forks", "kind": 1024, "kindString": "Property", @@ -54388,7 +54557,7 @@ } }, { - "id": 1951, + "id": 1959, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -54408,7 +54577,7 @@ } }, { - "id": 1921, + "id": 1929, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -54428,7 +54597,7 @@ } }, { - "id": 1840, + "id": 1848, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -54448,7 +54617,7 @@ } }, { - "id": 1922, + "id": 1930, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -54468,7 +54637,7 @@ } }, { - "id": 1923, + "id": 1931, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -54488,7 +54657,7 @@ } }, { - "id": 1924, + "id": 1932, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -54508,7 +54677,7 @@ } }, { - "id": 1925, + "id": 1933, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -54528,7 +54697,7 @@ } }, { - "id": 1963, + "id": 1971, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -54551,7 +54720,7 @@ } }, { - "id": 1959, + "id": 1967, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -54574,7 +54743,7 @@ } }, { - "id": 1962, + "id": 1970, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -54594,7 +54763,7 @@ } }, { - "id": 1960, + "id": 1968, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -54617,7 +54786,7 @@ } }, { - "id": 1961, + "id": 1969, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -54640,7 +54809,7 @@ } }, { - "id": 1949, + "id": 1957, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -54669,7 +54838,7 @@ } }, { - "id": 1947, + "id": 1955, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -54689,7 +54858,7 @@ } }, { - "id": 1904, + "id": 1912, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -54709,7 +54878,7 @@ } }, { - "id": 1837, + "id": 1845, "name": "id", "kind": 1024, "kindString": "Property", @@ -54732,7 +54901,7 @@ } }, { - "id": 1957, + "id": 1965, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -54756,7 +54925,7 @@ } }, { - "id": 1926, + "id": 1934, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -54776,7 +54945,7 @@ } }, { - "id": 1927, + "id": 1935, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -54796,7 +54965,7 @@ } }, { - "id": 1928, + "id": 1936, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -54816,7 +54985,7 @@ } }, { - "id": 1929, + "id": 1937, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -54836,7 +55005,7 @@ } }, { - "id": 1930, + "id": 1938, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -54856,7 +55025,7 @@ } }, { - "id": 1950, + "id": 1958, "name": "language", "kind": 1024, "kindString": "Property", @@ -54885,7 +55054,7 @@ } }, { - "id": 1931, + "id": 1939, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -54905,7 +55074,7 @@ } }, { - "id": 1841, + "id": 1849, "name": "license", "kind": 1024, "kindString": "Property", @@ -54929,14 +55098,14 @@ { "type": "reflection", "declaration": { - "id": 1842, + "id": 1850, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1848, + "id": 1856, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -54957,7 +55126,7 @@ } }, { - "id": 1843, + "id": 1851, "name": "key", "kind": 1024, "kindString": "Property", @@ -54977,7 +55146,7 @@ } }, { - "id": 1844, + "id": 1852, "name": "name", "kind": 1024, "kindString": "Property", @@ -54997,7 +55166,7 @@ } }, { - "id": 1847, + "id": 1855, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55017,7 +55186,7 @@ } }, { - "id": 1846, + "id": 1854, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -55046,7 +55215,7 @@ } }, { - "id": 1845, + "id": 1853, "name": "url", "kind": 1024, "kindString": "Property", @@ -55080,12 +55249,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1848, - 1843, - 1844, - 1847, - 1846, - 1845 + 1856, + 1851, + 1852, + 1855, + 1854, + 1853 ] } ] @@ -55095,7 +55264,7 @@ } }, { - "id": 2084, + "id": 2092, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -55116,7 +55285,7 @@ } }, { - "id": 1932, + "id": 1940, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -55136,7 +55305,7 @@ } }, { - "id": 1933, + "id": 1941, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -55156,7 +55325,7 @@ } }, { - "id": 1946, + "id": 1954, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -55185,7 +55354,7 @@ } }, { - "id": 1839, + "id": 1847, "name": "name", "kind": 1024, "kindString": "Property", @@ -55208,7 +55377,7 @@ } }, { - "id": 2081, + "id": 2089, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -55229,7 +55398,7 @@ } }, { - "id": 1838, + "id": 1846, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55249,7 +55418,7 @@ } }, { - "id": 1934, + "id": 1942, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -55269,7 +55438,7 @@ } }, { - "id": 2082, + "id": 2090, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -55289,7 +55458,7 @@ } }, { - "id": 1956, + "id": 1964, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -55309,7 +55478,7 @@ } }, { - "id": 1849, + "id": 1857, "name": "organization", "kind": 1024, "kindString": "Property", @@ -55334,14 +55503,14 @@ { "type": "reflection", "declaration": { - "id": 1850, + "id": 1858, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1856, + "id": 1864, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -55361,7 +55530,7 @@ } }, { - "id": 1852, + "id": 1860, "name": "email", "kind": 1024, "kindString": "Property", @@ -55391,7 +55560,7 @@ } }, { - "id": 1867, + "id": 1875, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -55411,7 +55580,7 @@ } }, { - "id": 1860, + "id": 1868, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -55431,7 +55600,7 @@ } }, { - "id": 1861, + "id": 1869, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -55451,7 +55620,7 @@ } }, { - "id": 1862, + "id": 1870, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -55471,7 +55640,7 @@ } }, { - "id": 1857, + "id": 1865, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -55500,7 +55669,7 @@ } }, { - "id": 1859, + "id": 1867, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -55520,7 +55689,7 @@ } }, { - "id": 1854, + "id": 1862, "name": "id", "kind": 1024, "kindString": "Property", @@ -55540,7 +55709,7 @@ } }, { - "id": 1853, + "id": 1861, "name": "login", "kind": 1024, "kindString": "Property", @@ -55560,7 +55729,7 @@ } }, { - "id": 1851, + "id": 1859, "name": "name", "kind": 1024, "kindString": "Property", @@ -55590,7 +55759,7 @@ } }, { - "id": 1855, + "id": 1863, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55610,7 +55779,7 @@ } }, { - "id": 1865, + "id": 1873, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -55630,7 +55799,7 @@ } }, { - "id": 1868, + "id": 1876, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -55650,7 +55819,7 @@ } }, { - "id": 1866, + "id": 1874, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -55670,7 +55839,7 @@ } }, { - "id": 1870, + "id": 1878, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -55690,7 +55859,7 @@ } }, { - "id": 1871, + "id": 1879, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -55711,7 +55880,7 @@ } }, { - "id": 1863, + "id": 1871, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -55731,7 +55900,7 @@ } }, { - "id": 1864, + "id": 1872, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -55751,7 +55920,7 @@ } }, { - "id": 1869, + "id": 1877, "name": "type", "kind": 1024, "kindString": "Property", @@ -55771,7 +55940,7 @@ } }, { - "id": 1858, + "id": 1866, "name": "url", "kind": 1024, "kindString": "Property", @@ -55796,27 +55965,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1856, - 1852, - 1867, + 1864, 1860, - 1861, - 1862, - 1857, - 1859, - 1854, - 1853, - 1851, - 1855, - 1865, + 1875, 1868, - 1866, + 1869, 1870, - 1871, + 1865, + 1867, + 1862, + 1861, + 1859, 1863, - 1864, - 1869, - 1858 + 1873, + 1876, + 1874, + 1878, + 1879, + 1871, + 1872, + 1877, + 1866 ] } ] @@ -55826,7 +55995,7 @@ } }, { - "id": 1880, + "id": 1888, "name": "owner", "kind": 1024, "kindString": "Property", @@ -55850,14 +56019,14 @@ { "type": "reflection", "declaration": { - "id": 1881, + "id": 1889, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1887, + "id": 1895, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -55877,7 +56046,7 @@ } }, { - "id": 1883, + "id": 1891, "name": "email", "kind": 1024, "kindString": "Property", @@ -55907,7 +56076,7 @@ } }, { - "id": 1898, + "id": 1906, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -55927,7 +56096,7 @@ } }, { - "id": 1891, + "id": 1899, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -55947,7 +56116,7 @@ } }, { - "id": 1892, + "id": 1900, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -55967,7 +56136,7 @@ } }, { - "id": 1893, + "id": 1901, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -55987,7 +56156,7 @@ } }, { - "id": 1888, + "id": 1896, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -56016,7 +56185,7 @@ } }, { - "id": 1890, + "id": 1898, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -56036,7 +56205,7 @@ } }, { - "id": 1885, + "id": 1893, "name": "id", "kind": 1024, "kindString": "Property", @@ -56056,7 +56225,7 @@ } }, { - "id": 1884, + "id": 1892, "name": "login", "kind": 1024, "kindString": "Property", @@ -56076,7 +56245,7 @@ } }, { - "id": 1882, + "id": 1890, "name": "name", "kind": 1024, "kindString": "Property", @@ -56106,7 +56275,7 @@ } }, { - "id": 1886, + "id": 1894, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -56126,7 +56295,7 @@ } }, { - "id": 1896, + "id": 1904, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -56146,7 +56315,7 @@ } }, { - "id": 1899, + "id": 1907, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -56166,7 +56335,7 @@ } }, { - "id": 1897, + "id": 1905, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -56186,7 +56355,7 @@ } }, { - "id": 1901, + "id": 1909, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -56206,7 +56375,7 @@ } }, { - "id": 1902, + "id": 1910, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -56227,7 +56396,7 @@ } }, { - "id": 1894, + "id": 1902, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -56247,7 +56416,7 @@ } }, { - "id": 1895, + "id": 1903, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -56267,7 +56436,7 @@ } }, { - "id": 1900, + "id": 1908, "name": "type", "kind": 1024, "kindString": "Property", @@ -56287,7 +56456,7 @@ } }, { - "id": 1889, + "id": 1897, "name": "url", "kind": 1024, "kindString": "Property", @@ -56312,27 +56481,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1887, - 1883, - 1898, + 1895, 1891, - 1892, - 1893, - 1888, - 1890, - 1885, - 1884, - 1882, - 1886, - 1896, + 1906, 1899, - 1897, + 1900, 1901, - 1902, + 1896, + 1898, + 1893, + 1892, + 1890, 1894, - 1895, - 1900, - 1889 + 1904, + 1907, + 1905, + 1909, + 1910, + 1902, + 1903, + 1908, + 1897 ] } ] @@ -56342,7 +56511,7 @@ } }, { - "id": 1873, + "id": 1881, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -56360,14 +56529,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1874, + "id": 1882, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1875, + "id": 1883, "name": "admin", "kind": 1024, "kindString": "Property", @@ -56387,7 +56556,7 @@ } }, { - "id": 1879, + "id": 1887, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -56408,7 +56577,7 @@ } }, { - "id": 1876, + "id": 1884, "name": "pull", "kind": 1024, "kindString": "Property", @@ -56428,7 +56597,7 @@ } }, { - "id": 1878, + "id": 1886, "name": "push", "kind": 1024, "kindString": "Property", @@ -56448,7 +56617,7 @@ } }, { - "id": 1877, + "id": 1885, "name": "triage", "kind": 1024, "kindString": "Property", @@ -56474,11 +56643,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1875, - 1879, - 1876, - 1878, - 1877 + 1883, + 1887, + 1884, + 1886, + 1885 ] } ] @@ -56486,7 +56655,7 @@ } }, { - "id": 1903, + "id": 1911, "name": "private", "kind": 1024, "kindString": "Property", @@ -56509,7 +56678,7 @@ } }, { - "id": 1935, + "id": 1943, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -56529,7 +56698,7 @@ } }, { - "id": 1967, + "id": 1975, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -56558,7 +56727,7 @@ } }, { - "id": 1936, + "id": 1944, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -56578,7 +56747,7 @@ } }, { - "id": 1954, + "id": 1962, "name": "size", "kind": 1024, "kindString": "Property", @@ -56598,7 +56767,7 @@ } }, { - "id": 1937, + "id": 1945, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -56618,7 +56787,7 @@ } }, { - "id": 1952, + "id": 1960, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -56638,7 +56807,7 @@ } }, { - "id": 1938, + "id": 1946, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -56658,7 +56827,7 @@ } }, { - "id": 2085, + "id": 2093, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -56679,7 +56848,7 @@ } }, { - "id": 1939, + "id": 1947, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -56699,7 +56868,7 @@ } }, { - "id": 2080, + "id": 2088, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -56720,7 +56889,7 @@ } }, { - "id": 1940, + "id": 1948, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -56740,7 +56909,7 @@ } }, { - "id": 1941, + "id": 1949, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -56760,7 +56929,7 @@ } }, { - "id": 1948, + "id": 1956, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -56780,7 +56949,7 @@ } }, { - "id": 1942, + "id": 1950, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -56800,7 +56969,7 @@ } }, { - "id": 1943, + "id": 1951, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -56820,7 +56989,7 @@ } }, { - "id": 2076, + "id": 2084, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -56841,7 +57010,7 @@ } }, { - "id": 1971, + "id": 1979, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -56866,14 +57035,14 @@ { "type": "reflection", "declaration": { - "id": 1972, + "id": 1980, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2073, + "id": 2081, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -56894,7 +57063,7 @@ } }, { - "id": 2069, + "id": 2077, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -56915,7 +57084,7 @@ } }, { - "id": 2071, + "id": 2079, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -56936,7 +57105,7 @@ } }, { - "id": 2002, + "id": 2010, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -56957,7 +57126,7 @@ } }, { - "id": 2058, + "id": 2066, "name": "archived", "kind": 1024, "kindString": "Property", @@ -56978,7 +57147,7 @@ } }, { - "id": 2003, + "id": 2011, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -56999,7 +57168,7 @@ } }, { - "id": 2004, + "id": 2012, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -57020,7 +57189,7 @@ } }, { - "id": 2005, + "id": 2013, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -57041,7 +57210,7 @@ } }, { - "id": 2039, + "id": 2047, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -57062,7 +57231,7 @@ } }, { - "id": 2006, + "id": 2014, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -57083,7 +57252,7 @@ } }, { - "id": 2007, + "id": 2015, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -57104,7 +57273,7 @@ } }, { - "id": 2008, + "id": 2016, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -57125,7 +57294,7 @@ } }, { - "id": 2009, + "id": 2017, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -57146,7 +57315,7 @@ } }, { - "id": 2010, + "id": 2018, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -57167,7 +57336,7 @@ } }, { - "id": 2011, + "id": 2019, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -57188,7 +57357,7 @@ } }, { - "id": 2062, + "id": 2070, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -57209,7 +57378,7 @@ } }, { - "id": 2049, + "id": 2057, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -57230,7 +57399,7 @@ } }, { - "id": 2072, + "id": 2080, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -57251,7 +57420,7 @@ } }, { - "id": 2012, + "id": 2020, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -57272,7 +57441,7 @@ } }, { - "id": 1999, + "id": 2007, "name": "description", "kind": 1024, "kindString": "Property", @@ -57293,7 +57462,7 @@ } }, { - "id": 2059, + "id": 2067, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -57314,7 +57483,7 @@ } }, { - "id": 2013, + "id": 2021, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -57335,7 +57504,7 @@ } }, { - "id": 2014, + "id": 2022, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -57356,7 +57525,7 @@ } }, { - "id": 2000, + "id": 2008, "name": "fork", "kind": 1024, "kindString": "Property", @@ -57377,7 +57546,7 @@ } }, { - "id": 2045, + "id": 2053, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -57398,7 +57567,7 @@ } }, { - "id": 2015, + "id": 2023, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -57419,7 +57588,7 @@ } }, { - "id": 1976, + "id": 1984, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -57440,7 +57609,7 @@ } }, { - "id": 2016, + "id": 2024, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -57461,7 +57630,7 @@ } }, { - "id": 2017, + "id": 2025, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -57482,7 +57651,7 @@ } }, { - "id": 2018, + "id": 2026, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -57503,7 +57672,7 @@ } }, { - "id": 2019, + "id": 2027, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -57524,7 +57693,7 @@ } }, { - "id": 2057, + "id": 2065, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -57545,7 +57714,7 @@ } }, { - "id": 2053, + "id": 2061, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -57566,7 +57735,7 @@ } }, { - "id": 2056, + "id": 2064, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -57587,7 +57756,7 @@ } }, { - "id": 2054, + "id": 2062, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -57608,7 +57777,7 @@ } }, { - "id": 2055, + "id": 2063, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -57629,7 +57798,7 @@ } }, { - "id": 2043, + "id": 2051, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -57650,7 +57819,7 @@ } }, { - "id": 2041, + "id": 2049, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -57671,7 +57840,7 @@ } }, { - "id": 1998, + "id": 2006, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -57692,7 +57861,7 @@ } }, { - "id": 1973, + "id": 1981, "name": "id", "kind": 1024, "kindString": "Property", @@ -57713,7 +57882,7 @@ } }, { - "id": 2051, + "id": 2059, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -57734,7 +57903,7 @@ } }, { - "id": 2020, + "id": 2028, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -57755,7 +57924,7 @@ } }, { - "id": 2021, + "id": 2029, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -57776,7 +57945,7 @@ } }, { - "id": 2022, + "id": 2030, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -57797,7 +57966,7 @@ } }, { - "id": 2023, + "id": 2031, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -57818,7 +57987,7 @@ } }, { - "id": 2024, + "id": 2032, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -57839,7 +58008,7 @@ } }, { - "id": 2044, + "id": 2052, "name": "language", "kind": 1024, "kindString": "Property", @@ -57860,7 +58029,7 @@ } }, { - "id": 2025, + "id": 2033, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -57881,7 +58050,7 @@ } }, { - "id": 2026, + "id": 2034, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -57902,7 +58071,7 @@ } }, { - "id": 2027, + "id": 2035, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -57923,7 +58092,7 @@ } }, { - "id": 2040, + "id": 2048, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -57944,7 +58113,7 @@ } }, { - "id": 1975, + "id": 1983, "name": "name", "kind": 1024, "kindString": "Property", @@ -57965,7 +58134,7 @@ } }, { - "id": 2075, + "id": 2083, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -57986,7 +58155,7 @@ } }, { - "id": 1974, + "id": 1982, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -58007,7 +58176,7 @@ } }, { - "id": 2028, + "id": 2036, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -58028,7 +58197,7 @@ } }, { - "id": 2050, + "id": 2058, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -58049,7 +58218,7 @@ } }, { - "id": 1977, + "id": 1985, "name": "owner", "kind": 1024, "kindString": "Property", @@ -58067,14 +58236,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1978, + "id": 1986, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1982, + "id": 1990, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -58095,7 +58264,7 @@ } }, { - "id": 1993, + "id": 2001, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -58116,7 +58285,7 @@ } }, { - "id": 1986, + "id": 1994, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -58137,7 +58306,7 @@ } }, { - "id": 1987, + "id": 1995, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -58158,7 +58327,7 @@ } }, { - "id": 1988, + "id": 1996, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -58179,7 +58348,7 @@ } }, { - "id": 1983, + "id": 1991, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -58200,7 +58369,7 @@ } }, { - "id": 1985, + "id": 1993, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -58221,7 +58390,7 @@ } }, { - "id": 1980, + "id": 1988, "name": "id", "kind": 1024, "kindString": "Property", @@ -58242,7 +58411,7 @@ } }, { - "id": 1979, + "id": 1987, "name": "login", "kind": 1024, "kindString": "Property", @@ -58263,7 +58432,7 @@ } }, { - "id": 1981, + "id": 1989, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -58284,7 +58453,7 @@ } }, { - "id": 1991, + "id": 1999, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -58305,7 +58474,7 @@ } }, { - "id": 1994, + "id": 2002, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -58326,7 +58495,7 @@ } }, { - "id": 1992, + "id": 2000, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -58347,7 +58516,7 @@ } }, { - "id": 1996, + "id": 2004, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -58368,7 +58537,7 @@ } }, { - "id": 1989, + "id": 1997, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -58389,7 +58558,7 @@ } }, { - "id": 1990, + "id": 1998, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -58410,7 +58579,7 @@ } }, { - "id": 1995, + "id": 2003, "name": "type", "kind": 1024, "kindString": "Property", @@ -58431,7 +58600,7 @@ } }, { - "id": 1984, + "id": 1992, "name": "url", "kind": 1024, "kindString": "Property", @@ -58457,24 +58626,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1982, - 1993, - 1986, - 1987, - 1988, - 1983, - 1985, - 1980, - 1979, - 1981, - 1991, + 1990, + 2001, 1994, - 1992, + 1995, 1996, + 1991, + 1993, + 1988, + 1987, 1989, - 1990, - 1995, - 1984 + 1999, + 2002, + 2000, + 2004, + 1997, + 1998, + 2003, + 1992 ] } ] @@ -58482,7 +58651,7 @@ } }, { - "id": 2064, + "id": 2072, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -58500,14 +58669,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2065, + "id": 2073, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2066, + "id": 2074, "name": "admin", "kind": 1024, "kindString": "Property", @@ -58528,7 +58697,7 @@ } }, { - "id": 2068, + "id": 2076, "name": "pull", "kind": 1024, "kindString": "Property", @@ -58549,7 +58718,7 @@ } }, { - "id": 2067, + "id": 2075, "name": "push", "kind": 1024, "kindString": "Property", @@ -58575,9 +58744,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2066, - 2068, - 2067 + 2074, + 2076, + 2075 ] } ] @@ -58585,7 +58754,7 @@ } }, { - "id": 1997, + "id": 2005, "name": "private", "kind": 1024, "kindString": "Property", @@ -58606,7 +58775,7 @@ } }, { - "id": 2029, + "id": 2037, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -58627,7 +58796,7 @@ } }, { - "id": 2061, + "id": 2069, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -58648,7 +58817,7 @@ } }, { - "id": 2030, + "id": 2038, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -58669,7 +58838,7 @@ } }, { - "id": 2048, + "id": 2056, "name": "size", "kind": 1024, "kindString": "Property", @@ -58690,7 +58859,7 @@ } }, { - "id": 2031, + "id": 2039, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -58711,7 +58880,7 @@ } }, { - "id": 2046, + "id": 2054, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -58732,7 +58901,7 @@ } }, { - "id": 2032, + "id": 2040, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -58753,7 +58922,7 @@ } }, { - "id": 2033, + "id": 2041, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -58774,7 +58943,7 @@ } }, { - "id": 2074, + "id": 2082, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -58795,7 +58964,7 @@ } }, { - "id": 2034, + "id": 2042, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -58816,7 +58985,7 @@ } }, { - "id": 2035, + "id": 2043, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -58837,7 +59006,7 @@ } }, { - "id": 2042, + "id": 2050, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -58858,7 +59027,7 @@ } }, { - "id": 2036, + "id": 2044, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -58879,7 +59048,7 @@ } }, { - "id": 2037, + "id": 2045, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -58900,7 +59069,7 @@ } }, { - "id": 2070, + "id": 2078, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -58921,7 +59090,7 @@ } }, { - "id": 2052, + "id": 2060, "name": "topics", "kind": 1024, "kindString": "Property", @@ -58945,7 +59114,7 @@ } }, { - "id": 2038, + "id": 2046, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -58966,7 +59135,7 @@ } }, { - "id": 2063, + "id": 2071, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -58987,7 +59156,7 @@ } }, { - "id": 2001, + "id": 2009, "name": "url", "kind": 1024, "kindString": "Property", @@ -59008,7 +59177,7 @@ } }, { - "id": 2060, + "id": 2068, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -59029,7 +59198,7 @@ } }, { - "id": 2047, + "id": 2055, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -59055,86 +59224,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2073, - 2069, - 2071, - 2002, - 2058, - 2003, - 2004, - 2005, - 2039, - 2006, - 2007, - 2008, - 2009, + 2081, + 2077, + 2079, 2010, + 2066, 2011, - 2062, - 2049, - 2072, 2012, - 1999, - 2059, 2013, + 2047, 2014, - 2000, - 2045, 2015, - 1976, 2016, 2017, 2018, 2019, + 2070, 2057, - 2053, - 2056, - 2054, - 2055, - 2043, - 2041, - 1998, - 1973, - 2051, + 2080, 2020, + 2007, + 2067, 2021, 2022, + 2008, + 2053, 2023, + 1984, 2024, - 2044, 2025, 2026, 2027, - 2040, - 1975, - 2075, - 1974, - 2028, - 2050, - 1977, + 2065, + 2061, 2064, - 1997, + 2062, + 2063, + 2051, + 2049, + 2006, + 1981, + 2059, + 2028, 2029, - 2061, 2030, - 2048, 2031, - 2046, 2032, + 2052, 2033, - 2074, 2034, 2035, - 2042, + 2048, + 1983, + 2083, + 1982, 2036, + 2058, + 1985, + 2072, + 2005, 2037, - 2070, - 2052, + 2069, 2038, - 2063, - 2001, + 2056, + 2039, + 2054, + 2040, + 2041, + 2082, + 2042, + 2043, + 2050, + 2044, + 2045, + 2078, 2060, - 2047 + 2046, + 2071, + 2009, + 2068, + 2055 ] } ] @@ -59144,7 +59313,7 @@ } }, { - "id": 1958, + "id": 1966, "name": "topics", "kind": 1024, "kindString": "Property", @@ -59168,7 +59337,7 @@ } }, { - "id": 1944, + "id": 1952, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -59188,7 +59357,7 @@ } }, { - "id": 1969, + "id": 1977, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -59217,7 +59386,7 @@ } }, { - "id": 1907, + "id": 1915, "name": "url", "kind": 1024, "kindString": "Property", @@ -59237,7 +59406,7 @@ } }, { - "id": 1966, + "id": 1974, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -59261,7 +59430,7 @@ } }, { - "id": 2083, + "id": 2091, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -59281,7 +59450,7 @@ } }, { - "id": 1953, + "id": 1961, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -59306,94 +59475,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2079, - 1970, - 2077, - 1908, - 1964, - 1909, - 1910, - 1911, - 1945, - 1912, - 1913, - 1914, - 1915, + 2087, + 1978, + 2085, 1916, + 1972, 1917, - 1968, - 1955, - 2078, 1918, - 1905, - 1965, 1919, + 1953, 1920, - 1906, - 1872, - 1951, 1921, - 1840, 1922, 1923, 1924, 1925, + 1976, 1963, - 1959, - 1962, - 1960, - 1961, - 1949, - 1947, - 1904, - 1837, - 1957, + 2086, 1926, + 1913, + 1973, 1927, 1928, + 1914, + 1880, + 1959, 1929, + 1848, 1930, - 1950, 1931, - 1841, - 2084, 1932, 1933, - 1946, - 1839, - 2081, - 1838, + 1971, + 1967, + 1970, + 1968, + 1969, + 1957, + 1955, + 1912, + 1845, + 1965, 1934, - 2082, - 1956, - 1849, - 1880, - 1873, - 1903, 1935, - 1967, 1936, - 1954, 1937, - 1952, 1938, - 2085, + 1958, 1939, - 2080, + 1849, + 2092, 1940, 1941, - 1948, + 1954, + 1847, + 2089, + 1846, 1942, + 2090, + 1964, + 1857, + 1888, + 1881, + 1911, 1943, - 2076, - 1971, - 1958, + 1975, 1944, - 1969, - 1907, + 1962, + 1945, + 1960, + 1946, + 2093, + 1947, + 2088, + 1948, + 1949, + 1956, + 1950, + 1951, + 2084, + 1979, 1966, - 2083, - 1953 + 1952, + 1977, + 1915, + 1974, + 2091, + 1961 ] } ] @@ -59403,7 +59572,7 @@ } }, { - "id": 1817, + "id": 1825, "name": "topics", "kind": 1024, "kindString": "Property", @@ -59427,7 +59596,7 @@ } }, { - "id": 1803, + "id": 1811, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -59447,7 +59616,7 @@ } }, { - "id": 1828, + "id": 1836, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -59467,7 +59636,7 @@ } }, { - "id": 1766, + "id": 1774, "name": "url", "kind": 1024, "kindString": "Property", @@ -59487,7 +59656,7 @@ } }, { - "id": 1825, + "id": 1833, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -59511,7 +59680,7 @@ } }, { - "id": 2628, + "id": 2636, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -59531,7 +59700,7 @@ } }, { - "id": 1812, + "id": 1820, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -59556,98 +59725,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2089, - 1834, - 2087, - 2629, - 1767, - 1823, - 1768, - 1769, - 1770, - 1804, - 2630, - 1771, - 1772, - 1773, - 1774, + 2097, + 1842, + 2095, + 2637, 1775, + 1831, 1776, - 1827, - 1814, - 2088, 1777, - 1764, - 1824, 1778, + 1812, + 2638, 1779, - 1765, - 2625, - 1810, 1780, - 1738, 1781, 1782, 1783, 1784, + 1835, 1822, - 1818, - 1821, - 1819, - 1820, - 1808, - 1806, - 1763, - 1735, - 1816, + 2096, 1785, + 1772, + 1832, 1786, 1787, + 1773, + 2633, + 1818, 1788, + 1746, 1789, - 1809, 1790, - 2092, - 2626, 1791, 1792, - 1805, - 1737, - 2091, - 1736, - 1793, - 2627, - 1815, - 2100, - 1739, - 2123, + 1830, + 1826, 1829, - 1762, + 1827, + 1828, + 1816, + 1814, + 1771, + 1743, + 1824, + 1793, 1794, - 1826, 1795, - 2636, - 1813, - 2374, 1796, - 1811, 1797, + 1817, 1798, - 2090, + 2100, + 2634, 1799, 1800, - 1807, + 1813, + 1745, + 2099, + 1744, 1801, + 2635, + 1823, + 2108, + 1747, + 2131, + 1837, + 1770, 1802, - 2086, - 1835, - 1817, + 1834, 1803, - 1828, - 1766, + 2644, + 1821, + 2382, + 1804, + 1819, + 1805, + 1806, + 2098, + 1807, + 1808, + 1815, + 1809, + 1810, + 2094, + 1843, 1825, - 2628, - 1812 + 1811, + 1836, + 1774, + 1833, + 2636, + 1820 ] } ] @@ -59655,7 +59824,7 @@ } }, { - "id": 1732, + "id": 1740, "name": "forks", "kind": 1024, "kindString": "Property", @@ -59672,12 +59841,12 @@ ], "type": { "type": "reference", - "id": 2884, + "id": 2889, "name": "ForkManager" } }, { - "id": 1731, + "id": 1739, "name": "id", "kind": 1024, "kindString": "Property", @@ -59698,7 +59867,7 @@ } }, { - "id": 2650, + "id": 2658, "name": "allowMergeCommit", "kind": 262144, "kindString": "Accessor", @@ -59714,7 +59883,7 @@ ], "getSignature": [ { - "id": 2651, + "id": 2659, "name": "allowMergeCommit", "kind": 524288, "kindString": "Get signature", @@ -59736,7 +59905,7 @@ ] }, { - "id": 2652, + "id": 2660, "name": "allowRebaseMerge", "kind": 262144, "kindString": "Accessor", @@ -59752,7 +59921,7 @@ ], "getSignature": [ { - "id": 2653, + "id": 2661, "name": "allowRebaseMerge", "kind": 524288, "kindString": "Get signature", @@ -59774,7 +59943,7 @@ ] }, { - "id": 2654, + "id": 2662, "name": "allowSquashMerge", "kind": 262144, "kindString": "Accessor", @@ -59790,7 +59959,7 @@ ], "getSignature": [ { - "id": 2655, + "id": 2663, "name": "allowSquashMerge", "kind": 524288, "kindString": "Get signature", @@ -59812,7 +59981,7 @@ ] }, { - "id": 2656, + "id": 2664, "name": "anonymusAccessEnabled", "kind": 262144, "kindString": "Accessor", @@ -59828,7 +59997,7 @@ ], "getSignature": [ { - "id": 2657, + "id": 2665, "name": "anonymusAccessEnabled", "kind": 524288, "kindString": "Get signature", @@ -59850,7 +60019,7 @@ ] }, { - "id": 2658, + "id": 2666, "name": "archiveUrl", "kind": 262144, "kindString": "Accessor", @@ -59866,7 +60035,7 @@ ], "getSignature": [ { - "id": 2659, + "id": 2667, "name": "archiveUrl", "kind": 524288, "kindString": "Get signature", @@ -59879,7 +60048,7 @@ ] }, { - "id": 2660, + "id": 2668, "name": "archived", "kind": 262144, "kindString": "Accessor", @@ -59895,7 +60064,7 @@ ], "getSignature": [ { - "id": 2661, + "id": 2669, "name": "archived", "kind": 524288, "kindString": "Get signature", @@ -59908,7 +60077,7 @@ ] }, { - "id": 2662, + "id": 2670, "name": "assigneesUrl", "kind": 262144, "kindString": "Accessor", @@ -59924,7 +60093,7 @@ ], "getSignature": [ { - "id": 2663, + "id": 2671, "name": "assigneesUrl", "kind": 524288, "kindString": "Get signature", @@ -59937,7 +60106,7 @@ ] }, { - "id": 2664, + "id": 2672, "name": "blobsUrl", "kind": 262144, "kindString": "Accessor", @@ -59953,7 +60122,7 @@ ], "getSignature": [ { - "id": 2665, + "id": 2673, "name": "blobsUrl", "kind": 524288, "kindString": "Get signature", @@ -59966,7 +60135,7 @@ ] }, { - "id": 2666, + "id": 2674, "name": "branchesUrl", "kind": 262144, "kindString": "Accessor", @@ -59982,7 +60151,7 @@ ], "getSignature": [ { - "id": 2667, + "id": 2675, "name": "branchesUrl", "kind": 524288, "kindString": "Get signature", @@ -59995,7 +60164,7 @@ ] }, { - "id": 2668, + "id": 2676, "name": "cloneUrl", "kind": 262144, "kindString": "Accessor", @@ -60011,7 +60180,7 @@ ], "getSignature": [ { - "id": 2669, + "id": 2677, "name": "cloneUrl", "kind": 524288, "kindString": "Get signature", @@ -60024,7 +60193,7 @@ ] }, { - "id": 2670, + "id": 2678, "name": "codeOfConduct", "kind": 262144, "kindString": "Accessor", @@ -60040,7 +60209,7 @@ ], "getSignature": [ { - "id": 2671, + "id": 2679, "name": "codeOfConduct", "kind": 524288, "kindString": "Get signature", @@ -60055,14 +60224,14 @@ { "type": "reflection", "declaration": { - "id": 2672, + "id": 2680, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2676, + "id": 2684, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -60091,7 +60260,7 @@ } }, { - "id": 2674, + "id": 2682, "name": "key", "kind": 1024, "kindString": "Property", @@ -60111,7 +60280,7 @@ } }, { - "id": 2675, + "id": 2683, "name": "name", "kind": 1024, "kindString": "Property", @@ -60131,7 +60300,7 @@ } }, { - "id": 2673, + "id": 2681, "name": "url", "kind": 1024, "kindString": "Property", @@ -60156,10 +60325,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2676, - 2674, - 2675, - 2673 + 2684, + 2682, + 2683, + 2681 ] } ] @@ -60171,7 +60340,7 @@ ] }, { - "id": 2677, + "id": 2685, "name": "collaboratorsUrl", "kind": 262144, "kindString": "Accessor", @@ -60187,7 +60356,7 @@ ], "getSignature": [ { - "id": 2678, + "id": 2686, "name": "collaboratorsUrl", "kind": 524288, "kindString": "Get signature", @@ -60200,7 +60369,7 @@ ] }, { - "id": 2679, + "id": 2687, "name": "commentsUrl", "kind": 262144, "kindString": "Accessor", @@ -60216,7 +60385,7 @@ ], "getSignature": [ { - "id": 2680, + "id": 2688, "name": "commentsUrl", "kind": 524288, "kindString": "Get signature", @@ -60229,7 +60398,7 @@ ] }, { - "id": 2681, + "id": 2689, "name": "commitsUrl", "kind": 262144, "kindString": "Accessor", @@ -60245,7 +60414,7 @@ ], "getSignature": [ { - "id": 2682, + "id": 2690, "name": "commitsUrl", "kind": 524288, "kindString": "Get signature", @@ -60258,7 +60427,7 @@ ] }, { - "id": 2683, + "id": 2691, "name": "compareUrl", "kind": 262144, "kindString": "Accessor", @@ -60274,7 +60443,7 @@ ], "getSignature": [ { - "id": 2684, + "id": 2692, "name": "compareUrl", "kind": 524288, "kindString": "Get signature", @@ -60287,7 +60456,7 @@ ] }, { - "id": 2685, + "id": 2693, "name": "contentsUrl", "kind": 262144, "kindString": "Accessor", @@ -60303,7 +60472,7 @@ ], "getSignature": [ { - "id": 2686, + "id": 2694, "name": "contentsUrl", "kind": 524288, "kindString": "Get signature", @@ -60316,7 +60485,7 @@ ] }, { - "id": 2687, + "id": 2695, "name": "contributorsUrl", "kind": 262144, "kindString": "Accessor", @@ -60332,7 +60501,7 @@ ], "getSignature": [ { - "id": 2688, + "id": 2696, "name": "contributorsUrl", "kind": 524288, "kindString": "Get signature", @@ -60345,7 +60514,7 @@ ] }, { - "id": 2689, + "id": 2697, "name": "createdAt", "kind": 262144, "kindString": "Accessor", @@ -60361,7 +60530,7 @@ ], "getSignature": [ { - "id": 2690, + "id": 2698, "name": "createdAt", "kind": 524288, "kindString": "Get signature", @@ -60374,7 +60543,7 @@ ] }, { - "id": 2646, + "id": 2654, "name": "fork", "kind": 262144, "kindString": "Accessor", @@ -60390,7 +60559,7 @@ ], "getSignature": [ { - "id": 2647, + "id": 2655, "name": "fork", "kind": 524288, "kindString": "Get signature", @@ -60403,7 +60572,7 @@ ] }, { - "id": 2644, + "id": 2652, "name": "forkCount", "kind": 262144, "kindString": "Accessor", @@ -60419,7 +60588,7 @@ ], "getSignature": [ { - "id": 2645, + "id": 2653, "name": "forkCount", "kind": 524288, "kindString": "Get signature", @@ -60432,7 +60601,7 @@ ] }, { - "id": 2648, + "id": 2656, "name": "fullName", "kind": 262144, "kindString": "Accessor", @@ -60448,7 +60617,7 @@ ], "getSignature": [ { - "id": 2649, + "id": 2657, "name": "fullName", "kind": 524288, "kindString": "Get signature", @@ -60466,27 +60635,23 @@ "title": "Constructors", "kind": 512, "children": [ - 817 + 825 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2691, - 1733, - 1732, - 1731 + 2699, + 1741, + 1740, + 1739 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2650, - 2652, - 2654, - 2656, 2658, 2660, 2662, @@ -60494,16 +60659,20 @@ 2666, 2668, 2670, - 2677, - 2679, - 2681, - 2683, + 2672, + 2674, + 2676, + 2678, 2685, 2687, 2689, - 2646, - 2644, - 2648 + 2691, + 2693, + 2695, + 2697, + 2654, + 2652, + 2656 ] } ], @@ -60523,28 +60692,28 @@ ] }, { - "id": 2922, + "id": 2927, "name": "RepoManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2923, + "id": 2928, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2924, + "id": 2929, "name": "new RepoManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2925, + "id": 2930, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -60552,14 +60721,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2926, + "id": 2931, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2927, + "id": 2932, "name": "client", "kind": 1024, "kindString": "Property", @@ -60578,7 +60747,7 @@ } }, { - "id": 2928, + "id": 2933, "name": "url", "kind": 1024, "kindString": "Property", @@ -60601,8 +60770,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2927, - 2928 + 2932, + 2933 ] } ] @@ -60612,24 +60781,24 @@ ], "type": { "type": "reference", - "id": 2922, + "id": 2927, "name": "RepoManager" }, "overwrites": { "type": "reference", - "id": 2832, + "id": 2837, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2831, + "id": 2836, "name": "Manager.constructor" } }, { - "id": 2931, + "id": 2936, "name": "cache", "kind": 1024, "kindString": "Property", @@ -60666,12 +60835,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 2844, "name": "Manager.cache" } }, { - "id": 2929, + "id": 2934, "name": "client", "kind": 1024, "kindString": "Property", @@ -60690,12 +60859,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2837, + "id": 2842, "name": "Manager.client" } }, { - "id": 2930, + "id": 2935, "name": "url", "kind": 1024, "kindString": "Property", @@ -60715,12 +60884,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2838, + "id": 2843, "name": "Manager.url" } }, { - "id": 2932, + "id": 2937, "name": "add", "kind": 2048, "kindString": "Method", @@ -60734,14 +60903,14 @@ ], "signatures": [ { - "id": 2933, + "id": 2938, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2934, + "id": 2939, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -60761,7 +60930,7 @@ } }, { - "id": 2935, + "id": 2940, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -60778,19 +60947,19 @@ }, "inheritedFrom": { "type": "reference", - "id": 2841, + "id": 2846, "name": "Manager.add" } } ], "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 2845, "name": "Manager.add" } }, { - "id": 2936, + "id": 2941, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -60804,14 +60973,14 @@ ], "signatures": [ { - "id": 2937, + "id": 2942, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2938, + "id": 2943, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -60837,14 +61006,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 2845, + "id": 2850, "name": "Manager.resolve" } } ], "inheritedFrom": { "type": "reference", - "id": 2844, + "id": 2849, "name": "Manager.resolve" } } @@ -60854,24 +61023,24 @@ "title": "Constructors", "kind": 512, "children": [ - 2923 + 2928 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2931, - 2929, - 2930 + 2936, + 2934, + 2935 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2932, - 2936 + 2937, + 2941 ] } ], @@ -60885,13 +61054,13 @@ "extendedTypes": [ { "type": "reference", - "id": 2830, + "id": 2835, "name": "Manager" } ] }, { - "id": 2692, + "id": 2700, "name": "User", "kind": 128, "kindString": "Class", @@ -60901,21 +61070,21 @@ }, "children": [ { - "id": 2693, + "id": 2701, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2694, + "id": 2702, "name": "new User", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2695, + "id": 2703, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -60926,14 +61095,14 @@ { "type": "reflection", "declaration": { - "id": 2696, + "id": 2704, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2700, + "id": 2708, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -60953,7 +61122,7 @@ } }, { - "id": 2721, + "id": 2729, "name": "bio", "kind": 1024, "kindString": "Property", @@ -60982,7 +61151,7 @@ } }, { - "id": 2717, + "id": 2725, "name": "blog", "kind": 1024, "kindString": "Property", @@ -61011,7 +61180,7 @@ } }, { - "id": 2742, + "id": 2750, "name": "business_plus", "kind": 1024, "kindString": "Property", @@ -61032,7 +61201,7 @@ } }, { - "id": 2733, + "id": 2741, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -61052,7 +61221,7 @@ } }, { - "id": 2716, + "id": 2724, "name": "company", "kind": 1024, "kindString": "Property", @@ -61081,7 +61250,7 @@ } }, { - "id": 2727, + "id": 2735, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -61101,7 +61270,7 @@ } }, { - "id": 2732, + "id": 2740, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -61121,7 +61290,7 @@ } }, { - "id": 2719, + "id": 2727, "name": "email", "kind": 1024, "kindString": "Property", @@ -61150,7 +61319,7 @@ } }, { - "id": 2711, + "id": 2719, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -61170,7 +61339,7 @@ } }, { - "id": 2725, + "id": 2733, "name": "followers", "kind": 1024, "kindString": "Property", @@ -61190,7 +61359,7 @@ } }, { - "id": 2704, + "id": 2712, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -61210,7 +61379,7 @@ } }, { - "id": 2726, + "id": 2734, "name": "following", "kind": 1024, "kindString": "Property", @@ -61230,7 +61399,7 @@ } }, { - "id": 2705, + "id": 2713, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -61250,7 +61419,7 @@ } }, { - "id": 2706, + "id": 2714, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -61270,7 +61439,7 @@ } }, { - "id": 2701, + "id": 2709, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -61299,7 +61468,7 @@ } }, { - "id": 2720, + "id": 2728, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -61328,7 +61497,7 @@ } }, { - "id": 2703, + "id": 2711, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -61348,7 +61517,7 @@ } }, { - "id": 2698, + "id": 2706, "name": "id", "kind": 1024, "kindString": "Property", @@ -61368,7 +61537,7 @@ } }, { - "id": 2743, + "id": 2751, "name": "ldap_dn", "kind": 1024, "kindString": "Property", @@ -61389,7 +61558,7 @@ } }, { - "id": 2718, + "id": 2726, "name": "location", "kind": 1024, "kindString": "Property", @@ -61418,7 +61587,7 @@ } }, { - "id": 2697, + "id": 2705, "name": "login", "kind": 1024, "kindString": "Property", @@ -61438,7 +61607,7 @@ } }, { - "id": 2715, + "id": 2723, "name": "name", "kind": 1024, "kindString": "Property", @@ -61467,7 +61636,7 @@ } }, { - "id": 2699, + "id": 2707, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -61487,7 +61656,7 @@ } }, { - "id": 2709, + "id": 2717, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -61507,7 +61676,7 @@ } }, { - "id": 2731, + "id": 2739, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -61527,7 +61696,7 @@ } }, { - "id": 2735, + "id": 2743, "name": "plan", "kind": 1024, "kindString": "Property", @@ -61545,14 +61714,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2736, + "id": 2744, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2737, + "id": 2745, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -61572,7 +61741,7 @@ } }, { - "id": 2738, + "id": 2746, "name": "name", "kind": 1024, "kindString": "Property", @@ -61592,7 +61761,7 @@ } }, { - "id": 2740, + "id": 2748, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -61612,7 +61781,7 @@ } }, { - "id": 2739, + "id": 2747, "name": "space", "kind": 1024, "kindString": "Property", @@ -61637,10 +61806,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2737, - 2738, - 2740, - 2739 + 2745, + 2746, + 2748, + 2747 ] } ] @@ -61648,7 +61817,7 @@ } }, { - "id": 2729, + "id": 2737, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -61668,7 +61837,7 @@ } }, { - "id": 2724, + "id": 2732, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -61688,7 +61857,7 @@ } }, { - "id": 2723, + "id": 2731, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -61708,7 +61877,7 @@ } }, { - "id": 2712, + "id": 2720, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -61728,7 +61897,7 @@ } }, { - "id": 2710, + "id": 2718, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -61748,7 +61917,7 @@ } }, { - "id": 2714, + "id": 2722, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -61768,7 +61937,7 @@ } }, { - "id": 2707, + "id": 2715, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -61788,7 +61957,7 @@ } }, { - "id": 2708, + "id": 2716, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -61808,7 +61977,7 @@ } }, { - "id": 2741, + "id": 2749, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -61838,7 +62007,7 @@ } }, { - "id": 2730, + "id": 2738, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -61858,7 +62027,7 @@ } }, { - "id": 2722, + "id": 2730, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -61888,7 +62057,7 @@ } }, { - "id": 2734, + "id": 2742, "name": "two_factor_authentication", "kind": 1024, "kindString": "Property", @@ -61908,7 +62077,7 @@ } }, { - "id": 2713, + "id": 2721, "name": "type", "kind": 1024, "kindString": "Property", @@ -61928,7 +62097,7 @@ } }, { - "id": 2728, + "id": 2736, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -61948,7 +62117,7 @@ } }, { - "id": 2702, + "id": 2710, "name": "url", "kind": 1024, "kindString": "Property", @@ -61973,48 +62142,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2700, - 2721, - 2717, - 2742, - 2733, - 2716, + 2708, + 2729, + 2725, + 2750, + 2741, + 2724, + 2735, + 2740, 2727, - 2732, 2719, + 2733, + 2712, + 2734, + 2713, + 2714, + 2709, + 2728, 2711, - 2725, - 2704, + 2706, + 2751, 2726, 2705, - 2706, - 2701, - 2720, - 2703, - 2698, + 2723, + 2707, + 2717, + 2739, 2743, + 2737, + 2732, + 2731, + 2720, 2718, - 2697, + 2722, 2715, - 2699, - 2709, - 2731, - 2735, - 2729, - 2724, - 2723, - 2712, - 2710, - 2714, - 2707, - 2708, - 2741, + 2716, + 2749, + 2738, 2730, - 2722, - 2734, - 2713, - 2728, - 2702 + 2742, + 2721, + 2736, + 2710 ] } ] @@ -62023,14 +62192,14 @@ { "type": "reflection", "declaration": { - "id": 2744, + "id": 2752, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2748, + "id": 2756, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -62050,7 +62219,7 @@ } }, { - "id": 2769, + "id": 2777, "name": "bio", "kind": 1024, "kindString": "Property", @@ -62079,7 +62248,7 @@ } }, { - "id": 2765, + "id": 2773, "name": "blog", "kind": 1024, "kindString": "Property", @@ -62108,7 +62277,7 @@ } }, { - "id": 2788, + "id": 2796, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -62129,7 +62298,7 @@ } }, { - "id": 2764, + "id": 2772, "name": "company", "kind": 1024, "kindString": "Property", @@ -62158,7 +62327,7 @@ } }, { - "id": 2775, + "id": 2783, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -62178,7 +62347,7 @@ } }, { - "id": 2787, + "id": 2795, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -62199,7 +62368,7 @@ } }, { - "id": 2767, + "id": 2775, "name": "email", "kind": 1024, "kindString": "Property", @@ -62228,7 +62397,7 @@ } }, { - "id": 2759, + "id": 2767, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -62248,7 +62417,7 @@ } }, { - "id": 2773, + "id": 2781, "name": "followers", "kind": 1024, "kindString": "Property", @@ -62268,7 +62437,7 @@ } }, { - "id": 2752, + "id": 2760, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -62288,7 +62457,7 @@ } }, { - "id": 2774, + "id": 2782, "name": "following", "kind": 1024, "kindString": "Property", @@ -62308,7 +62477,7 @@ } }, { - "id": 2753, + "id": 2761, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -62328,7 +62497,7 @@ } }, { - "id": 2754, + "id": 2762, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -62348,7 +62517,7 @@ } }, { - "id": 2749, + "id": 2757, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -62377,7 +62546,7 @@ } }, { - "id": 2768, + "id": 2776, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -62406,7 +62575,7 @@ } }, { - "id": 2751, + "id": 2759, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -62426,7 +62595,7 @@ } }, { - "id": 2746, + "id": 2754, "name": "id", "kind": 1024, "kindString": "Property", @@ -62446,7 +62615,7 @@ } }, { - "id": 2766, + "id": 2774, "name": "location", "kind": 1024, "kindString": "Property", @@ -62475,7 +62644,7 @@ } }, { - "id": 2745, + "id": 2753, "name": "login", "kind": 1024, "kindString": "Property", @@ -62495,7 +62664,7 @@ } }, { - "id": 2763, + "id": 2771, "name": "name", "kind": 1024, "kindString": "Property", @@ -62524,7 +62693,7 @@ } }, { - "id": 2747, + "id": 2755, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -62544,7 +62713,7 @@ } }, { - "id": 2757, + "id": 2765, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -62564,7 +62733,7 @@ } }, { - "id": 2786, + "id": 2794, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -62585,7 +62754,7 @@ } }, { - "id": 2777, + "id": 2785, "name": "plan", "kind": 1024, "kindString": "Property", @@ -62603,14 +62772,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2778, + "id": 2786, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2779, + "id": 2787, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -62630,7 +62799,7 @@ } }, { - "id": 2780, + "id": 2788, "name": "name", "kind": 1024, "kindString": "Property", @@ -62650,7 +62819,7 @@ } }, { - "id": 2782, + "id": 2790, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -62670,7 +62839,7 @@ } }, { - "id": 2781, + "id": 2789, "name": "space", "kind": 1024, "kindString": "Property", @@ -62695,10 +62864,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2779, - 2780, - 2782, - 2781 + 2787, + 2788, + 2790, + 2789 ] } ] @@ -62706,7 +62875,7 @@ } }, { - "id": 2784, + "id": 2792, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -62727,7 +62896,7 @@ } }, { - "id": 2772, + "id": 2780, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -62747,7 +62916,7 @@ } }, { - "id": 2771, + "id": 2779, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -62767,7 +62936,7 @@ } }, { - "id": 2760, + "id": 2768, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -62787,7 +62956,7 @@ } }, { - "id": 2758, + "id": 2766, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -62807,7 +62976,7 @@ } }, { - "id": 2762, + "id": 2770, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -62827,7 +62996,7 @@ } }, { - "id": 2755, + "id": 2763, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -62847,7 +63016,7 @@ } }, { - "id": 2756, + "id": 2764, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -62867,7 +63036,7 @@ } }, { - "id": 2783, + "id": 2791, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -62897,7 +63066,7 @@ } }, { - "id": 2785, + "id": 2793, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -62918,7 +63087,7 @@ } }, { - "id": 2770, + "id": 2778, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -62948,7 +63117,7 @@ } }, { - "id": 2761, + "id": 2769, "name": "type", "kind": 1024, "kindString": "Property", @@ -62968,7 +63137,7 @@ } }, { - "id": 2776, + "id": 2784, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -62988,7 +63157,7 @@ } }, { - "id": 2750, + "id": 2758, "name": "url", "kind": 1024, "kindString": "Property", @@ -63013,45 +63182,45 @@ "title": "Properties", "kind": 1024, "children": [ - 2748, - 2769, - 2765, - 2788, - 2764, + 2756, + 2777, + 2773, + 2796, + 2772, + 2783, + 2795, 2775, - 2787, 2767, + 2781, + 2760, + 2782, + 2761, + 2762, + 2757, + 2776, 2759, - 2773, - 2752, + 2754, 2774, 2753, - 2754, - 2749, - 2768, - 2751, - 2746, - 2766, - 2745, - 2763, - 2747, - 2757, - 2786, - 2777, - 2784, - 2772, 2771, - 2760, - 2758, - 2762, 2755, - 2756, - 2783, + 2765, + 2794, 2785, + 2792, + 2780, + 2779, + 2768, + 2766, 2770, - 2761, - 2776, - 2750 + 2763, + 2764, + 2791, + 2793, + 2778, + 2769, + 2784, + 2758 ] } ] @@ -63060,20 +63229,20 @@ { "type": "reflection", "declaration": { - "id": 2789, + "id": 2797, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2790, + "id": 2798, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2791, + "id": 2799, "name": "key", "kind": 32768, "flags": {}, @@ -63094,7 +63263,7 @@ } }, { - "id": 2792, + "id": 2800, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -63102,14 +63271,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2793, + "id": 2801, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2794, + "id": 2802, "name": "client", "kind": 1024, "kindString": "Property", @@ -63133,7 +63302,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2794 + 2802 ] } ] @@ -63143,14 +63312,14 @@ ], "type": { "type": "reference", - "id": 2692, + "id": 2700, "name": "User" } } ] }, { - "id": 2799, + "id": 2807, "name": "avatarUrl", "kind": 1024, "kindString": "Property", @@ -63168,7 +63337,7 @@ } }, { - "id": 2819, + "id": 2827, "name": "bio", "kind": 1024, "kindString": "Property", @@ -63188,7 +63357,7 @@ } }, { - "id": 2815, + "id": 2823, "name": "blog", "kind": 1024, "kindString": "Property", @@ -63208,7 +63377,7 @@ } }, { - "id": 2795, + "id": 2803, "name": "client", "kind": 1024, "kindString": "Property", @@ -63241,7 +63410,7 @@ } }, { - "id": 2814, + "id": 2822, "name": "company", "kind": 1024, "kindString": "Property", @@ -63261,7 +63430,7 @@ } }, { - "id": 2825, + "id": 2833, "name": "createdAt", "kind": 1024, "kindString": "Property", @@ -63281,7 +63450,7 @@ } }, { - "id": 2817, + "id": 2825, "name": "email", "kind": 1024, "kindString": "Property", @@ -63310,7 +63479,7 @@ } }, { - "id": 2810, + "id": 2818, "name": "eventsUrl", "kind": 1024, "kindString": "Property", @@ -63330,7 +63499,7 @@ } }, { - "id": 2823, + "id": 2831, "name": "followers", "kind": 1024, "kindString": "Property", @@ -63350,7 +63519,7 @@ } }, { - "id": 2804, + "id": 2812, "name": "followersUrl", "kind": 1024, "kindString": "Property", @@ -63370,7 +63539,7 @@ } }, { - "id": 2824, + "id": 2832, "name": "following", "kind": 1024, "kindString": "Property", @@ -63390,7 +63559,7 @@ } }, { - "id": 2803, + "id": 2811, "name": "followingUrl", "kind": 1024, "kindString": "Property", @@ -63410,7 +63579,7 @@ } }, { - "id": 2805, + "id": 2813, "name": "gistsUrl", "kind": 1024, "kindString": "Property", @@ -63430,7 +63599,7 @@ } }, { - "id": 2800, + "id": 2808, "name": "gravatarId", "kind": 1024, "kindString": "Property", @@ -63448,7 +63617,7 @@ } }, { - "id": 2818, + "id": 2826, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -63477,7 +63646,7 @@ } }, { - "id": 2802, + "id": 2810, "name": "htmlUrl", "kind": 1024, "kindString": "Property", @@ -63495,7 +63664,7 @@ } }, { - "id": 2797, + "id": 2805, "name": "id", "kind": 1024, "kindString": "Property", @@ -63513,7 +63682,7 @@ } }, { - "id": 2816, + "id": 2824, "name": "location", "kind": 1024, "kindString": "Property", @@ -63533,7 +63702,7 @@ } }, { - "id": 2796, + "id": 2804, "name": "login", "kind": 1024, "kindString": "Property", @@ -63551,7 +63720,7 @@ } }, { - "id": 2798, + "id": 2806, "name": "nodeId", "kind": 1024, "kindString": "Property", @@ -63569,7 +63738,7 @@ } }, { - "id": 2808, + "id": 2816, "name": "organizationsUrl", "kind": 1024, "kindString": "Property", @@ -63589,7 +63758,7 @@ } }, { - "id": 2822, + "id": 2830, "name": "publicGists", "kind": 1024, "kindString": "Property", @@ -63609,7 +63778,7 @@ } }, { - "id": 2821, + "id": 2829, "name": "publicRepos", "kind": 1024, "kindString": "Property", @@ -63629,7 +63798,7 @@ } }, { - "id": 2811, + "id": 2819, "name": "receivedEventsUrl", "kind": 1024, "kindString": "Property", @@ -63649,7 +63818,7 @@ } }, { - "id": 2809, + "id": 2817, "name": "reposUrl", "kind": 1024, "kindString": "Property", @@ -63669,7 +63838,7 @@ } }, { - "id": 2813, + "id": 2821, "name": "siteAdmin", "kind": 1024, "kindString": "Property", @@ -63689,7 +63858,7 @@ } }, { - "id": 2806, + "id": 2814, "name": "starredUrl", "kind": 1024, "kindString": "Property", @@ -63709,7 +63878,7 @@ } }, { - "id": 2807, + "id": 2815, "name": "subscriptionsUrl", "kind": 1024, "kindString": "Property", @@ -63729,7 +63898,7 @@ } }, { - "id": 2820, + "id": 2828, "name": "twitterUsername", "kind": 1024, "kindString": "Property", @@ -63758,7 +63927,7 @@ } }, { - "id": 2812, + "id": 2820, "name": "type", "kind": 1024, "kindString": "Property", @@ -63778,7 +63947,7 @@ } }, { - "id": 2826, + "id": 2834, "name": "updatedAt", "kind": 1024, "kindString": "Property", @@ -63798,7 +63967,7 @@ } }, { - "id": 2801, + "id": 2809, "name": "url", "kind": 1024, "kindString": "Property", @@ -63814,47 +63983,6 @@ "type": "intrinsic", "name": "string" } - }, - { - "id": 2827, - "name": "_patch", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/user.ts", - "line": 80, - "character": 8 - } - ], - "signatures": [ - { - "id": 2828, - "name": "_patch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2829, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "id": 2692, - "name": "User" - } - } - ] } ], "groups": [ @@ -63862,52 +63990,45 @@ "title": "Constructors", "kind": 512, "children": [ - 2693 + 2701 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2799, - 2819, - 2815, - 2795, - 2814, - 2825, - 2817, - 2810, + 2807, + 2827, 2823, - 2804, - 2824, 2803, - 2805, - 2800, - 2818, - 2802, - 2797, - 2816, - 2796, - 2798, - 2808, 2822, - 2821, + 2833, + 2825, + 2818, + 2831, + 2812, + 2832, 2811, - 2809, 2813, + 2808, + 2826, + 2810, + 2805, + 2824, + 2804, 2806, - 2807, + 2816, + 2830, + 2829, + 2819, + 2817, + 2821, + 2814, + 2815, + 2828, 2820, - 2812, - 2826, - 2801 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 2827 + 2834, + 2809 ] } ], @@ -63927,28 +64048,28 @@ ] }, { - "id": 2939, + "id": 2944, "name": "UserManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2940, + "id": 2945, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2941, + "id": 2946, "name": "new UserManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2942, + "id": 2947, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -63956,14 +64077,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2943, + "id": 2948, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2944, + "id": 2949, "name": "client", "kind": 1024, "kindString": "Property", @@ -63982,7 +64103,7 @@ } }, { - "id": 2945, + "id": 2950, "name": "url", "kind": 1024, "kindString": "Property", @@ -64007,8 +64128,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2944, - 2945 + 2949, + 2950 ] } ] @@ -64018,24 +64139,24 @@ ], "type": { "type": "reference", - "id": 2939, + "id": 2944, "name": "UserManager" }, "overwrites": { "type": "reference", - "id": 2832, + "id": 2837, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2831, + "id": 2836, "name": "Manager.constructor" } }, { - "id": 2961, + "id": 2966, "name": "cache", "kind": 1024, "kindString": "Property", @@ -64072,12 +64193,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 2844, "name": "Manager.cache" } }, { - "id": 2959, + "id": 2964, "name": "client", "kind": 1024, "kindString": "Property", @@ -64096,12 +64217,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2837, + "id": 2842, "name": "Manager.client" } }, { - "id": 2960, + "id": 2965, "name": "url", "kind": 1024, "kindString": "Property", @@ -64121,12 +64242,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2838, + "id": 2843, "name": "Manager.url" } }, { - "id": 2954, + "id": 2959, "name": "add", "kind": 2048, "kindString": "Method", @@ -64140,14 +64261,14 @@ ], "signatures": [ { - "id": 2955, + "id": 2960, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2956, + "id": 2961, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -64158,7 +64279,7 @@ } }, { - "id": 2957, + "id": 2962, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -64169,7 +64290,7 @@ } }, { - "id": 2958, + "id": 2963, "name": "cache", "kind": 32768, "kindString": "Parameter", @@ -64183,24 +64304,24 @@ ], "type": { "type": "reference", - "id": 2692, + "id": 2700, "name": "User" }, "overwrites": { "type": "reference", - "id": 2841, + "id": 2846, "name": "Manager.add" } } ], "overwrites": { "type": "reference", - "id": 2840, + "id": 2845, "name": "Manager.add" } }, { - "id": 2946, + "id": 2951, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -64214,14 +64335,14 @@ ], "signatures": [ { - "id": 2947, + "id": 2952, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2948, + "id": 2953, "name": "username", "kind": 32768, "kindString": "Parameter", @@ -64236,14 +64357,14 @@ { "type": "reflection", "declaration": { - "id": 2949, + "id": 2954, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2950, + "id": 2955, "name": "cache", "kind": 1024, "kindString": "Property", @@ -64263,7 +64384,7 @@ } }, { - "id": 2952, + "id": 2957, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -64283,7 +64404,7 @@ } }, { - "id": 2951, + "id": 2956, "name": "since", "kind": 1024, "kindString": "Property", @@ -64308,9 +64429,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2950, - 2952, - 2951 + 2955, + 2957, + 2956 ] } ] @@ -64320,7 +64441,7 @@ } }, { - "id": 2953, + "id": 2958, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -64347,7 +64468,7 @@ ] }, { - "id": 2962, + "id": 2967, "name": "resolve", "kind": 2048, "kindString": "Method", @@ -64361,14 +64482,14 @@ ], "signatures": [ { - "id": 2963, + "id": 2968, "name": "resolve", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2964, + "id": 2969, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -64394,14 +64515,14 @@ }, "inheritedFrom": { "type": "reference", - "id": 2845, + "id": 2850, "name": "Manager.resolve" } } ], "inheritedFrom": { "type": "reference", - "id": 2844, + "id": 2849, "name": "Manager.resolve" } } @@ -64411,25 +64532,25 @@ "title": "Constructors", "kind": 512, "children": [ - 2940 + 2945 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2961, - 2959, - 2960 + 2966, + 2964, + 2965 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2954, - 2946, - 2962 + 2959, + 2951, + 2967 ] } ], @@ -64443,7 +64564,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2830, + "id": 2835, "name": "Manager" } ] @@ -64455,22 +64576,22 @@ "kind": 128, "children": [ 109, - 2847, + 2852, 121, 126, 1, 142, - 326, - 351, - 2884, - 360, - 810, - 2901, - 2830, - 816, - 2922, - 2692, - 2939 + 323, + 353, + 2889, + 368, + 818, + 2906, + 2835, + 824, + 2927, + 2700, + 2944 ] } ], From 5e951a6ffb35a61dfb47f2b125b1d3a8a353af00 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:15:40 +0530 Subject: [PATCH 36/79] fix(test): minor --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index a8bdd11..4739151 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,2 +1,4 @@ export * from "./structures"; export * from "./managers"; + +// From d3cb0df8e644a77a3c45b2088dcb14d1e18b5055 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:16:58 +0530 Subject: [PATCH 37/79] fix(test): test001 --- src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4739151..a8bdd11 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,2 @@ export * from "./structures"; export * from "./managers"; - -// From 68aab433626b3059f8d2f99d7f34f1f1b3e75846 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 14 Jul 2021 22:19:42 +0530 Subject: [PATCH 38/79] fix(test): test002 --- src/structures/clientuser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/clientuser.ts b/src/structures/clientuser.ts index 34d2d11..139d7a3 100644 --- a/src/structures/clientuser.ts +++ b/src/structures/clientuser.ts @@ -97,7 +97,7 @@ class ClientUser extends User { .req("user", { body: options }) .patch() .then(async (r: Response) => { - return this.constructor(await r.json()); + return new ClientUser(await r.json(), { client: this.client }); }); } } From ea0e650f457502192b7d32dd958ca6df8b2a6cfa Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Wed, 14 Jul 2021 16:50:22 +0000 Subject: [PATCH 39/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 45 +++++++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index eb41fd1..9eecb10 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -6910,8 +6910,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -6956,8 +6957,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7008,8 +7010,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7054,8 +7057,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7107,8 +7111,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7153,8 +7158,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7199,8 +7205,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7252,8 +7259,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" @@ -7298,8 +7306,9 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reference", + "id": 142, + "name": "ClientUser" } ], "name": "Promise" From 8687aa3377f43943b6b043d8c0b4f107201dbb27 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Thu, 15 Jul 2021 14:17:57 +0530 Subject: [PATCH 40/79] feat(lint): added cron --- .github/workflows/lint.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fb9fc2b..463c1d8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,6 +2,8 @@ name: Lint on: [push, pull_request] +cron: 0 0 * * * + jobs: Lint: runs-on: ubuntu-latest From a3066b67981822af01e011bd108912214abfa024 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Thu, 15 Jul 2021 14:23:17 +0530 Subject: [PATCH 41/79] fix(lint): minor --- .github/workflows/lint.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 463c1d8..573bf7b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,8 +1,10 @@ name: Lint -on: [push, pull_request] - -cron: 0 0 * * * +on: + push: + pull_request: + shedule: + - cron: "0 0 * * *" jobs: Lint: From 203659d91dd762e97c9ac81d1ac94378f6c2c6fc Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Thu, 15 Jul 2021 14:24:39 +0530 Subject: [PATCH 42/79] fix(lint): typo fix --- .github/workflows/lint.yml | 2 +- src/managers/manager.ts | 14 +----------- src/managers/usermanager.ts | 44 +++++++++++-------------------------- src/utils/constants.ts | 6 ++--- 4 files changed, 17 insertions(+), 49 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 573bf7b..d91ab91 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,7 +3,7 @@ name: Lint on: push: pull_request: - shedule: + schedule: - cron: "0 0 * * *" jobs: diff --git a/src/managers/manager.ts b/src/managers/manager.ts index 7288547..d8fb8e6 100644 --- a/src/managers/manager.ts +++ b/src/managers/manager.ts @@ -1,23 +1,11 @@ -import Collection from "@discordjs/collection"; -import Client from "../structures/client"; +import { Client } from "../structures"; class BaseManager { client: Client; url?: string; - cache: Collection; constructor({ client, url }: { client: Client; url?: string }) { this.client = client; this.url = url; - this.cache = new Collection(); - } - - add(id: string | number, data: any) { - this.cache.set(id, data); - return data; - } - - resolve(id: string | number) { - return this.cache.get(id) ?? null; } } diff --git a/src/managers/usermanager.ts b/src/managers/usermanager.ts index caa0f18..7536d8e 100644 --- a/src/managers/usermanager.ts +++ b/src/managers/usermanager.ts @@ -9,39 +9,21 @@ class UserManager extends Manager { super({ client, url }); } - async fetch( - username: string | { cache?: boolean; since?: string; perPage?: number }, - options?: FetchOptions - ) { - if (typeof username === "string") { - const { force, cache } = options ?? {}; - let o = this.cache.get(username); - if (o && !force) return o; - const res: Response = await this.client.api - .req(`users/${username}`) - .get(); - return res.json().then((b: any) => { - if (cache) return this.add(b.login, b); - return new User(b, { client: this.client }); - }); - } else { - const { since, perPage, cache = true } = username; - const res = await this.client.api - .req("users", { query: { perPage, since } }) - .get(); - return res.json().then((users: any[]) => { - users.forEach((u: any) => { - u = this.add(u.login, u, cache); - }); - return users; - }); - } + public async fetch(username: string, options: FetchOptions = {}) { + const { auth = true } = options; + const res: Response = await this.client.api + .req(`users/${username}`, { auth }) + .get(); + return res.json().then((b: any) => { + return new User(b, { client: this.client }); + }); } - add(id: string, data: any, cache: boolean = true) { - let o = new User(data, { client: this.client }); - if (cache) this.cache.set(id, o); - return o; + public async *list({ + since, + perPage, + }: { since?: string; perPage?: number } = {}): AsyncGenerator { + let next, previous; } } diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 96b93f7..61abfc5 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -1,11 +1,9 @@ export interface FetchOptions { - cache?: boolean; - force?: boolean; + auth?: boolean; } /** * Options for fetching the api * @typedef {Object} FetchOptions - * @property {boolean} cache - returned resource should be cached or not - * @property {boolean} force - Force skip the cache check before requesting the api + * @property {boolean} auth - Whether to use authendicate the user using the token provided to the client. If there is not token this option is invalid */ From c904e7edeb0738229bf9bc9fb8c78ee0b0be27e9 Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Thu, 15 Jul 2021 08:55:32 +0000 Subject: [PATCH 43/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 1487 ++++++++--------------------------------------- 1 file changed, 238 insertions(+), 1249 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 9eecb10..75fb358 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -138,7 +138,7 @@ ], "type": { "type": "reference", - "id": 2852, + "id": 2844, "name": "ArtifactsManager" } }, @@ -238,28 +238,28 @@ ] }, { - "id": 2852, + "id": 2844, "name": "ArtifactsManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2853, + "id": 2845, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2854, + "id": 2846, "name": "new ArtifactsManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2855, + "id": 2847, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -267,14 +267,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2856, + "id": 2848, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2857, + "id": 2849, "name": "client", "kind": 1024, "kindString": "Property", @@ -298,7 +298,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2857 + 2849 ] } ] @@ -306,7 +306,7 @@ } }, { - "id": 2858, + "id": 2850, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -314,14 +314,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2859, + "id": 2851, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2860, + "id": 2852, "name": "owner", "kind": 1024, "kindString": "Property", @@ -339,7 +339,7 @@ } }, { - "id": 2861, + "id": 2853, "name": "repo", "kind": 1024, "kindString": "Property", @@ -362,8 +362,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2860, - 2861 + 2852, + 2853 ] } ] @@ -373,7 +373,7 @@ ], "type": { "type": "reference", - "id": 2852, + "id": 2844, "name": "ArtifactsManager" }, "overwrites": { @@ -390,49 +390,7 @@ } }, { - "id": 2881, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - }, - "inheritedFrom": { - "type": "reference", - "id": 2844, - "name": "Manager.cache" - } - }, - { - "id": 2879, + "id": 2871, "name": "client", "kind": 1024, "kindString": "Property", @@ -440,7 +398,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 4, "character": 8 } ], @@ -456,7 +414,7 @@ } }, { - "id": 2862, + "id": 2854, "name": "owner", "kind": 1024, "kindString": "Property", @@ -474,7 +432,7 @@ } }, { - "id": 2863, + "id": 2855, "name": "repo", "kind": 1024, "kindString": "Property", @@ -492,7 +450,7 @@ } }, { - "id": 2880, + "id": 2872, "name": "url", "kind": 1024, "kindString": "Property", @@ -502,7 +460,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 5, "character": 5 } ], @@ -517,77 +475,7 @@ } }, { - "id": 2882, - "name": "add", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 14, - "character": 5 - } - ], - "signatures": [ - { - "id": 2883, - "name": "add", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2884, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - }, - { - "id": 2885, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2846, - "name": "Manager.add" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2845, - "name": "Manager.add" - } - }, - { - "id": 2873, + "id": 2865, "name": "delete", "kind": 2048, "kindString": "Method", @@ -601,14 +489,14 @@ ], "signatures": [ { - "id": 2874, + "id": 2866, "name": "delete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2875, + "id": 2867, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -633,7 +521,7 @@ ] }, { - "id": 2876, + "id": 2868, "name": "download", "kind": 2048, "kindString": "Method", @@ -647,14 +535,14 @@ ], "signatures": [ { - "id": 2877, + "id": 2869, "name": "download", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2878, + "id": 2870, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -679,7 +567,7 @@ ] }, { - "id": 2870, + "id": 2862, "name": "get", "kind": 2048, "kindString": "Method", @@ -693,14 +581,14 @@ ], "signatures": [ { - "id": 2871, + "id": 2863, "name": "get", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2872, + "id": 2864, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -725,7 +613,7 @@ ] }, { - "id": 2864, + "id": 2856, "name": "list", "kind": 2048, "kindString": "Method", @@ -739,14 +627,14 @@ ], "signatures": [ { - "id": 2865, + "id": 2857, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2866, + "id": 2858, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -754,14 +642,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2867, + "id": 2859, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2868, + "id": 2860, "name": "page", "kind": 1024, "kindString": "Property", @@ -781,7 +669,7 @@ } }, { - "id": 2869, + "id": 2861, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -806,8 +694,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2868, - 2869 + 2860, + 2861 ] } ] @@ -827,65 +715,6 @@ } } ] - }, - { - "id": 2886, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 2887, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2888, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2850, - "name": "Manager.resolve" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2849, - "name": "Manager.resolve" - } } ], "groups": [ @@ -893,30 +722,27 @@ "title": "Constructors", "kind": 512, "children": [ - 2853 + 2845 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2881, - 2879, - 2862, - 2863, - 2880 + 2871, + 2854, + 2855, + 2872 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2882, - 2873, - 2876, - 2870, - 2864, - 2886 + 2865, + 2868, + 2862, + 2856 ] } ], @@ -1542,7 +1368,7 @@ ], "type": { "type": "reference", - "id": 2944, + "id": 2904, "name": "UserManager" } }, @@ -8198,28 +8024,28 @@ ] }, { - "id": 2889, + "id": 2873, "name": "ForkManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2890, + "id": 2874, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2891, + "id": 2875, "name": "new ForkManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2892, + "id": 2876, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -8231,7 +8057,7 @@ } }, { - "id": 2893, + "id": 2877, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -8239,14 +8065,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2894, + "id": 2878, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2895, + "id": 2879, "name": "url", "kind": 1024, "kindString": "Property", @@ -8271,7 +8097,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2895 + 2879 ] } ] @@ -8281,7 +8107,7 @@ ], "type": { "type": "reference", - "id": 2889, + "id": 2873, "name": "ForkManager" }, "overwrites": { @@ -8298,49 +8124,7 @@ } }, { - "id": 2898, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - }, - "inheritedFrom": { - "type": "reference", - "id": 2844, - "name": "Manager.cache" - } - }, - { - "id": 2896, + "id": 2880, "name": "client", "kind": 1024, "kindString": "Property", @@ -8348,7 +8132,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 4, "character": 8 } ], @@ -8364,7 +8148,7 @@ } }, { - "id": 2897, + "id": 2881, "name": "url", "kind": 1024, "kindString": "Property", @@ -8374,7 +8158,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 5, "character": 5 } ], @@ -8387,135 +8171,6 @@ "id": 2843, "name": "Manager.url" } - }, - { - "id": 2899, - "name": "add", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 14, - "character": 5 - } - ], - "signatures": [ - { - "id": 2900, - "name": "add", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2901, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - }, - { - "id": 2902, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2846, - "name": "Manager.add" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2845, - "name": "Manager.add" - } - }, - { - "id": 2903, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 2904, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2905, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2850, - "name": "Manager.resolve" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2849, - "name": "Manager.resolve" - } } ], "groups": [ @@ -8523,24 +8178,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2890 + 2874 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2898, - 2896, - 2897 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 2899, - 2903 + 2880, + 2881 ] } ], @@ -18266,7 +17912,7 @@ ], "type": { "type": "reference", - "id": 2889, + "id": 2873, "name": "ForkManager" } }, @@ -18496,28 +18142,28 @@ ] }, { - "id": 2906, + "id": 2882, "name": "IssueManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2907, + "id": 2883, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2908, + "id": 2884, "name": "new IssueManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2909, + "id": 2885, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18525,14 +18171,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2910, + "id": 2886, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2911, + "id": 2887, "name": "client", "kind": 1024, "kindString": "Property", @@ -18551,7 +18197,7 @@ } }, { - "id": 2912, + "id": 2888, "name": "url", "kind": 1024, "kindString": "Property", @@ -18574,8 +18220,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2911, - 2912 + 2887, + 2888 ] } ] @@ -18585,7 +18231,7 @@ ], "type": { "type": "reference", - "id": 2906, + "id": 2882, "name": "IssueManager" }, "overwrites": { @@ -18602,49 +18248,7 @@ } }, { - "id": 2919, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - }, - "inheritedFrom": { - "type": "reference", - "id": 2844, - "name": "Manager.cache" - } - }, - { - "id": 2917, + "id": 2893, "name": "client", "kind": 1024, "kindString": "Property", @@ -18652,7 +18256,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 4, "character": 8 } ], @@ -18668,7 +18272,7 @@ } }, { - "id": 2918, + "id": 2894, "name": "url", "kind": 1024, "kindString": "Property", @@ -18678,7 +18282,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 5, "character": 5 } ], @@ -18693,77 +18297,7 @@ } }, { - "id": 2920, - "name": "add", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 14, - "character": 5 - } - ], - "signatures": [ - { - "id": 2921, - "name": "add", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2922, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - }, - { - "id": 2923, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2846, - "name": "Manager.add" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2845, - "name": "Manager.add" - } - }, - { - "id": 2913, + "id": 2889, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -18777,7 +18311,7 @@ ], "signatures": [ { - "id": 2914, + "id": 2890, "name": "fetch", "kind": 4096, "kindString": "Call signature", @@ -18787,7 +18321,7 @@ }, "parameters": [ { - "id": 2915, + "id": 2891, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -18801,7 +18335,7 @@ } }, { - "id": 2916, + "id": 2892, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18828,65 +18362,6 @@ } } ] - }, - { - "id": 2924, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 2925, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2926, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2850, - "name": "Manager.resolve" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2849, - "name": "Manager.resolve" - } } ], "groups": [ @@ -18894,25 +18369,22 @@ "title": "Constructors", "kind": 512, "children": [ - 2907 + 2883 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2919, - 2917, - 2918 + 2893, + 2894 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2920, - 2913, - 2924 + 2889 ] } ], @@ -18976,7 +18448,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 8, + "line": 6, "character": 39 } ], @@ -18997,7 +18469,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 8, + "line": 6, "character": 52 } ], @@ -19029,43 +18501,6 @@ } ] }, - { - "id": 2844, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - } - }, { "id": 2842, "name": "client", @@ -19075,7 +18510,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 4, "character": 8 } ], @@ -19096,7 +18531,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 5, "character": 5 } ], @@ -19104,115 +18539,6 @@ "type": "intrinsic", "name": "string" } - }, - { - "id": 2845, - "name": "add", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 14, - "character": 5 - } - ], - "signatures": [ - { - "id": 2846, - "name": "add", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2847, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - }, - { - "id": 2848, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - ] - }, - { - "id": 2849, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 2850, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2851, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - } - } - ] } ], "groups": [ @@ -19227,51 +18553,42 @@ "title": "Properties", "kind": 1024, "children": [ - 2844, 2842, 2843 ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 2845, - 2849 - ] } ], "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 3, "character": 17 } ], "extendedBy": [ { "type": "reference", - "id": 2852, + "id": 2844, "name": "ArtifactsManager" }, { "type": "reference", - "id": 2889, + "id": 2873, "name": "ForkManager" }, { "type": "reference", - "id": 2906, + "id": 2882, "name": "IssueManager" }, { "type": "reference", - "id": 2927, + "id": 2895, "name": "RepoManager" }, { "type": "reference", - "id": 2944, + "id": 2904, "name": "UserManager" } ] @@ -59850,7 +59167,7 @@ ], "type": { "type": "reference", - "id": 2889, + "id": 2873, "name": "ForkManager" } }, @@ -60701,28 +60018,28 @@ ] }, { - "id": 2927, + "id": 2895, "name": "RepoManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2928, + "id": 2896, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2929, + "id": 2897, "name": "new RepoManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2930, + "id": 2898, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -60730,14 +60047,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2931, + "id": 2899, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2932, + "id": 2900, "name": "client", "kind": 1024, "kindString": "Property", @@ -60756,7 +60073,7 @@ } }, { - "id": 2933, + "id": 2901, "name": "url", "kind": 1024, "kindString": "Property", @@ -60779,8 +60096,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2932, - 2933 + 2900, + 2901 ] } ] @@ -60790,7 +60107,7 @@ ], "type": { "type": "reference", - "id": 2927, + "id": 2895, "name": "RepoManager" }, "overwrites": { @@ -60807,49 +60124,7 @@ } }, { - "id": 2936, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - }, - "inheritedFrom": { - "type": "reference", - "id": 2844, - "name": "Manager.cache" - } - }, - { - "id": 2934, + "id": 2902, "name": "client", "kind": 1024, "kindString": "Property", @@ -60857,7 +60132,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 4, "character": 8 } ], @@ -60873,7 +60148,7 @@ } }, { - "id": 2935, + "id": 2903, "name": "url", "kind": 1024, "kindString": "Property", @@ -60883,7 +60158,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 5, "character": 5 } ], @@ -60896,135 +60171,6 @@ "id": 2843, "name": "Manager.url" } - }, - { - "id": 2937, - "name": "add", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 14, - "character": 5 - } - ], - "signatures": [ - { - "id": 2938, - "name": "add", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2939, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - }, - { - "id": 2940, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2846, - "name": "Manager.add" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2845, - "name": "Manager.add" - } - }, - { - "id": 2941, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 2942, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2943, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2850, - "name": "Manager.resolve" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2849, - "name": "Manager.resolve" - } } ], "groups": [ @@ -61032,24 +60178,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2928 + 2896 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2936, - 2934, - 2935 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 2937, - 2941 + 2902, + 2903 ] } ], @@ -64057,28 +63194,28 @@ ] }, { - "id": 2944, + "id": 2904, "name": "UserManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2945, + "id": 2905, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2946, + "id": 2906, "name": "new UserManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2947, + "id": 2907, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -64086,14 +63223,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2948, + "id": 2908, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2949, + "id": 2909, "name": "client", "kind": 1024, "kindString": "Property", @@ -64112,7 +63249,7 @@ } }, { - "id": 2950, + "id": 2910, "name": "url", "kind": 1024, "kindString": "Property", @@ -64137,8 +63274,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2949, - 2950 + 2909, + 2910 ] } ] @@ -64148,7 +63285,7 @@ ], "type": { "type": "reference", - "id": 2944, + "id": 2904, "name": "UserManager" }, "overwrites": { @@ -64165,49 +63302,7 @@ } }, { - "id": 2966, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 7, - "character": 7 - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - }, - { - "type": "intrinsic", - "name": "any" - } - ], - "name": "Collection" - }, - "inheritedFrom": { - "type": "reference", - "id": 2844, - "name": "Manager.cache" - } - }, - { - "id": 2964, + "id": 2921, "name": "client", "kind": 1024, "kindString": "Property", @@ -64215,7 +63310,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 4, "character": 8 } ], @@ -64231,7 +63326,7 @@ } }, { - "id": 2965, + "id": 2922, "name": "url", "kind": 1024, "kindString": "Property", @@ -64241,7 +63336,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 5, "character": 5 } ], @@ -64256,29 +63351,31 @@ } }, { - "id": 2959, - "name": "add", + "id": 2911, + "name": "fetch", "kind": 2048, "kindString": "Method", - "flags": {}, + "flags": { + "isPublic": true + }, "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 41, - "character": 5 + "line": 12, + "character": 20 } ], "signatures": [ { - "id": 2960, - "name": "add", + "id": 2912, + "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2961, - "name": "id", + "id": 2913, + "name": "username", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -64288,252 +63385,146 @@ } }, { - "id": 2962, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "any" - } - }, - { - "id": 2963, - "name": "cache", + "id": 2914, + "name": "options", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "intrinsic", - "name": "boolean" + "type": "reference", + "name": "FetchOptions" }, - "defaultValue": "true" + "defaultValue": "{}" } ], "type": { "type": "reference", - "id": 2700, - "name": "User" - }, - "overwrites": { - "type": "reference", - "id": 2846, - "name": "Manager.add" + "typeArguments": [ + { + "type": "reference", + "id": 2700, + "name": "User" + } + ], + "name": "Promise" } } - ], - "overwrites": { - "type": "reference", - "id": 2845, - "name": "Manager.add" - } + ] }, { - "id": 2951, - "name": "fetch", + "id": 2915, + "name": "list", "kind": 2048, "kindString": "Method", - "flags": {}, + "flags": { + "isPublic": true + }, "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 12, - "character": 13 + "line": 22, + "character": 20 } ], "signatures": [ { - "id": 2952, - "name": "fetch", + "id": 2916, + "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2953, - "name": "username", + "id": 2917, + "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "reflection", - "declaration": { - "id": 2954, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2955, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/usermanager.ts", - "line": 13, - "character": 30 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 2957, - "name": "perPage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/usermanager.ts", - "line": 13, - "character": 65 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, + "type": "reflection", + "declaration": { + "id": 2918, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2920, + "name": "perPage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ { - "id": 2956, - "name": "since", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/usermanager.ts", - "line": 13, - "character": 47 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } + "fileName": "src/managers/usermanager.ts", + "line": 25, + "character": 30 } ], - "groups": [ + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2919, + "name": "since", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ { - "title": "Properties", - "kind": 1024, - "children": [ - 2955, - 2957, - 2956 - ] + "fileName": "src/managers/usermanager.ts", + "line": 25, + "character": 12 } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2920, + 2919 ] } - } - ] - } - }, - { - "id": 2958, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true + ] + } }, - "type": { - "type": "reference", - "name": "FetchOptions" - } + "defaultValue": "{}" } ], "type": { "type": "reference", "typeArguments": [ + { + "type": "intrinsic", + "name": "unknown" + }, { "type": "intrinsic", "name": "any" + }, + { + "type": "intrinsic", + "name": "unknown" } ], - "name": "Promise" + "name": "AsyncGenerator" } } ] - }, - { - "id": 2967, - "name": "resolve", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/manager.ts", - "line": 19, - "character": 9 - } - ], - "signatures": [ - { - "id": 2968, - "name": "resolve", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2969, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "intrinsic", - "name": "string" - }, - { - "type": "intrinsic", - "name": "number" - } - ] - } - } - ], - "type": { - "type": "intrinsic", - "name": "any" - }, - "inheritedFrom": { - "type": "reference", - "id": 2850, - "name": "Manager.resolve" - } - } - ], - "inheritedFrom": { - "type": "reference", - "id": 2849, - "name": "Manager.resolve" - } } ], "groups": [ @@ -64541,25 +63532,23 @@ "title": "Constructors", "kind": 512, "children": [ - 2945 + 2905 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2966, - 2964, - 2965 + 2921, + 2922 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2959, - 2951, - 2967 + 2911, + 2915 ] } ], @@ -64585,22 +63574,22 @@ "kind": 128, "children": [ 109, - 2852, + 2844, 121, 126, 1, 142, 323, 353, - 2889, + 2873, 368, 818, - 2906, + 2882, 2835, 824, - 2927, + 2895, 2700, - 2944 + 2904 ] } ], From df5fbdb21d007003348732b2757b4ee342068f0f Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sun, 18 Jul 2021 16:21:10 +0530 Subject: [PATCH 44/79] fix: partial lint fix --- src/managers/issuemanager.ts | 2 +- src/structures/blocks.ts | 16 +++++++-------- src/structures/client.ts | 4 ++-- src/structures/emails.ts | 40 +++++++++++++++++------------------- src/structures/repo.ts | 6 +++--- src/utils/constants.ts | 7 +++++++ src/utils/error.ts | 6 ++++-- 7 files changed, 44 insertions(+), 37 deletions(-) diff --git a/src/managers/issuemanager.ts b/src/managers/issuemanager.ts index 8148106..f2b032a 100644 --- a/src/managers/issuemanager.ts +++ b/src/managers/issuemanager.ts @@ -12,7 +12,7 @@ class IssueManager extends Manager { * @param {number} id - issue number * @param {FetchOptions} options */ - async fetch(id: number, options: FetchOptions = {}) {} + async fetch(id: number, options: FetchOptions): Promise {} } export default IssueManager; diff --git a/src/structures/blocks.ts b/src/structures/blocks.ts index a2fd383..57ddaed 100644 --- a/src/structures/blocks.ts +++ b/src/structures/blocks.ts @@ -21,8 +21,8 @@ class Blocks extends Base { ); return body; }) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } @@ -35,8 +35,8 @@ class Blocks extends Base { return res.status === 204 ? true : false; throw new GHError(res, await res.json()); }) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } @@ -45,8 +45,8 @@ class Blocks extends Base { .req(`user/blocks/${username}`, { _: true }) .put() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); return res.ok ? true : false; } @@ -56,8 +56,8 @@ class Blocks extends Base { .req(`user/blocks/${username}`, { _: true }) .delete() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); return res.ok ? true : false; } diff --git a/src/structures/client.ts b/src/structures/client.ts index 37a2f84..6792228 100644 --- a/src/structures/client.ts +++ b/src/structures/client.ts @@ -33,8 +33,8 @@ class Client extends Events.EventEmitter { this.ready = true; this.emit("ready"); }) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); else { this.ready = true; diff --git a/src/structures/emails.ts b/src/structures/emails.ts index a70505f..c293e33 100644 --- a/src/structures/emails.ts +++ b/src/structures/emails.ts @@ -1,4 +1,5 @@ import { Response } from "node-fetch"; +import { Email } from "../utils"; import Base from "./base"; import Client from "./client"; @@ -8,60 +9,57 @@ class Emails extends Base { } async setPrimaryVisibility( - visibility: any, + visibility: string, email?: string - ): Promise<{ - email: string; - verified: boolean; - primary: boolean; - visibility: string; - }> { + ): Promise { return await this.client.api .req("user/email/visibility", { body: { visibility, email } }) .patch() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } - async list(options: { page?: number; perPage?: number } = {}) { + async list( + options: { page?: number; perPage?: number } = {} + ): Promise { return await this.client.api .req("user/emails", { query: options }) .get() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } - async add(...emails: string[]) { + async add(...emails: string[]): Promise { return await this.client.api .req("user/emails", { body: { emails } }) .post() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } - async remove(...emails: string[]) { + async remove(...emails: string[]): Promise { return await this.client.api .req("user/emails", { body: { emails } }) .delete() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } - async listPublic(options = {}) { + async listPublic(options = {}): Promise { return await this.client.api .req("user/public_emails", { query: options }) .get() .then((res: Response) => res.json()) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } } diff --git a/src/structures/repo.ts b/src/structures/repo.ts index 8e009e9..5f0aec7 100644 --- a/src/structures/repo.ts +++ b/src/structures/repo.ts @@ -98,9 +98,9 @@ class Repo extends Base { return this.data.created_at; } - // public get() { - // return this.data - // } + public get defaultBranch(): RepoData["default_branch"] { + return this.data.default_branch; + } } export default Repo; diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 61abfc5..64062c6 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -7,3 +7,10 @@ export interface FetchOptions { * @typedef {Object} FetchOptions * @property {boolean} auth - Whether to use authendicate the user using the token provided to the client. If there is not token this option is invalid */ + +export type Email = { + email: string; + verified: boolean; + primary: boolean; + visibility: string; +}; diff --git a/src/utils/error.ts b/src/utils/error.ts index 7a8496b..77f2c7e 100644 --- a/src/utils/error.ts +++ b/src/utils/error.ts @@ -1,9 +1,11 @@ import { Response } from "node-fetch"; class GHError extends Error { + raw: Record; constructor(res: Response, json: { message?: string } = {}) { - super(res.statusText); - this.message = json?.message ?? "No error data from api"; + super(json.message ?? res.statusText); + this.name = "GitHubAPIError"; + this.raw = json; } } From 511dd40d2f0d8fdebeaab07f8face9f6b1df90fe Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Sun, 18 Jul 2021 10:51:47 +0000 Subject: [PATCH 45/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 8845 +++++++++++++++++++++++------------------------ 1 file changed, 4397 insertions(+), 4448 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 75fb358..4d2f149 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -138,7 +138,7 @@ ], "type": { "type": "reference", - "id": 2844, + "id": 2841, "name": "ArtifactsManager" } }, @@ -238,28 +238,28 @@ ] }, { - "id": 2844, + "id": 2841, "name": "ArtifactsManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2845, + "id": 2842, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2846, + "id": 2843, "name": "new ArtifactsManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2847, + "id": 2844, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -267,14 +267,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2848, + "id": 2845, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2849, + "id": 2846, "name": "client", "kind": 1024, "kindString": "Property", @@ -298,7 +298,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2849 + 2846 ] } ] @@ -306,7 +306,7 @@ } }, { - "id": 2850, + "id": 2847, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -314,14 +314,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2851, + "id": 2848, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2852, + "id": 2849, "name": "owner", "kind": 1024, "kindString": "Property", @@ -339,7 +339,7 @@ } }, { - "id": 2853, + "id": 2850, "name": "repo", "kind": 1024, "kindString": "Property", @@ -362,8 +362,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2852, - 2853 + 2849, + 2850 ] } ] @@ -373,24 +373,24 @@ ], "type": { "type": "reference", - "id": 2844, + "id": 2841, "name": "ArtifactsManager" }, "overwrites": { "type": "reference", - "id": 2837, + "id": 2834, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2836, + "id": 2833, "name": "Manager.constructor" } }, { - "id": 2871, + "id": 2868, "name": "client", "kind": 1024, "kindString": "Property", @@ -409,12 +409,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2842, + "id": 2839, "name": "Manager.client" } }, { - "id": 2854, + "id": 2851, "name": "owner", "kind": 1024, "kindString": "Property", @@ -432,7 +432,7 @@ } }, { - "id": 2855, + "id": 2852, "name": "repo", "kind": 1024, "kindString": "Property", @@ -450,7 +450,7 @@ } }, { - "id": 2872, + "id": 2869, "name": "url", "kind": 1024, "kindString": "Property", @@ -470,12 +470,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2843, + "id": 2840, "name": "Manager.url" } }, { - "id": 2865, + "id": 2862, "name": "delete", "kind": 2048, "kindString": "Method", @@ -489,14 +489,14 @@ ], "signatures": [ { - "id": 2866, + "id": 2863, "name": "delete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2867, + "id": 2864, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -521,7 +521,7 @@ ] }, { - "id": 2868, + "id": 2865, "name": "download", "kind": 2048, "kindString": "Method", @@ -535,14 +535,14 @@ ], "signatures": [ { - "id": 2869, + "id": 2866, "name": "download", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2870, + "id": 2867, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -567,7 +567,7 @@ ] }, { - "id": 2862, + "id": 2859, "name": "get", "kind": 2048, "kindString": "Method", @@ -581,14 +581,14 @@ ], "signatures": [ { - "id": 2863, + "id": 2860, "name": "get", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2864, + "id": 2861, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -613,7 +613,7 @@ ] }, { - "id": 2856, + "id": 2853, "name": "list", "kind": 2048, "kindString": "Method", @@ -627,14 +627,14 @@ ], "signatures": [ { - "id": 2857, + "id": 2854, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2858, + "id": 2855, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -642,14 +642,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2859, + "id": 2856, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2860, + "id": 2857, "name": "page", "kind": 1024, "kindString": "Property", @@ -669,7 +669,7 @@ } }, { - "id": 2861, + "id": 2858, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -694,8 +694,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2860, - 2861 + 2857, + 2858 ] } ] @@ -722,27 +722,27 @@ "title": "Constructors", "kind": 512, "children": [ - 2845 + 2842 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2871, - 2854, - 2855, - 2872 + 2868, + 2851, + 2852, + 2869 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2865, - 2868, 2862, - 2856 + 2865, + 2859, + 2853 ] } ], @@ -756,7 +756,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2835, + "id": 2832, "name": "Manager" } ] @@ -864,12 +864,12 @@ }, { "type": "reference", - "id": 368, + "id": 363, "name": "Gist" }, { "type": "reference", - "id": 824, + "id": 819, "name": "Repo" } ] @@ -1069,7 +1069,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2700, + "id": 2697, "name": "User" } } @@ -1368,7 +1368,7 @@ ], "type": { "type": "reference", - "id": 2904, + "id": 2901, "name": "UserManager" } }, @@ -5422,14 +5422,14 @@ }, "overwrites": { "type": "reference", - "id": 2702, + "id": 2699, "name": "User.constructor" } } ], "overwrites": { "type": "reference", - "id": 2701, + "id": 2698, "name": "User.constructor" } }, @@ -5452,7 +5452,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2807, + "id": 2804, "name": "User.avatarUrl" } }, @@ -5477,7 +5477,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2827, + "id": 2824, "name": "User.bio" } }, @@ -5521,7 +5521,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2823, + "id": 2820, "name": "User.blog" } }, @@ -5559,7 +5559,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2803, + "id": 2800, "name": "User.client" } }, @@ -5604,7 +5604,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2822, + "id": 2819, "name": "User.company" } }, @@ -5629,7 +5629,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2833, + "id": 2830, "name": "User.createdAt" } }, @@ -5683,7 +5683,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2825, + "id": 2822, "name": "User.email" } }, @@ -5727,7 +5727,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2818, + "id": 2815, "name": "User.eventsUrl" } }, @@ -5752,7 +5752,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2831, + "id": 2828, "name": "User.followers" } }, @@ -5777,7 +5777,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2812, + "id": 2809, "name": "User.followersUrl" } }, @@ -5802,7 +5802,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2832, + "id": 2829, "name": "User.following" } }, @@ -5827,7 +5827,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2811, + "id": 2808, "name": "User.followingUrl" } }, @@ -5852,7 +5852,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2813, + "id": 2810, "name": "User.gistsUrl" } }, @@ -5875,7 +5875,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2808, + "id": 2805, "name": "User.gravatarId" } }, @@ -5909,7 +5909,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2826, + "id": 2823, "name": "User.hireable" } }, @@ -5932,7 +5932,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2810, + "id": 2807, "name": "User.htmlUrl" } }, @@ -5955,7 +5955,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2805, + "id": 2802, "name": "User.id" } }, @@ -5980,7 +5980,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2824, + "id": 2821, "name": "User.location" } }, @@ -6003,7 +6003,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2804, + "id": 2801, "name": "User.login" } }, @@ -6026,7 +6026,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2806, + "id": 2803, "name": "User.nodeId" } }, @@ -6051,7 +6051,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2816, + "id": 2813, "name": "User.organizationsUrl" } }, @@ -6234,7 +6234,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2830, + "id": 2827, "name": "User.publicGists" } }, @@ -6259,7 +6259,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2829, + "id": 2826, "name": "User.publicRepos" } }, @@ -6284,7 +6284,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2819, + "id": 2816, "name": "User.receivedEventsUrl" } }, @@ -6309,7 +6309,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2817, + "id": 2814, "name": "User.reposUrl" } }, @@ -6334,7 +6334,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2821, + "id": 2818, "name": "User.siteAdmin" } }, @@ -6359,7 +6359,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2814, + "id": 2811, "name": "User.starredUrl" } }, @@ -6384,7 +6384,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2815, + "id": 2812, "name": "User.subscriptionsUrl" } }, @@ -6438,7 +6438,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2828, + "id": 2825, "name": "User.twitterUsername" } }, @@ -6463,7 +6463,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2820, + "id": 2817, "name": "User.type" } }, @@ -6488,7 +6488,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2834, + "id": 2831, "name": "User.updatedAt" } }, @@ -6511,7 +6511,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2809, + "id": 2806, "name": "User.url" } }, @@ -7223,7 +7223,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2700, + "id": 2697, "name": "User" } ] @@ -7281,7 +7281,7 @@ } }, { - "id": 352, + "id": 347, "name": "client", "kind": 1024, "kindString": "Property", @@ -7305,7 +7305,7 @@ } }, { - "id": 342, + "id": 337, "name": "add", "kind": 2048, "kindString": "Method", @@ -7313,20 +7313,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 38, + "line": 36, "character": 11 } ], "signatures": [ { - "id": 343, + "id": 338, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 344, + "id": 339, "name": "emails", "kind": 32768, "kindString": "Parameter", @@ -7346,8 +7346,11 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "array", + "elementType": { + "type": "reference", + "name": "Email" + } } ], "name": "Promise" @@ -7356,7 +7359,7 @@ ] }, { - "id": 336, + "id": 331, "name": "list", "kind": 2048, "kindString": "Method", @@ -7364,20 +7367,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 28, + "line": 24, "character": 12 } ], "signatures": [ { - "id": 337, + "id": 332, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 338, + "id": 333, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -7385,14 +7388,14 @@ "type": { "type": "reflection", "declaration": { - "id": 339, + "id": 334, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 340, + "id": 335, "name": "page", "kind": 1024, "kindString": "Property", @@ -7402,8 +7405,8 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 28, - "character": 28 + "line": 25, + "character": 19 } ], "type": { @@ -7412,7 +7415,7 @@ } }, { - "id": 341, + "id": 336, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -7422,8 +7425,8 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 28, - "character": 46 + "line": 25, + "character": 37 } ], "type": { @@ -7437,8 +7440,8 @@ "title": "Properties", "kind": 1024, "children": [ - 340, - 341 + 335, + 336 ] } ] @@ -7451,8 +7454,11 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "array", + "elementType": { + "type": "reference", + "name": "Email" + } } ], "name": "Promise" @@ -7461,7 +7467,7 @@ ] }, { - "id": 348, + "id": 343, "name": "listPublic", "kind": 2048, "kindString": "Method", @@ -7469,20 +7475,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 58, + "line": 56, "character": 18 } ], "signatures": [ { - "id": 349, + "id": 344, "name": "listPublic", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 350, + "id": 345, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -7490,7 +7496,7 @@ "type": { "type": "reflection", "declaration": { - "id": 351, + "id": 346, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -7504,8 +7510,11 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "array", + "elementType": { + "type": "reference", + "name": "Email" + } } ], "name": "Promise" @@ -7514,7 +7523,7 @@ ] }, { - "id": 345, + "id": 340, "name": "remove", "kind": 2048, "kindString": "Method", @@ -7522,20 +7531,20 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 48, + "line": 46, "character": 14 } ], "signatures": [ { - "id": 346, + "id": 341, "name": "remove", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 347, + "id": 342, "name": "emails", "kind": 32768, "kindString": "Parameter", @@ -7555,8 +7564,11 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "array", + "elementType": { + "type": "reference", + "name": "Email" + } } ], "name": "Promise" @@ -7573,7 +7585,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 10, + "line": 11, "character": 28 } ], @@ -7593,7 +7605,7 @@ "flags": {}, "type": { "type": "intrinsic", - "name": "any" + "name": "string" } }, { @@ -7614,100 +7626,8 @@ "type": "reference", "typeArguments": [ { - "type": "reflection", - "declaration": { - "id": 331, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 332, - "name": "email", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/emails.ts", - "line": 14, - "character": 9 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 334, - "name": "primary", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/emails.ts", - "line": 16, - "character": 11 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 333, - "name": "verified", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/emails.ts", - "line": 15, - "character": 12 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 335, - "name": "visibility", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/emails.ts", - "line": 17, - "character": 14 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 332, - 334, - 333, - 335 - ] - } - ] - } + "type": "reference", + "name": "Email" } ], "name": "Promise" @@ -7728,17 +7648,17 @@ "title": "Properties", "kind": 1024, "children": [ - 352 + 347 ] }, { "title": "Methods", "kind": 2048, "children": [ - 342, - 336, - 348, - 345, + 337, + 331, + 343, + 340, 327 ] } @@ -7746,7 +7666,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 5, + "line": 6, "character": 12 } ], @@ -7759,28 +7679,28 @@ ] }, { - "id": 353, + "id": 348, "name": "Follows", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 354, + "id": 349, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 355, + "id": 350, "name": "new Follows", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 356, + "id": 351, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -7792,7 +7712,7 @@ } }, { - "id": 357, + "id": 352, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -7800,14 +7720,14 @@ "type": { "type": "reflection", "declaration": { - "id": 358, + "id": 353, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 359, + "id": 354, "name": "username", "kind": 1024, "kindString": "Property", @@ -7830,7 +7750,7 @@ "title": "Properties", "kind": 1024, "children": [ - 359 + 354 ] } ] @@ -7840,14 +7760,14 @@ ], "type": { "type": "reference", - "id": 353, + "id": 348, "name": "Follows" } } ] }, { - "id": 360, + "id": 355, "name": "client", "kind": 1024, "kindString": "Property", @@ -7866,7 +7786,7 @@ } }, { - "id": 361, + "id": 356, "name": "username", "kind": 1024, "kindString": "Property", @@ -7884,7 +7804,7 @@ } }, { - "id": 362, + "id": 357, "name": "list", "kind": 2048, "kindString": "Method", @@ -7898,14 +7818,14 @@ ], "signatures": [ { - "id": 363, + "id": 358, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 364, + "id": 359, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -7913,14 +7833,14 @@ "type": { "type": "reflection", "declaration": { - "id": 365, + "id": 360, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 366, + "id": 361, "name": "page", "kind": 1024, "kindString": "Property", @@ -7940,7 +7860,7 @@ } }, { - "id": 367, + "id": 362, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -7965,8 +7885,8 @@ "title": "Properties", "kind": 1024, "children": [ - 366, - 367 + 361, + 362 ] } ] @@ -7996,22 +7916,22 @@ "title": "Constructors", "kind": 512, "children": [ - 354 + 349 ] }, { "title": "Properties", "kind": 1024, "children": [ - 360, - 361 + 355, + 356 ] }, { "title": "Methods", "kind": 2048, "children": [ - 362 + 357 ] } ], @@ -8024,28 +7944,28 @@ ] }, { - "id": 2873, + "id": 2870, "name": "ForkManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2874, + "id": 2871, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2875, + "id": 2872, "name": "new ForkManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2876, + "id": 2873, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -8057,7 +7977,7 @@ } }, { - "id": 2877, + "id": 2874, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -8065,14 +7985,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2878, + "id": 2875, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2879, + "id": 2876, "name": "url", "kind": 1024, "kindString": "Property", @@ -8097,7 +8017,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2879 + 2876 ] } ] @@ -8107,24 +8027,24 @@ ], "type": { "type": "reference", - "id": 2873, + "id": 2870, "name": "ForkManager" }, "overwrites": { "type": "reference", - "id": 2837, + "id": 2834, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2836, + "id": 2833, "name": "Manager.constructor" } }, { - "id": 2880, + "id": 2877, "name": "client", "kind": 1024, "kindString": "Property", @@ -8143,12 +8063,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2842, + "id": 2839, "name": "Manager.client" } }, { - "id": 2881, + "id": 2878, "name": "url", "kind": 1024, "kindString": "Property", @@ -8168,7 +8088,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2843, + "id": 2840, "name": "Manager.url" } } @@ -8178,15 +8098,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2874 + 2871 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2880, - 2881 + 2877, + 2878 ] } ], @@ -8200,34 +8120,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2835, + "id": 2832, "name": "Manager" } ] }, { - "id": 368, + "id": 363, "name": "Gist", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 369, + "id": 364, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 370, + "id": 365, "name": "new Gist", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 371, + "id": 366, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -8235,14 +8155,14 @@ "type": { "type": "reflection", "declaration": { - "id": 372, + "id": 367, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 563, + "id": 558, "name": "comments", "kind": 1024, "kindString": "Property", @@ -8263,7 +8183,7 @@ } }, { - "id": 565, + "id": 560, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -8284,7 +8204,7 @@ } }, { - "id": 541, + "id": 536, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -8305,7 +8225,7 @@ } }, { - "id": 560, + "id": 555, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -8326,7 +8246,7 @@ } }, { - "id": 562, + "id": 557, "name": "description", "kind": 1024, "kindString": "Property", @@ -8356,7 +8276,7 @@ } }, { - "id": 547, + "id": 542, "name": "files", "kind": 1024, "kindString": "Property", @@ -8374,20 +8294,20 @@ "type": { "type": "reflection", "declaration": { - "id": 548, + "id": 543, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 549, + "id": 544, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 550, + "id": 545, "name": "key", "kind": 32768, "flags": {}, @@ -8403,14 +8323,14 @@ { "type": "reflection", "declaration": { - "id": 551, + "id": 546, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 558, + "id": 553, "name": "content", "kind": 1024, "kindString": "Property", @@ -8431,7 +8351,7 @@ } }, { - "id": 552, + "id": 547, "name": "filename", "kind": 1024, "kindString": "Property", @@ -8452,7 +8372,7 @@ } }, { - "id": 554, + "id": 549, "name": "language", "kind": 1024, "kindString": "Property", @@ -8473,7 +8393,7 @@ } }, { - "id": 555, + "id": 550, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -8494,7 +8414,7 @@ } }, { - "id": 556, + "id": 551, "name": "size", "kind": 1024, "kindString": "Property", @@ -8515,7 +8435,7 @@ } }, { - "id": 557, + "id": 552, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -8536,7 +8456,7 @@ } }, { - "id": 553, + "id": 548, "name": "type", "kind": 1024, "kindString": "Property", @@ -8562,13 +8482,13 @@ "title": "Properties", "kind": 1024, "children": [ - 558, + 553, + 547, + 549, + 550, + 551, 552, - 554, - 555, - 556, - 557, - 553 + 548 ] } ], @@ -8592,7 +8512,7 @@ } }, { - "id": 458, + "id": 453, "name": "fork_of", "kind": 1024, "kindString": "Property", @@ -8620,14 +8540,14 @@ { "type": "reflection", "declaration": { - "id": 459, + "id": 454, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 482, + "id": 477, "name": "comments", "kind": 1024, "kindString": "Property", @@ -8647,7 +8567,7 @@ } }, { - "id": 506, + "id": 501, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -8667,7 +8587,7 @@ } }, { - "id": 462, + "id": 457, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -8687,7 +8607,7 @@ } }, { - "id": 479, + "id": 474, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -8707,7 +8627,7 @@ } }, { - "id": 481, + "id": 476, "name": "description", "kind": 1024, "kindString": "Property", @@ -8736,7 +8656,7 @@ } }, { - "id": 468, + "id": 463, "name": "files", "kind": 1024, "kindString": "Property", @@ -8753,20 +8673,20 @@ "type": { "type": "reflection", "declaration": { - "id": 469, + "id": 464, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 470, + "id": 465, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 471, + "id": 466, "name": "key", "kind": 32768, "flags": {}, @@ -8779,14 +8699,14 @@ "type": { "type": "reflection", "declaration": { - "id": 472, + "id": 467, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 473, + "id": 468, "name": "filename", "kind": 1024, "kindString": "Property", @@ -8807,7 +8727,7 @@ } }, { - "id": 475, + "id": 470, "name": "language", "kind": 1024, "kindString": "Property", @@ -8828,7 +8748,7 @@ } }, { - "id": 476, + "id": 471, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -8849,7 +8769,7 @@ } }, { - "id": 477, + "id": 472, "name": "size", "kind": 1024, "kindString": "Property", @@ -8870,7 +8790,7 @@ } }, { - "id": 474, + "id": 469, "name": "type", "kind": 1024, "kindString": "Property", @@ -8896,11 +8816,11 @@ "title": "Properties", "kind": 1024, "children": [ - 473, - 475, - 476, - 477, - 474 + 468, + 470, + 471, + 472, + 469 ] } ], @@ -8918,7 +8838,7 @@ } }, { - "id": 531, + "id": 526, "name": "forks", "kind": 1024, "kindString": "Property", @@ -8938,20 +8858,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 532, + "id": 527, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 533, + "id": 528, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 534, + "id": 529, "name": "key", "kind": 32768, "flags": {}, @@ -8971,7 +8891,7 @@ } }, { - "id": 461, + "id": 456, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -8991,7 +8911,7 @@ } }, { - "id": 465, + "id": 460, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -9011,7 +8931,7 @@ } }, { - "id": 466, + "id": 461, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -9031,7 +8951,7 @@ } }, { - "id": 535, + "id": 530, "name": "history", "kind": 1024, "kindString": "Property", @@ -9051,20 +8971,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 536, + "id": 531, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 537, + "id": 532, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 538, + "id": 533, "name": "key", "kind": 32768, "flags": {}, @@ -9084,7 +9004,7 @@ } }, { - "id": 467, + "id": 462, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9104,7 +9024,7 @@ } }, { - "id": 463, + "id": 458, "name": "id", "kind": 1024, "kindString": "Property", @@ -9124,7 +9044,7 @@ } }, { - "id": 464, + "id": 459, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -9144,7 +9064,7 @@ } }, { - "id": 507, + "id": 502, "name": "owner", "kind": 1024, "kindString": "Property", @@ -9169,14 +9089,14 @@ { "type": "reflection", "declaration": { - "id": 508, + "id": 503, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 514, + "id": 509, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -9196,7 +9116,7 @@ } }, { - "id": 510, + "id": 505, "name": "email", "kind": 1024, "kindString": "Property", @@ -9226,7 +9146,7 @@ } }, { - "id": 525, + "id": 520, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -9246,7 +9166,7 @@ } }, { - "id": 518, + "id": 513, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -9266,7 +9186,7 @@ } }, { - "id": 519, + "id": 514, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -9286,7 +9206,7 @@ } }, { - "id": 520, + "id": 515, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -9306,7 +9226,7 @@ } }, { - "id": 515, + "id": 510, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -9335,7 +9255,7 @@ } }, { - "id": 517, + "id": 512, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9355,7 +9275,7 @@ } }, { - "id": 512, + "id": 507, "name": "id", "kind": 1024, "kindString": "Property", @@ -9375,7 +9295,7 @@ } }, { - "id": 511, + "id": 506, "name": "login", "kind": 1024, "kindString": "Property", @@ -9395,7 +9315,7 @@ } }, { - "id": 509, + "id": 504, "name": "name", "kind": 1024, "kindString": "Property", @@ -9425,7 +9345,7 @@ } }, { - "id": 513, + "id": 508, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -9445,7 +9365,7 @@ } }, { - "id": 523, + "id": 518, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -9465,7 +9385,7 @@ } }, { - "id": 526, + "id": 521, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -9485,7 +9405,7 @@ } }, { - "id": 524, + "id": 519, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -9505,7 +9425,7 @@ } }, { - "id": 528, + "id": 523, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -9525,7 +9445,7 @@ } }, { - "id": 529, + "id": 524, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -9546,7 +9466,7 @@ } }, { - "id": 521, + "id": 516, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -9566,7 +9486,7 @@ } }, { - "id": 522, + "id": 517, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -9586,7 +9506,7 @@ } }, { - "id": 527, + "id": 522, "name": "type", "kind": 1024, "kindString": "Property", @@ -9606,7 +9526,7 @@ } }, { - "id": 516, + "id": 511, "name": "url", "kind": 1024, "kindString": "Property", @@ -9631,27 +9551,27 @@ "title": "Properties", "kind": 1024, "children": [ + 509, + 505, + 520, + 513, 514, + 515, 510, - 525, + 512, + 507, + 506, + 504, + 508, 518, + 521, 519, - 520, - 515, - 517, - 512, - 511, - 509, - 513, 523, - 526, 524, - 528, - 529, - 521, + 516, + 517, 522, - 527, - 516 + 511 ] } ] @@ -9661,7 +9581,7 @@ } }, { - "id": 478, + "id": 473, "name": "public", "kind": 1024, "kindString": "Property", @@ -9681,7 +9601,7 @@ } }, { - "id": 530, + "id": 525, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -9702,7 +9622,7 @@ } }, { - "id": 480, + "id": 475, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -9722,7 +9642,7 @@ } }, { - "id": 460, + "id": 455, "name": "url", "kind": 1024, "kindString": "Property", @@ -9742,7 +9662,7 @@ } }, { - "id": 483, + "id": 478, "name": "user", "kind": 1024, "kindString": "Property", @@ -9766,14 +9686,14 @@ { "type": "reflection", "declaration": { - "id": 484, + "id": 479, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 490, + "id": 485, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -9793,7 +9713,7 @@ } }, { - "id": 486, + "id": 481, "name": "email", "kind": 1024, "kindString": "Property", @@ -9823,7 +9743,7 @@ } }, { - "id": 501, + "id": 496, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -9843,7 +9763,7 @@ } }, { - "id": 494, + "id": 489, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -9863,7 +9783,7 @@ } }, { - "id": 495, + "id": 490, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -9883,7 +9803,7 @@ } }, { - "id": 496, + "id": 491, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -9903,7 +9823,7 @@ } }, { - "id": 491, + "id": 486, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -9932,7 +9852,7 @@ } }, { - "id": 493, + "id": 488, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9952,7 +9872,7 @@ } }, { - "id": 488, + "id": 483, "name": "id", "kind": 1024, "kindString": "Property", @@ -9972,7 +9892,7 @@ } }, { - "id": 487, + "id": 482, "name": "login", "kind": 1024, "kindString": "Property", @@ -9992,7 +9912,7 @@ } }, { - "id": 485, + "id": 480, "name": "name", "kind": 1024, "kindString": "Property", @@ -10022,7 +9942,7 @@ } }, { - "id": 489, + "id": 484, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -10042,7 +9962,7 @@ } }, { - "id": 499, + "id": 494, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -10062,7 +9982,7 @@ } }, { - "id": 502, + "id": 497, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -10082,7 +10002,7 @@ } }, { - "id": 500, + "id": 495, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -10102,7 +10022,7 @@ } }, { - "id": 504, + "id": 499, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -10122,7 +10042,7 @@ } }, { - "id": 505, + "id": 500, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -10143,7 +10063,7 @@ } }, { - "id": 497, + "id": 492, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -10163,7 +10083,7 @@ } }, { - "id": 498, + "id": 493, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -10183,7 +10103,7 @@ } }, { - "id": 503, + "id": 498, "name": "type", "kind": 1024, "kindString": "Property", @@ -10203,7 +10123,7 @@ } }, { - "id": 492, + "id": 487, "name": "url", "kind": 1024, "kindString": "Property", @@ -10228,27 +10148,27 @@ "title": "Properties", "kind": 1024, "children": [ + 485, + 481, + 496, + 489, 490, + 491, 486, - 501, + 488, + 483, + 482, + 480, + 484, 494, + 497, 495, - 496, - 491, - 493, - 488, - 487, - 485, - 489, 499, - 502, 500, - 504, - 505, - 497, + 492, + 493, 498, - 503, - 492 + 487 ] } ] @@ -10263,26 +10183,26 @@ "title": "Properties", "kind": 1024, "children": [ - 482, - 506, - 462, - 479, - 481, - 468, - 531, - 461, - 465, - 466, - 535, - 467, + 477, + 501, + 457, + 474, + 476, 463, - 464, - 507, - 478, - 530, - 480, + 526, + 456, 460, - 483 + 461, + 530, + 462, + 458, + 459, + 502, + 473, + 525, + 475, + 455, + 478 ] } ] @@ -10292,7 +10212,7 @@ } }, { - "id": 373, + "id": 368, "name": "forks", "kind": 1024, "kindString": "Property", @@ -10319,14 +10239,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 374, + "id": 369, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 423, + "id": 418, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10347,7 +10267,7 @@ } }, { - "id": 375, + "id": 370, "name": "id", "kind": 1024, "kindString": "Property", @@ -10368,7 +10288,7 @@ } }, { - "id": 424, + "id": 419, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -10389,7 +10309,7 @@ } }, { - "id": 376, + "id": 371, "name": "url", "kind": 1024, "kindString": "Property", @@ -10410,7 +10330,7 @@ } }, { - "id": 377, + "id": 372, "name": "user", "kind": 1024, "kindString": "Property", @@ -10428,14 +10348,14 @@ "type": { "type": "reflection", "declaration": { - "id": 378, + "id": 373, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 382, + "id": 377, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -10455,7 +10375,7 @@ } }, { - "id": 403, + "id": 398, "name": "bio", "kind": 1024, "kindString": "Property", @@ -10484,7 +10404,7 @@ } }, { - "id": 399, + "id": 394, "name": "blog", "kind": 1024, "kindString": "Property", @@ -10513,7 +10433,7 @@ } }, { - "id": 422, + "id": 417, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -10534,7 +10454,7 @@ } }, { - "id": 398, + "id": 393, "name": "company", "kind": 1024, "kindString": "Property", @@ -10563,7 +10483,7 @@ } }, { - "id": 409, + "id": 404, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10583,7 +10503,7 @@ } }, { - "id": 421, + "id": 416, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -10604,7 +10524,7 @@ } }, { - "id": 401, + "id": 396, "name": "email", "kind": 1024, "kindString": "Property", @@ -10633,7 +10553,7 @@ } }, { - "id": 393, + "id": 388, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -10653,7 +10573,7 @@ } }, { - "id": 407, + "id": 402, "name": "followers", "kind": 1024, "kindString": "Property", @@ -10673,7 +10593,7 @@ } }, { - "id": 386, + "id": 381, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -10693,7 +10613,7 @@ } }, { - "id": 408, + "id": 403, "name": "following", "kind": 1024, "kindString": "Property", @@ -10713,7 +10633,7 @@ } }, { - "id": 387, + "id": 382, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -10733,7 +10653,7 @@ } }, { - "id": 388, + "id": 383, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -10753,7 +10673,7 @@ } }, { - "id": 383, + "id": 378, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -10782,7 +10702,7 @@ } }, { - "id": 402, + "id": 397, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -10811,7 +10731,7 @@ } }, { - "id": 385, + "id": 380, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -10831,7 +10751,7 @@ } }, { - "id": 380, + "id": 375, "name": "id", "kind": 1024, "kindString": "Property", @@ -10851,7 +10771,7 @@ } }, { - "id": 400, + "id": 395, "name": "location", "kind": 1024, "kindString": "Property", @@ -10880,7 +10800,7 @@ } }, { - "id": 379, + "id": 374, "name": "login", "kind": 1024, "kindString": "Property", @@ -10900,7 +10820,7 @@ } }, { - "id": 397, + "id": 392, "name": "name", "kind": 1024, "kindString": "Property", @@ -10929,7 +10849,7 @@ } }, { - "id": 381, + "id": 376, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -10949,7 +10869,7 @@ } }, { - "id": 391, + "id": 386, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -10969,7 +10889,7 @@ } }, { - "id": 420, + "id": 415, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -10990,7 +10910,7 @@ } }, { - "id": 411, + "id": 406, "name": "plan", "kind": 1024, "kindString": "Property", @@ -11008,14 +10928,14 @@ "type": { "type": "reflection", "declaration": { - "id": 412, + "id": 407, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 413, + "id": 408, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -11035,7 +10955,7 @@ } }, { - "id": 414, + "id": 409, "name": "name", "kind": 1024, "kindString": "Property", @@ -11055,7 +10975,7 @@ } }, { - "id": 416, + "id": 411, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -11075,7 +10995,7 @@ } }, { - "id": 415, + "id": 410, "name": "space", "kind": 1024, "kindString": "Property", @@ -11100,10 +11020,10 @@ "title": "Properties", "kind": 1024, "children": [ - 413, - 414, - 416, - 415 + 408, + 409, + 411, + 410 ] } ] @@ -11111,7 +11031,7 @@ } }, { - "id": 418, + "id": 413, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -11132,7 +11052,7 @@ } }, { - "id": 406, + "id": 401, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -11152,7 +11072,7 @@ } }, { - "id": 405, + "id": 400, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -11172,7 +11092,7 @@ } }, { - "id": 394, + "id": 389, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -11192,7 +11112,7 @@ } }, { - "id": 392, + "id": 387, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -11212,7 +11132,7 @@ } }, { - "id": 396, + "id": 391, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -11232,7 +11152,7 @@ } }, { - "id": 389, + "id": 384, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -11252,7 +11172,7 @@ } }, { - "id": 390, + "id": 385, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -11272,7 +11192,7 @@ } }, { - "id": 417, + "id": 412, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -11302,7 +11222,7 @@ } }, { - "id": 419, + "id": 414, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -11323,7 +11243,7 @@ } }, { - "id": 404, + "id": 399, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -11353,7 +11273,7 @@ } }, { - "id": 395, + "id": 390, "name": "type", "kind": 1024, "kindString": "Property", @@ -11373,7 +11293,7 @@ } }, { - "id": 410, + "id": 405, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -11393,7 +11313,7 @@ } }, { - "id": 384, + "id": 379, "name": "url", "kind": 1024, "kindString": "Property", @@ -11418,45 +11338,45 @@ "title": "Properties", "kind": 1024, "children": [ - 382, - 403, - 399, - 422, + 377, 398, - 409, - 421, - 401, + 394, + 417, 393, - 407, - 386, - 408, - 387, + 404, + 416, + 396, 388, - 383, 402, - 385, - 380, - 400, - 379, - 397, 381, - 391, - 420, - 411, - 418, - 406, - 405, - 394, + 403, + 382, + 383, + 378, + 397, + 380, + 375, + 395, + 374, 392, - 396, + 376, + 386, + 415, + 406, + 413, + 401, + 400, 389, + 387, + 391, + 384, + 385, + 412, + 414, + 399, 390, - 417, - 419, - 404, - 395, - 410, - 384 + 405, + 379 ] } ] @@ -11469,11 +11389,11 @@ "title": "Properties", "kind": 1024, "children": [ - 423, - 375, - 424, - 376, - 377 + 418, + 370, + 419, + 371, + 372 ] } ] @@ -11484,7 +11404,7 @@ } }, { - "id": 540, + "id": 535, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -11505,7 +11425,7 @@ } }, { - "id": 544, + "id": 539, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -11526,7 +11446,7 @@ } }, { - "id": 545, + "id": 540, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -11547,7 +11467,7 @@ } }, { - "id": 425, + "id": 420, "name": "history", "kind": 1024, "kindString": "Property", @@ -11574,14 +11494,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 426, + "id": 421, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 452, + "id": 447, "name": "change_status", "kind": 1024, "kindString": "Property", @@ -11599,14 +11519,14 @@ "type": { "type": "reflection", "declaration": { - "id": 453, + "id": 448, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 455, + "id": 450, "name": "additions", "kind": 1024, "kindString": "Property", @@ -11627,7 +11547,7 @@ } }, { - "id": 456, + "id": 451, "name": "deletions", "kind": 1024, "kindString": "Property", @@ -11648,7 +11568,7 @@ } }, { - "id": 454, + "id": 449, "name": "total", "kind": 1024, "kindString": "Property", @@ -11674,9 +11594,9 @@ "title": "Properties", "kind": 1024, "children": [ - 455, - 456, - 454 + 450, + 451, + 449 ] } ] @@ -11684,7 +11604,7 @@ } }, { - "id": 451, + "id": 446, "name": "committed_at", "kind": 1024, "kindString": "Property", @@ -11705,7 +11625,7 @@ } }, { - "id": 457, + "id": 452, "name": "url", "kind": 1024, "kindString": "Property", @@ -11726,7 +11646,7 @@ } }, { - "id": 427, + "id": 422, "name": "user", "kind": 1024, "kindString": "Property", @@ -11751,14 +11671,14 @@ { "type": "reflection", "declaration": { - "id": 428, + "id": 423, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 434, + "id": 429, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -11778,7 +11698,7 @@ } }, { - "id": 430, + "id": 425, "name": "email", "kind": 1024, "kindString": "Property", @@ -11808,7 +11728,7 @@ } }, { - "id": 445, + "id": 440, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -11828,7 +11748,7 @@ } }, { - "id": 438, + "id": 433, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -11848,7 +11768,7 @@ } }, { - "id": 439, + "id": 434, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -11868,7 +11788,7 @@ } }, { - "id": 440, + "id": 435, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -11888,7 +11808,7 @@ } }, { - "id": 435, + "id": 430, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -11917,7 +11837,7 @@ } }, { - "id": 437, + "id": 432, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -11937,7 +11857,7 @@ } }, { - "id": 432, + "id": 427, "name": "id", "kind": 1024, "kindString": "Property", @@ -11957,7 +11877,7 @@ } }, { - "id": 431, + "id": 426, "name": "login", "kind": 1024, "kindString": "Property", @@ -11977,7 +11897,7 @@ } }, { - "id": 429, + "id": 424, "name": "name", "kind": 1024, "kindString": "Property", @@ -12007,7 +11927,7 @@ } }, { - "id": 433, + "id": 428, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12027,7 +11947,7 @@ } }, { - "id": 443, + "id": 438, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -12047,7 +11967,7 @@ } }, { - "id": 446, + "id": 441, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -12067,7 +11987,7 @@ } }, { - "id": 444, + "id": 439, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -12087,7 +12007,7 @@ } }, { - "id": 448, + "id": 443, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -12107,7 +12027,7 @@ } }, { - "id": 449, + "id": 444, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -12128,7 +12048,7 @@ } }, { - "id": 441, + "id": 436, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -12148,7 +12068,7 @@ } }, { - "id": 442, + "id": 437, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -12168,7 +12088,7 @@ } }, { - "id": 447, + "id": 442, "name": "type", "kind": 1024, "kindString": "Property", @@ -12188,7 +12108,7 @@ } }, { - "id": 436, + "id": 431, "name": "url", "kind": 1024, "kindString": "Property", @@ -12213,27 +12133,27 @@ "title": "Properties", "kind": 1024, "children": [ + 429, + 425, + 440, + 433, 434, + 435, 430, - 445, + 432, + 427, + 426, + 424, + 428, 438, + 441, 439, - 440, - 435, - 437, - 432, - 431, - 429, - 433, 443, - 446, 444, - 448, - 449, - 441, + 436, + 437, 442, - 447, - 436 + 431 ] } ] @@ -12243,7 +12163,7 @@ } }, { - "id": 450, + "id": 445, "name": "version", "kind": 1024, "kindString": "Property", @@ -12269,11 +12189,11 @@ "title": "Properties", "kind": 1024, "children": [ + 447, + 446, 452, - 451, - 457, - 427, - 450 + 422, + 445 ] } ] @@ -12284,7 +12204,7 @@ } }, { - "id": 546, + "id": 541, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12305,7 +12225,7 @@ } }, { - "id": 542, + "id": 537, "name": "id", "kind": 1024, "kindString": "Property", @@ -12326,7 +12246,7 @@ } }, { - "id": 543, + "id": 538, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12347,7 +12267,7 @@ } }, { - "id": 566, + "id": 561, "name": "owner", "kind": 1024, "kindString": "Property", @@ -12372,14 +12292,14 @@ { "type": "reflection", "declaration": { - "id": 567, + "id": 562, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 573, + "id": 568, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -12399,7 +12319,7 @@ } }, { - "id": 569, + "id": 564, "name": "email", "kind": 1024, "kindString": "Property", @@ -12429,7 +12349,7 @@ } }, { - "id": 584, + "id": 579, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -12449,7 +12369,7 @@ } }, { - "id": 577, + "id": 572, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -12469,7 +12389,7 @@ } }, { - "id": 578, + "id": 573, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -12489,7 +12409,7 @@ } }, { - "id": 579, + "id": 574, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -12509,7 +12429,7 @@ } }, { - "id": 574, + "id": 569, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -12538,7 +12458,7 @@ } }, { - "id": 576, + "id": 571, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12558,7 +12478,7 @@ } }, { - "id": 571, + "id": 566, "name": "id", "kind": 1024, "kindString": "Property", @@ -12578,7 +12498,7 @@ } }, { - "id": 570, + "id": 565, "name": "login", "kind": 1024, "kindString": "Property", @@ -12598,7 +12518,7 @@ } }, { - "id": 568, + "id": 563, "name": "name", "kind": 1024, "kindString": "Property", @@ -12628,7 +12548,7 @@ } }, { - "id": 572, + "id": 567, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12648,7 +12568,7 @@ } }, { - "id": 582, + "id": 577, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -12668,7 +12588,7 @@ } }, { - "id": 585, + "id": 580, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -12688,7 +12608,7 @@ } }, { - "id": 583, + "id": 578, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -12708,7 +12628,7 @@ } }, { - "id": 587, + "id": 582, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -12728,7 +12648,7 @@ } }, { - "id": 588, + "id": 583, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -12749,7 +12669,7 @@ } }, { - "id": 580, + "id": 575, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -12769,7 +12689,7 @@ } }, { - "id": 581, + "id": 576, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -12789,7 +12709,7 @@ } }, { - "id": 586, + "id": 581, "name": "type", "kind": 1024, "kindString": "Property", @@ -12809,7 +12729,7 @@ } }, { - "id": 575, + "id": 570, "name": "url", "kind": 1024, "kindString": "Property", @@ -12834,27 +12754,27 @@ "title": "Properties", "kind": 1024, "children": [ + 568, + 564, + 579, + 572, 573, + 574, 569, - 584, + 571, + 566, + 565, + 563, + 567, 577, + 580, 578, - 579, - 574, - 576, - 571, - 570, - 568, - 572, 582, - 585, 583, - 587, - 588, - 580, + 575, + 576, 581, - 586, - 575 + 570 ] } ] @@ -12864,7 +12784,7 @@ } }, { - "id": 559, + "id": 554, "name": "public", "kind": 1024, "kindString": "Property", @@ -12885,7 +12805,7 @@ } }, { - "id": 589, + "id": 584, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -12906,7 +12826,7 @@ } }, { - "id": 561, + "id": 556, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -12927,7 +12847,7 @@ } }, { - "id": 539, + "id": 534, "name": "url", "kind": 1024, "kindString": "Property", @@ -12948,7 +12868,7 @@ } }, { - "id": 564, + "id": 559, "name": "user", "kind": 1024, "kindString": "Property", @@ -12983,27 +12903,27 @@ "title": "Properties", "kind": 1024, "children": [ - 563, - 565, - 541, + 558, 560, - 562, - 547, - 458, - 373, - 540, - 544, - 545, - 425, - 546, + 536, + 555, + 557, 542, - 543, - 566, - 559, - 589, - 561, + 453, + 368, + 535, 539, - 564 + 540, + 420, + 541, + 537, + 538, + 561, + 554, + 584, + 556, + 534, + 559 ] } ] @@ -13011,7 +12931,7 @@ } }, { - "id": 590, + "id": 585, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -13019,14 +12939,14 @@ "type": { "type": "reflection", "declaration": { - "id": 591, + "id": 586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 592, + "id": 587, "name": "client", "kind": 1024, "kindString": "Property", @@ -13050,7 +12970,7 @@ "title": "Properties", "kind": 1024, "children": [ - 592 + 587 ] } ] @@ -13060,7 +12980,7 @@ ], "type": { "type": "reference", - "id": 368, + "id": 363, "name": "Gist" }, "overwrites": { @@ -13077,7 +12997,7 @@ } }, { - "id": 817, + "id": 812, "name": "client", "kind": 1024, "kindString": "Property", @@ -13101,7 +13021,7 @@ } }, { - "id": 593, + "id": 588, "name": "data", "kind": 1024, "kindString": "Property", @@ -13119,14 +13039,14 @@ "type": { "type": "reflection", "declaration": { - "id": 594, + "id": 589, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 785, + "id": 780, "name": "comments", "kind": 1024, "kindString": "Property", @@ -13147,7 +13067,7 @@ } }, { - "id": 787, + "id": 782, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -13168,7 +13088,7 @@ } }, { - "id": 763, + "id": 758, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -13189,7 +13109,7 @@ } }, { - "id": 782, + "id": 777, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -13210,7 +13130,7 @@ } }, { - "id": 784, + "id": 779, "name": "description", "kind": 1024, "kindString": "Property", @@ -13240,7 +13160,7 @@ } }, { - "id": 769, + "id": 764, "name": "files", "kind": 1024, "kindString": "Property", @@ -13258,20 +13178,20 @@ "type": { "type": "reflection", "declaration": { - "id": 770, + "id": 765, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 771, + "id": 766, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 772, + "id": 767, "name": "key", "kind": 32768, "flags": {}, @@ -13287,14 +13207,14 @@ { "type": "reflection", "declaration": { - "id": 773, + "id": 768, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 780, + "id": 775, "name": "content", "kind": 1024, "kindString": "Property", @@ -13315,7 +13235,7 @@ } }, { - "id": 774, + "id": 769, "name": "filename", "kind": 1024, "kindString": "Property", @@ -13336,7 +13256,7 @@ } }, { - "id": 776, + "id": 771, "name": "language", "kind": 1024, "kindString": "Property", @@ -13357,7 +13277,7 @@ } }, { - "id": 777, + "id": 772, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -13378,7 +13298,7 @@ } }, { - "id": 778, + "id": 773, "name": "size", "kind": 1024, "kindString": "Property", @@ -13399,7 +13319,7 @@ } }, { - "id": 779, + "id": 774, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -13420,7 +13340,7 @@ } }, { - "id": 775, + "id": 770, "name": "type", "kind": 1024, "kindString": "Property", @@ -13446,13 +13366,13 @@ "title": "Properties", "kind": 1024, "children": [ - 780, + 775, + 769, + 771, + 772, + 773, 774, - 776, - 777, - 778, - 779, - 775 + 770 ] } ], @@ -13476,7 +13396,7 @@ } }, { - "id": 680, + "id": 675, "name": "fork_of", "kind": 1024, "kindString": "Property", @@ -13504,14 +13424,14 @@ { "type": "reflection", "declaration": { - "id": 681, + "id": 676, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 704, + "id": 699, "name": "comments", "kind": 1024, "kindString": "Property", @@ -13531,7 +13451,7 @@ } }, { - "id": 728, + "id": 723, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -13551,7 +13471,7 @@ } }, { - "id": 684, + "id": 679, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -13571,7 +13491,7 @@ } }, { - "id": 701, + "id": 696, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -13591,7 +13511,7 @@ } }, { - "id": 703, + "id": 698, "name": "description", "kind": 1024, "kindString": "Property", @@ -13620,7 +13540,7 @@ } }, { - "id": 690, + "id": 685, "name": "files", "kind": 1024, "kindString": "Property", @@ -13637,20 +13557,20 @@ "type": { "type": "reflection", "declaration": { - "id": 691, + "id": 686, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 692, + "id": 687, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 693, + "id": 688, "name": "key", "kind": 32768, "flags": {}, @@ -13663,14 +13583,14 @@ "type": { "type": "reflection", "declaration": { - "id": 694, + "id": 689, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 695, + "id": 690, "name": "filename", "kind": 1024, "kindString": "Property", @@ -13691,7 +13611,7 @@ } }, { - "id": 697, + "id": 692, "name": "language", "kind": 1024, "kindString": "Property", @@ -13712,7 +13632,7 @@ } }, { - "id": 698, + "id": 693, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -13733,7 +13653,7 @@ } }, { - "id": 699, + "id": 694, "name": "size", "kind": 1024, "kindString": "Property", @@ -13754,7 +13674,7 @@ } }, { - "id": 696, + "id": 691, "name": "type", "kind": 1024, "kindString": "Property", @@ -13780,11 +13700,11 @@ "title": "Properties", "kind": 1024, "children": [ - 695, - 697, - 698, - 699, - 696 + 690, + 692, + 693, + 694, + 691 ] } ], @@ -13802,7 +13722,7 @@ } }, { - "id": 753, + "id": 748, "name": "forks", "kind": 1024, "kindString": "Property", @@ -13822,20 +13742,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 754, + "id": 749, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 755, + "id": 750, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 756, + "id": 751, "name": "key", "kind": 32768, "flags": {}, @@ -13855,7 +13775,7 @@ } }, { - "id": 683, + "id": 678, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -13875,7 +13795,7 @@ } }, { - "id": 687, + "id": 682, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -13895,7 +13815,7 @@ } }, { - "id": 688, + "id": 683, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -13915,7 +13835,7 @@ } }, { - "id": 757, + "id": 752, "name": "history", "kind": 1024, "kindString": "Property", @@ -13935,20 +13855,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 758, + "id": 753, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 759, + "id": 754, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 760, + "id": 755, "name": "key", "kind": 32768, "flags": {}, @@ -13968,7 +13888,7 @@ } }, { - "id": 689, + "id": 684, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -13988,7 +13908,7 @@ } }, { - "id": 685, + "id": 680, "name": "id", "kind": 1024, "kindString": "Property", @@ -14008,7 +13928,7 @@ } }, { - "id": 686, + "id": 681, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14028,7 +13948,7 @@ } }, { - "id": 729, + "id": 724, "name": "owner", "kind": 1024, "kindString": "Property", @@ -14053,14 +13973,14 @@ { "type": "reflection", "declaration": { - "id": 730, + "id": 725, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 736, + "id": 731, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -14080,7 +14000,7 @@ } }, { - "id": 732, + "id": 727, "name": "email", "kind": 1024, "kindString": "Property", @@ -14110,7 +14030,7 @@ } }, { - "id": 747, + "id": 742, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -14130,7 +14050,7 @@ } }, { - "id": 740, + "id": 735, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -14150,7 +14070,7 @@ } }, { - "id": 741, + "id": 736, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -14170,7 +14090,7 @@ } }, { - "id": 742, + "id": 737, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -14190,7 +14110,7 @@ } }, { - "id": 737, + "id": 732, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -14219,7 +14139,7 @@ } }, { - "id": 739, + "id": 734, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -14239,7 +14159,7 @@ } }, { - "id": 734, + "id": 729, "name": "id", "kind": 1024, "kindString": "Property", @@ -14259,7 +14179,7 @@ } }, { - "id": 733, + "id": 728, "name": "login", "kind": 1024, "kindString": "Property", @@ -14279,7 +14199,7 @@ } }, { - "id": 731, + "id": 726, "name": "name", "kind": 1024, "kindString": "Property", @@ -14309,7 +14229,7 @@ } }, { - "id": 735, + "id": 730, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14329,7 +14249,7 @@ } }, { - "id": 745, + "id": 740, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -14349,7 +14269,7 @@ } }, { - "id": 748, + "id": 743, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -14369,7 +14289,7 @@ } }, { - "id": 746, + "id": 741, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -14389,7 +14309,7 @@ } }, { - "id": 750, + "id": 745, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -14409,7 +14329,7 @@ } }, { - "id": 751, + "id": 746, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -14430,7 +14350,7 @@ } }, { - "id": 743, + "id": 738, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -14450,7 +14370,7 @@ } }, { - "id": 744, + "id": 739, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -14470,7 +14390,7 @@ } }, { - "id": 749, + "id": 744, "name": "type", "kind": 1024, "kindString": "Property", @@ -14490,7 +14410,7 @@ } }, { - "id": 738, + "id": 733, "name": "url", "kind": 1024, "kindString": "Property", @@ -14515,27 +14435,27 @@ "title": "Properties", "kind": 1024, "children": [ + 731, + 727, + 742, + 735, 736, + 737, 732, - 747, + 734, + 729, + 728, + 726, + 730, 740, + 743, 741, - 742, - 737, - 739, - 734, - 733, - 731, - 735, 745, - 748, 746, - 750, - 751, - 743, + 738, + 739, 744, - 749, - 738 + 733 ] } ] @@ -14545,7 +14465,7 @@ } }, { - "id": 700, + "id": 695, "name": "public", "kind": 1024, "kindString": "Property", @@ -14565,7 +14485,7 @@ } }, { - "id": 752, + "id": 747, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -14586,7 +14506,7 @@ } }, { - "id": 702, + "id": 697, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -14606,7 +14526,7 @@ } }, { - "id": 682, + "id": 677, "name": "url", "kind": 1024, "kindString": "Property", @@ -14626,7 +14546,7 @@ } }, { - "id": 705, + "id": 700, "name": "user", "kind": 1024, "kindString": "Property", @@ -14650,14 +14570,14 @@ { "type": "reflection", "declaration": { - "id": 706, + "id": 701, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 712, + "id": 707, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -14677,7 +14597,7 @@ } }, { - "id": 708, + "id": 703, "name": "email", "kind": 1024, "kindString": "Property", @@ -14707,7 +14627,7 @@ } }, { - "id": 723, + "id": 718, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -14727,7 +14647,7 @@ } }, { - "id": 716, + "id": 711, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -14747,7 +14667,7 @@ } }, { - "id": 717, + "id": 712, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -14767,7 +14687,7 @@ } }, { - "id": 718, + "id": 713, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -14787,7 +14707,7 @@ } }, { - "id": 713, + "id": 708, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -14816,7 +14736,7 @@ } }, { - "id": 715, + "id": 710, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -14836,7 +14756,7 @@ } }, { - "id": 710, + "id": 705, "name": "id", "kind": 1024, "kindString": "Property", @@ -14856,7 +14776,7 @@ } }, { - "id": 709, + "id": 704, "name": "login", "kind": 1024, "kindString": "Property", @@ -14876,7 +14796,7 @@ } }, { - "id": 707, + "id": 702, "name": "name", "kind": 1024, "kindString": "Property", @@ -14906,7 +14826,7 @@ } }, { - "id": 711, + "id": 706, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14926,7 +14846,7 @@ } }, { - "id": 721, + "id": 716, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -14946,7 +14866,7 @@ } }, { - "id": 724, + "id": 719, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -14966,7 +14886,7 @@ } }, { - "id": 722, + "id": 717, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -14986,7 +14906,7 @@ } }, { - "id": 726, + "id": 721, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -15006,7 +14926,7 @@ } }, { - "id": 727, + "id": 722, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -15027,7 +14947,7 @@ } }, { - "id": 719, + "id": 714, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -15047,7 +14967,7 @@ } }, { - "id": 720, + "id": 715, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -15067,7 +14987,7 @@ } }, { - "id": 725, + "id": 720, "name": "type", "kind": 1024, "kindString": "Property", @@ -15087,7 +15007,7 @@ } }, { - "id": 714, + "id": 709, "name": "url", "kind": 1024, "kindString": "Property", @@ -15112,27 +15032,27 @@ "title": "Properties", "kind": 1024, "children": [ + 707, + 703, + 718, + 711, 712, + 713, 708, - 723, + 710, + 705, + 704, + 702, + 706, 716, + 719, 717, - 718, - 713, - 715, - 710, - 709, - 707, - 711, 721, - 724, 722, - 726, - 727, - 719, + 714, + 715, 720, - 725, - 714 + 709 ] } ] @@ -15147,26 +15067,26 @@ "title": "Properties", "kind": 1024, "children": [ - 704, - 728, - 684, - 701, - 703, - 690, - 753, - 683, - 687, - 688, - 757, - 689, + 699, + 723, + 679, + 696, + 698, 685, - 686, - 729, - 700, - 752, - 702, + 748, + 678, 682, - 705 + 683, + 752, + 684, + 680, + 681, + 724, + 695, + 747, + 697, + 677, + 700 ] } ] @@ -15176,7 +15096,7 @@ } }, { - "id": 595, + "id": 590, "name": "forks", "kind": 1024, "kindString": "Property", @@ -15203,14 +15123,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 596, + "id": 591, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 645, + "id": 640, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15231,7 +15151,7 @@ } }, { - "id": 597, + "id": 592, "name": "id", "kind": 1024, "kindString": "Property", @@ -15252,7 +15172,7 @@ } }, { - "id": 646, + "id": 641, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -15273,7 +15193,7 @@ } }, { - "id": 598, + "id": 593, "name": "url", "kind": 1024, "kindString": "Property", @@ -15294,7 +15214,7 @@ } }, { - "id": 599, + "id": 594, "name": "user", "kind": 1024, "kindString": "Property", @@ -15312,14 +15232,14 @@ "type": { "type": "reflection", "declaration": { - "id": 600, + "id": 595, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 604, + "id": 599, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -15339,7 +15259,7 @@ } }, { - "id": 625, + "id": 620, "name": "bio", "kind": 1024, "kindString": "Property", @@ -15368,7 +15288,7 @@ } }, { - "id": 621, + "id": 616, "name": "blog", "kind": 1024, "kindString": "Property", @@ -15397,7 +15317,7 @@ } }, { - "id": 644, + "id": 639, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -15418,7 +15338,7 @@ } }, { - "id": 620, + "id": 615, "name": "company", "kind": 1024, "kindString": "Property", @@ -15447,7 +15367,7 @@ } }, { - "id": 631, + "id": 626, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15467,7 +15387,7 @@ } }, { - "id": 643, + "id": 638, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -15488,7 +15408,7 @@ } }, { - "id": 623, + "id": 618, "name": "email", "kind": 1024, "kindString": "Property", @@ -15517,7 +15437,7 @@ } }, { - "id": 615, + "id": 610, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -15537,7 +15457,7 @@ } }, { - "id": 629, + "id": 624, "name": "followers", "kind": 1024, "kindString": "Property", @@ -15557,7 +15477,7 @@ } }, { - "id": 608, + "id": 603, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -15577,7 +15497,7 @@ } }, { - "id": 630, + "id": 625, "name": "following", "kind": 1024, "kindString": "Property", @@ -15597,7 +15517,7 @@ } }, { - "id": 609, + "id": 604, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -15617,7 +15537,7 @@ } }, { - "id": 610, + "id": 605, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -15637,7 +15557,7 @@ } }, { - "id": 605, + "id": 600, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -15666,7 +15586,7 @@ } }, { - "id": 624, + "id": 619, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -15695,7 +15615,7 @@ } }, { - "id": 607, + "id": 602, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -15715,7 +15635,7 @@ } }, { - "id": 602, + "id": 597, "name": "id", "kind": 1024, "kindString": "Property", @@ -15735,7 +15655,7 @@ } }, { - "id": 622, + "id": 617, "name": "location", "kind": 1024, "kindString": "Property", @@ -15764,7 +15684,7 @@ } }, { - "id": 601, + "id": 596, "name": "login", "kind": 1024, "kindString": "Property", @@ -15784,7 +15704,7 @@ } }, { - "id": 619, + "id": 614, "name": "name", "kind": 1024, "kindString": "Property", @@ -15813,7 +15733,7 @@ } }, { - "id": 603, + "id": 598, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -15833,7 +15753,7 @@ } }, { - "id": 613, + "id": 608, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -15853,7 +15773,7 @@ } }, { - "id": 642, + "id": 637, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -15874,7 +15794,7 @@ } }, { - "id": 633, + "id": 628, "name": "plan", "kind": 1024, "kindString": "Property", @@ -15892,14 +15812,14 @@ "type": { "type": "reflection", "declaration": { - "id": 634, + "id": 629, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 635, + "id": 630, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -15919,7 +15839,7 @@ } }, { - "id": 636, + "id": 631, "name": "name", "kind": 1024, "kindString": "Property", @@ -15939,7 +15859,7 @@ } }, { - "id": 638, + "id": 633, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -15959,7 +15879,7 @@ } }, { - "id": 637, + "id": 632, "name": "space", "kind": 1024, "kindString": "Property", @@ -15984,10 +15904,10 @@ "title": "Properties", "kind": 1024, "children": [ - 635, - 636, - 638, - 637 + 630, + 631, + 633, + 632 ] } ] @@ -15995,7 +15915,7 @@ } }, { - "id": 640, + "id": 635, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -16016,7 +15936,7 @@ } }, { - "id": 628, + "id": 623, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -16036,7 +15956,7 @@ } }, { - "id": 627, + "id": 622, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -16056,7 +15976,7 @@ } }, { - "id": 616, + "id": 611, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -16076,7 +15996,7 @@ } }, { - "id": 614, + "id": 609, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -16096,7 +16016,7 @@ } }, { - "id": 618, + "id": 613, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -16116,7 +16036,7 @@ } }, { - "id": 611, + "id": 606, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -16136,7 +16056,7 @@ } }, { - "id": 612, + "id": 607, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -16156,7 +16076,7 @@ } }, { - "id": 639, + "id": 634, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -16186,7 +16106,7 @@ } }, { - "id": 641, + "id": 636, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -16207,7 +16127,7 @@ } }, { - "id": 626, + "id": 621, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -16237,7 +16157,7 @@ } }, { - "id": 617, + "id": 612, "name": "type", "kind": 1024, "kindString": "Property", @@ -16257,7 +16177,7 @@ } }, { - "id": 632, + "id": 627, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -16277,7 +16197,7 @@ } }, { - "id": 606, + "id": 601, "name": "url", "kind": 1024, "kindString": "Property", @@ -16302,45 +16222,45 @@ "title": "Properties", "kind": 1024, "children": [ - 604, - 625, - 621, - 644, + 599, 620, - 631, - 643, - 623, + 616, + 639, 615, - 629, - 608, - 630, - 609, + 626, + 638, + 618, 610, - 605, 624, - 607, - 602, - 622, - 601, - 619, 603, - 613, - 642, - 633, - 640, - 628, - 627, - 616, + 625, + 604, + 605, + 600, + 619, + 602, + 597, + 617, + 596, 614, - 618, + 598, + 608, + 637, + 628, + 635, + 623, + 622, 611, + 609, + 613, + 606, + 607, + 634, + 636, + 621, 612, - 639, - 641, - 626, - 617, - 632, - 606 + 627, + 601 ] } ] @@ -16353,11 +16273,11 @@ "title": "Properties", "kind": 1024, "children": [ - 645, - 597, - 646, - 598, - 599 + 640, + 592, + 641, + 593, + 594 ] } ] @@ -16368,7 +16288,7 @@ } }, { - "id": 762, + "id": 757, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -16389,7 +16309,7 @@ } }, { - "id": 766, + "id": 761, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -16410,7 +16330,7 @@ } }, { - "id": 767, + "id": 762, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -16431,7 +16351,7 @@ } }, { - "id": 647, + "id": 642, "name": "history", "kind": 1024, "kindString": "Property", @@ -16458,14 +16378,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 648, + "id": 643, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 674, + "id": 669, "name": "change_status", "kind": 1024, "kindString": "Property", @@ -16483,14 +16403,14 @@ "type": { "type": "reflection", "declaration": { - "id": 675, + "id": 670, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 677, + "id": 672, "name": "additions", "kind": 1024, "kindString": "Property", @@ -16511,7 +16431,7 @@ } }, { - "id": 678, + "id": 673, "name": "deletions", "kind": 1024, "kindString": "Property", @@ -16532,7 +16452,7 @@ } }, { - "id": 676, + "id": 671, "name": "total", "kind": 1024, "kindString": "Property", @@ -16558,9 +16478,9 @@ "title": "Properties", "kind": 1024, "children": [ - 677, - 678, - 676 + 672, + 673, + 671 ] } ] @@ -16568,7 +16488,7 @@ } }, { - "id": 673, + "id": 668, "name": "committed_at", "kind": 1024, "kindString": "Property", @@ -16589,7 +16509,7 @@ } }, { - "id": 679, + "id": 674, "name": "url", "kind": 1024, "kindString": "Property", @@ -16610,7 +16530,7 @@ } }, { - "id": 649, + "id": 644, "name": "user", "kind": 1024, "kindString": "Property", @@ -16635,14 +16555,14 @@ { "type": "reflection", "declaration": { - "id": 650, + "id": 645, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 656, + "id": 651, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -16662,7 +16582,7 @@ } }, { - "id": 652, + "id": 647, "name": "email", "kind": 1024, "kindString": "Property", @@ -16692,7 +16612,7 @@ } }, { - "id": 667, + "id": 662, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -16712,7 +16632,7 @@ } }, { - "id": 660, + "id": 655, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -16732,7 +16652,7 @@ } }, { - "id": 661, + "id": 656, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -16752,7 +16672,7 @@ } }, { - "id": 662, + "id": 657, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -16772,7 +16692,7 @@ } }, { - "id": 657, + "id": 652, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -16801,7 +16721,7 @@ } }, { - "id": 659, + "id": 654, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -16821,7 +16741,7 @@ } }, { - "id": 654, + "id": 649, "name": "id", "kind": 1024, "kindString": "Property", @@ -16841,7 +16761,7 @@ } }, { - "id": 653, + "id": 648, "name": "login", "kind": 1024, "kindString": "Property", @@ -16861,7 +16781,7 @@ } }, { - "id": 651, + "id": 646, "name": "name", "kind": 1024, "kindString": "Property", @@ -16891,7 +16811,7 @@ } }, { - "id": 655, + "id": 650, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -16911,7 +16831,7 @@ } }, { - "id": 665, + "id": 660, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -16931,7 +16851,7 @@ } }, { - "id": 668, + "id": 663, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -16951,7 +16871,7 @@ } }, { - "id": 666, + "id": 661, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -16971,7 +16891,7 @@ } }, { - "id": 670, + "id": 665, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -16991,7 +16911,7 @@ } }, { - "id": 671, + "id": 666, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -17012,7 +16932,7 @@ } }, { - "id": 663, + "id": 658, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -17032,7 +16952,7 @@ } }, { - "id": 664, + "id": 659, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -17052,7 +16972,7 @@ } }, { - "id": 669, + "id": 664, "name": "type", "kind": 1024, "kindString": "Property", @@ -17072,7 +16992,7 @@ } }, { - "id": 658, + "id": 653, "name": "url", "kind": 1024, "kindString": "Property", @@ -17097,27 +17017,27 @@ "title": "Properties", "kind": 1024, "children": [ + 651, + 647, + 662, + 655, 656, + 657, 652, - 667, + 654, + 649, + 648, + 646, + 650, 660, + 663, 661, - 662, - 657, - 659, - 654, - 653, - 651, - 655, 665, - 668, 666, - 670, - 671, - 663, + 658, + 659, 664, - 669, - 658 + 653 ] } ] @@ -17127,7 +17047,7 @@ } }, { - "id": 672, + "id": 667, "name": "version", "kind": 1024, "kindString": "Property", @@ -17153,11 +17073,11 @@ "title": "Properties", "kind": 1024, "children": [ + 669, + 668, 674, - 673, - 679, - 649, - 672 + 644, + 667 ] } ] @@ -17168,7 +17088,7 @@ } }, { - "id": 768, + "id": 763, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17189,7 +17109,7 @@ } }, { - "id": 764, + "id": 759, "name": "id", "kind": 1024, "kindString": "Property", @@ -17210,7 +17130,7 @@ } }, { - "id": 765, + "id": 760, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17231,7 +17151,7 @@ } }, { - "id": 788, + "id": 783, "name": "owner", "kind": 1024, "kindString": "Property", @@ -17256,14 +17176,14 @@ { "type": "reflection", "declaration": { - "id": 789, + "id": 784, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 795, + "id": 790, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -17283,7 +17203,7 @@ } }, { - "id": 791, + "id": 786, "name": "email", "kind": 1024, "kindString": "Property", @@ -17313,7 +17233,7 @@ } }, { - "id": 806, + "id": 801, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -17333,7 +17253,7 @@ } }, { - "id": 799, + "id": 794, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -17353,7 +17273,7 @@ } }, { - "id": 800, + "id": 795, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -17373,7 +17293,7 @@ } }, { - "id": 801, + "id": 796, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -17393,7 +17313,7 @@ } }, { - "id": 796, + "id": 791, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -17422,7 +17342,7 @@ } }, { - "id": 798, + "id": 793, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17442,7 +17362,7 @@ } }, { - "id": 793, + "id": 788, "name": "id", "kind": 1024, "kindString": "Property", @@ -17462,7 +17382,7 @@ } }, { - "id": 792, + "id": 787, "name": "login", "kind": 1024, "kindString": "Property", @@ -17482,7 +17402,7 @@ } }, { - "id": 790, + "id": 785, "name": "name", "kind": 1024, "kindString": "Property", @@ -17512,7 +17432,7 @@ } }, { - "id": 794, + "id": 789, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17532,7 +17452,7 @@ } }, { - "id": 804, + "id": 799, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -17552,7 +17472,7 @@ } }, { - "id": 807, + "id": 802, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -17572,7 +17492,7 @@ } }, { - "id": 805, + "id": 800, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -17592,7 +17512,7 @@ } }, { - "id": 809, + "id": 804, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -17612,7 +17532,7 @@ } }, { - "id": 810, + "id": 805, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -17633,7 +17553,7 @@ } }, { - "id": 802, + "id": 797, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -17653,7 +17573,7 @@ } }, { - "id": 803, + "id": 798, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -17673,7 +17593,7 @@ } }, { - "id": 808, + "id": 803, "name": "type", "kind": 1024, "kindString": "Property", @@ -17693,7 +17613,7 @@ } }, { - "id": 797, + "id": 792, "name": "url", "kind": 1024, "kindString": "Property", @@ -17718,27 +17638,27 @@ "title": "Properties", "kind": 1024, "children": [ + 790, + 786, + 801, + 794, 795, + 796, 791, - 806, + 793, + 788, + 787, + 785, + 789, 799, + 802, 800, - 801, - 796, - 798, - 793, - 792, - 790, - 794, 804, - 807, 805, - 809, - 810, - 802, + 797, + 798, 803, - 808, - 797 + 792 ] } ] @@ -17748,7 +17668,7 @@ } }, { - "id": 781, + "id": 776, "name": "public", "kind": 1024, "kindString": "Property", @@ -17769,7 +17689,7 @@ } }, { - "id": 811, + "id": 806, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -17790,7 +17710,7 @@ } }, { - "id": 783, + "id": 778, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -17811,7 +17731,7 @@ } }, { - "id": 761, + "id": 756, "name": "url", "kind": 1024, "kindString": "Property", @@ -17832,7 +17752,7 @@ } }, { - "id": 786, + "id": 781, "name": "user", "kind": 1024, "kindString": "Property", @@ -17867,27 +17787,27 @@ "title": "Properties", "kind": 1024, "children": [ - 785, - 787, - 763, + 780, 782, - 784, - 769, - 680, - 595, - 762, - 766, - 767, - 647, - 768, + 758, + 777, + 779, 764, - 765, - 788, - 781, - 811, - 783, + 675, + 590, + 757, 761, - 786 + 762, + 642, + 763, + 759, + 760, + 783, + 776, + 806, + 778, + 756, + 781 ] } ] @@ -17895,7 +17815,7 @@ } }, { - "id": 812, + "id": 807, "name": "forks", "kind": 1024, "kindString": "Property", @@ -17912,12 +17832,12 @@ ], "type": { "type": "reference", - "id": 2873, + "id": 2870, "name": "ForkManager" } }, { - "id": 815, + "id": 810, "name": "htmlUrl", "kind": 262144, "kindString": "Accessor", @@ -17931,7 +17851,7 @@ ], "getSignature": [ { - "id": 816, + "id": 811, "name": "htmlUrl", "kind": 524288, "kindString": "Get signature", @@ -17953,7 +17873,7 @@ ] }, { - "id": 813, + "id": 808, "name": "url", "kind": 262144, "kindString": "Accessor", @@ -17967,7 +17887,7 @@ ], "getSignature": [ { - "id": 814, + "id": 809, "name": "url", "kind": 524288, "kindString": "Get signature", @@ -17994,24 +17914,24 @@ "title": "Constructors", "kind": 512, "children": [ - 369 + 364 ] }, { "title": "Properties", "kind": 1024, "children": [ - 817, - 593, - 812 + 812, + 588, + 807 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 815, - 813 + 810, + 808 ] } ], @@ -18031,28 +17951,28 @@ ] }, { - "id": 818, + "id": 813, "name": "Issue", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 819, + "id": 814, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 820, + "id": 815, "name": "new Issue", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 821, + "id": 816, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18077,7 +17997,7 @@ } }, { - "id": 822, + "id": 817, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -18091,14 +18011,14 @@ ], "type": { "type": "reference", - "id": 818, + "id": 813, "name": "Issue" } } ] }, { - "id": 823, + "id": 818, "name": "client", "kind": 1024, "kindString": "Property", @@ -18122,14 +18042,14 @@ "title": "Constructors", "kind": 512, "children": [ - 819 + 814 ] }, { "title": "Properties", "kind": 1024, "children": [ - 823 + 818 ] } ], @@ -18142,28 +18062,28 @@ ] }, { - "id": 2882, + "id": 2879, "name": "IssueManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2883, + "id": 2880, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2884, + "id": 2881, "name": "new IssueManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2885, + "id": 2882, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18171,14 +18091,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2886, + "id": 2883, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2887, + "id": 2884, "name": "client", "kind": 1024, "kindString": "Property", @@ -18197,7 +18117,7 @@ } }, { - "id": 2888, + "id": 2885, "name": "url", "kind": 1024, "kindString": "Property", @@ -18220,8 +18140,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2887, - 2888 + 2884, + 2885 ] } ] @@ -18231,24 +18151,24 @@ ], "type": { "type": "reference", - "id": 2882, + "id": 2879, "name": "IssueManager" }, "overwrites": { "type": "reference", - "id": 2837, + "id": 2834, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2836, + "id": 2833, "name": "Manager.constructor" } }, { - "id": 2893, + "id": 2890, "name": "client", "kind": 1024, "kindString": "Property", @@ -18267,12 +18187,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2842, + "id": 2839, "name": "Manager.client" } }, { - "id": 2894, + "id": 2891, "name": "url", "kind": 1024, "kindString": "Property", @@ -18292,12 +18212,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2843, + "id": 2840, "name": "Manager.url" } }, { - "id": 2889, + "id": 2886, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -18311,7 +18231,7 @@ ], "signatures": [ { - "id": 2890, + "id": 2887, "name": "fetch", "kind": 4096, "kindString": "Call signature", @@ -18321,7 +18241,7 @@ }, "parameters": [ { - "id": 2891, + "id": 2888, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -18335,7 +18255,7 @@ } }, { - "id": 2892, + "id": 2889, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -18346,8 +18266,7 @@ "type": { "type": "reference", "name": "FetchOptions" - }, - "defaultValue": "{}" + } } ], "type": { @@ -18369,22 +18288,22 @@ "title": "Constructors", "kind": 512, "children": [ - 2883 + 2880 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2893, - 2894 + 2890, + 2891 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2889 + 2886 ] } ], @@ -18398,34 +18317,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2835, + "id": 2832, "name": "Manager" } ] }, { - "id": 2835, + "id": 2832, "name": "Manager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2836, + "id": 2833, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2837, + "id": 2834, "name": "new Manager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2838, + "id": 2835, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18433,14 +18352,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2839, + "id": 2836, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2840, + "id": 2837, "name": "client", "kind": 1024, "kindString": "Property", @@ -18459,7 +18378,7 @@ } }, { - "id": 2841, + "id": 2838, "name": "url", "kind": 1024, "kindString": "Property", @@ -18484,8 +18403,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2840, - 2841 + 2837, + 2838 ] } ] @@ -18495,14 +18414,14 @@ ], "type": { "type": "reference", - "id": 2835, + "id": 2832, "name": "BaseManager" } } ] }, { - "id": 2842, + "id": 2839, "name": "client", "kind": 1024, "kindString": "Property", @@ -18521,7 +18440,7 @@ } }, { - "id": 2843, + "id": 2840, "name": "url", "kind": 1024, "kindString": "Property", @@ -18546,15 +18465,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2836 + 2833 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2842, - 2843 + 2839, + 2840 ] } ], @@ -18568,54 +18487,54 @@ "extendedBy": [ { "type": "reference", - "id": 2844, + "id": 2841, "name": "ArtifactsManager" }, { "type": "reference", - "id": 2873, + "id": 2870, "name": "ForkManager" }, { "type": "reference", - "id": 2882, + "id": 2879, "name": "IssueManager" }, { "type": "reference", - "id": 2895, + "id": 2892, "name": "RepoManager" }, { "type": "reference", - "id": 2904, + "id": 2901, "name": "UserManager" } ] }, { - "id": 824, + "id": 819, "name": "Repo", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 825, + "id": 820, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 826, + "id": 821, "name": "new Repo", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 827, + "id": 822, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -18627,7 +18546,7 @@ } }, { - "id": 828, + "id": 823, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18635,14 +18554,14 @@ "type": { "type": "reflection", "declaration": { - "id": 829, + "id": 824, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1184, + "id": 1179, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -18663,7 +18582,7 @@ } }, { - "id": 929, + "id": 924, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -18684,7 +18603,7 @@ } }, { - "id": 1182, + "id": 1177, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -18705,7 +18624,7 @@ } }, { - "id": 1724, + "id": 1719, "name": "anonymous_access_enabled", "kind": 1024, "kindString": "Property", @@ -18729,7 +18648,7 @@ } }, { - "id": 862, + "id": 857, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -18749,7 +18668,7 @@ } }, { - "id": 918, + "id": 913, "name": "archived", "kind": 1024, "kindString": "Property", @@ -18769,7 +18688,7 @@ } }, { - "id": 863, + "id": 858, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -18789,7 +18708,7 @@ } }, { - "id": 864, + "id": 859, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -18809,7 +18728,7 @@ } }, { - "id": 865, + "id": 860, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -18829,7 +18748,7 @@ } }, { - "id": 899, + "id": 894, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -18849,7 +18768,7 @@ } }, { - "id": 1725, + "id": 1720, "name": "code_of_conduct", "kind": 1024, "kindString": "Property", @@ -18867,14 +18786,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1726, + "id": 1721, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1730, + "id": 1725, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -18903,7 +18822,7 @@ } }, { - "id": 1728, + "id": 1723, "name": "key", "kind": 1024, "kindString": "Property", @@ -18923,7 +18842,7 @@ } }, { - "id": 1729, + "id": 1724, "name": "name", "kind": 1024, "kindString": "Property", @@ -18943,7 +18862,7 @@ } }, { - "id": 1727, + "id": 1722, "name": "url", "kind": 1024, "kindString": "Property", @@ -18968,10 +18887,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1730, - 1728, - 1729, - 1727 + 1725, + 1723, + 1724, + 1722 ] } ] @@ -18979,7 +18898,7 @@ } }, { - "id": 866, + "id": 861, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -18999,7 +18918,7 @@ } }, { - "id": 867, + "id": 862, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -19019,7 +18938,7 @@ } }, { - "id": 868, + "id": 863, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -19039,7 +18958,7 @@ } }, { - "id": 869, + "id": 864, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -19059,7 +18978,7 @@ } }, { - "id": 870, + "id": 865, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -19079,7 +18998,7 @@ } }, { - "id": 871, + "id": 866, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -19099,7 +19018,7 @@ } }, { - "id": 922, + "id": 917, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -19119,7 +19038,7 @@ } }, { - "id": 909, + "id": 904, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -19139,7 +19058,7 @@ } }, { - "id": 1183, + "id": 1178, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -19160,7 +19079,7 @@ } }, { - "id": 872, + "id": 867, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -19180,7 +19099,7 @@ } }, { - "id": 859, + "id": 854, "name": "description", "kind": 1024, "kindString": "Property", @@ -19209,7 +19128,7 @@ } }, { - "id": 919, + "id": 914, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -19232,7 +19151,7 @@ } }, { - "id": 873, + "id": 868, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -19252,7 +19171,7 @@ } }, { - "id": 874, + "id": 869, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -19272,7 +19191,7 @@ } }, { - "id": 860, + "id": 855, "name": "fork", "kind": 1024, "kindString": "Property", @@ -19292,7 +19211,7 @@ } }, { - "id": 1720, + "id": 1715, "name": "forks", "kind": 1024, "kindString": "Property", @@ -19312,7 +19231,7 @@ } }, { - "id": 905, + "id": 900, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -19332,7 +19251,7 @@ } }, { - "id": 875, + "id": 870, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -19352,7 +19271,7 @@ } }, { - "id": 833, + "id": 828, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -19372,7 +19291,7 @@ } }, { - "id": 876, + "id": 871, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -19392,7 +19311,7 @@ } }, { - "id": 877, + "id": 872, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -19412,7 +19331,7 @@ } }, { - "id": 878, + "id": 873, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -19432,7 +19351,7 @@ } }, { - "id": 879, + "id": 874, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -19452,7 +19371,7 @@ } }, { - "id": 917, + "id": 912, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -19472,7 +19391,7 @@ } }, { - "id": 913, + "id": 908, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -19492,7 +19411,7 @@ } }, { - "id": 916, + "id": 911, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -19512,7 +19431,7 @@ } }, { - "id": 914, + "id": 909, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -19532,7 +19451,7 @@ } }, { - "id": 915, + "id": 910, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -19552,7 +19471,7 @@ } }, { - "id": 903, + "id": 898, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -19581,7 +19500,7 @@ } }, { - "id": 901, + "id": 896, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -19601,7 +19520,7 @@ } }, { - "id": 858, + "id": 853, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -19621,7 +19540,7 @@ } }, { - "id": 830, + "id": 825, "name": "id", "kind": 1024, "kindString": "Property", @@ -19641,7 +19560,7 @@ } }, { - "id": 911, + "id": 906, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -19662,7 +19581,7 @@ } }, { - "id": 880, + "id": 875, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -19682,7 +19601,7 @@ } }, { - "id": 881, + "id": 876, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -19702,7 +19621,7 @@ } }, { - "id": 882, + "id": 877, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -19722,7 +19641,7 @@ } }, { - "id": 883, + "id": 878, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -19742,7 +19661,7 @@ } }, { - "id": 884, + "id": 879, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -19762,7 +19681,7 @@ } }, { - "id": 904, + "id": 899, "name": "language", "kind": 1024, "kindString": "Property", @@ -19791,7 +19710,7 @@ } }, { - "id": 885, + "id": 880, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -19811,7 +19730,7 @@ } }, { - "id": 1187, + "id": 1182, "name": "license", "kind": 1024, "kindString": "Property", @@ -19835,14 +19754,14 @@ { "type": "reflection", "declaration": { - "id": 1188, + "id": 1183, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1194, + "id": 1189, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -19863,7 +19782,7 @@ } }, { - "id": 1189, + "id": 1184, "name": "key", "kind": 1024, "kindString": "Property", @@ -19883,7 +19802,7 @@ } }, { - "id": 1190, + "id": 1185, "name": "name", "kind": 1024, "kindString": "Property", @@ -19903,7 +19822,7 @@ } }, { - "id": 1193, + "id": 1188, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -19923,7 +19842,7 @@ } }, { - "id": 1192, + "id": 1187, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -19952,7 +19871,7 @@ } }, { - "id": 1191, + "id": 1186, "name": "url", "kind": 1024, "kindString": "Property", @@ -19986,12 +19905,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1194, 1189, - 1190, - 1193, - 1192, - 1191 + 1184, + 1185, + 1188, + 1187, + 1186 ] } ] @@ -20001,7 +19920,7 @@ } }, { - "id": 1721, + "id": 1716, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -20022,7 +19941,7 @@ } }, { - "id": 886, + "id": 881, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -20042,7 +19961,7 @@ } }, { - "id": 887, + "id": 882, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -20062,7 +19981,7 @@ } }, { - "id": 900, + "id": 895, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -20091,7 +20010,7 @@ } }, { - "id": 832, + "id": 827, "name": "name", "kind": 1024, "kindString": "Property", @@ -20111,7 +20030,7 @@ } }, { - "id": 1186, + "id": 1181, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -20131,7 +20050,7 @@ } }, { - "id": 831, + "id": 826, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20151,7 +20070,7 @@ } }, { - "id": 888, + "id": 883, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -20171,7 +20090,7 @@ } }, { - "id": 1722, + "id": 1717, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -20191,7 +20110,7 @@ } }, { - "id": 910, + "id": 905, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -20211,7 +20130,7 @@ } }, { - "id": 1195, + "id": 1190, "name": "organization", "kind": 1024, "kindString": "Property", @@ -20236,14 +20155,14 @@ { "type": "reflection", "declaration": { - "id": 1196, + "id": 1191, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1202, + "id": 1197, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -20263,7 +20182,7 @@ } }, { - "id": 1198, + "id": 1193, "name": "email", "kind": 1024, "kindString": "Property", @@ -20293,7 +20212,7 @@ } }, { - "id": 1213, + "id": 1208, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -20313,7 +20232,7 @@ } }, { - "id": 1206, + "id": 1201, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -20333,7 +20252,7 @@ } }, { - "id": 1207, + "id": 1202, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -20353,7 +20272,7 @@ } }, { - "id": 1208, + "id": 1203, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -20373,7 +20292,7 @@ } }, { - "id": 1203, + "id": 1198, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -20402,7 +20321,7 @@ } }, { - "id": 1205, + "id": 1200, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20422,7 +20341,7 @@ } }, { - "id": 1200, + "id": 1195, "name": "id", "kind": 1024, "kindString": "Property", @@ -20442,7 +20361,7 @@ } }, { - "id": 1199, + "id": 1194, "name": "login", "kind": 1024, "kindString": "Property", @@ -20462,7 +20381,7 @@ } }, { - "id": 1197, + "id": 1192, "name": "name", "kind": 1024, "kindString": "Property", @@ -20492,7 +20411,7 @@ } }, { - "id": 1201, + "id": 1196, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20512,7 +20431,7 @@ } }, { - "id": 1211, + "id": 1206, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -20532,7 +20451,7 @@ } }, { - "id": 1214, + "id": 1209, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -20552,7 +20471,7 @@ } }, { - "id": 1212, + "id": 1207, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -20572,7 +20491,7 @@ } }, { - "id": 1216, + "id": 1211, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -20592,7 +20511,7 @@ } }, { - "id": 1217, + "id": 1212, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -20613,7 +20532,7 @@ } }, { - "id": 1209, + "id": 1204, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -20633,7 +20552,7 @@ } }, { - "id": 1210, + "id": 1205, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -20653,7 +20572,7 @@ } }, { - "id": 1215, + "id": 1210, "name": "type", "kind": 1024, "kindString": "Property", @@ -20673,7 +20592,7 @@ } }, { - "id": 1204, + "id": 1199, "name": "url", "kind": 1024, "kindString": "Property", @@ -20698,27 +20617,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1197, + 1193, + 1208, + 1201, 1202, + 1203, 1198, - 1213, + 1200, + 1195, + 1194, + 1192, + 1196, 1206, + 1209, 1207, - 1208, - 1203, - 1205, - 1200, - 1199, - 1197, - 1201, 1211, - 1214, 1212, - 1216, - 1217, - 1209, + 1204, + 1205, 1210, - 1215, - 1204 + 1199 ] } ] @@ -20728,7 +20647,7 @@ } }, { - "id": 834, + "id": 829, "name": "owner", "kind": 1024, "kindString": "Property", @@ -20752,14 +20671,14 @@ { "type": "reflection", "declaration": { - "id": 835, + "id": 830, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 841, + "id": 836, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -20779,7 +20698,7 @@ } }, { - "id": 837, + "id": 832, "name": "email", "kind": 1024, "kindString": "Property", @@ -20809,7 +20728,7 @@ } }, { - "id": 852, + "id": 847, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -20829,7 +20748,7 @@ } }, { - "id": 845, + "id": 840, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -20849,7 +20768,7 @@ } }, { - "id": 846, + "id": 841, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -20869,7 +20788,7 @@ } }, { - "id": 847, + "id": 842, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -20889,7 +20808,7 @@ } }, { - "id": 842, + "id": 837, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -20918,7 +20837,7 @@ } }, { - "id": 844, + "id": 839, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20938,7 +20857,7 @@ } }, { - "id": 839, + "id": 834, "name": "id", "kind": 1024, "kindString": "Property", @@ -20958,7 +20877,7 @@ } }, { - "id": 838, + "id": 833, "name": "login", "kind": 1024, "kindString": "Property", @@ -20978,7 +20897,7 @@ } }, { - "id": 836, + "id": 831, "name": "name", "kind": 1024, "kindString": "Property", @@ -21008,7 +20927,7 @@ } }, { - "id": 840, + "id": 835, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -21028,7 +20947,7 @@ } }, { - "id": 850, + "id": 845, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -21048,7 +20967,7 @@ } }, { - "id": 853, + "id": 848, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -21068,7 +20987,7 @@ } }, { - "id": 851, + "id": 846, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -21088,7 +21007,7 @@ } }, { - "id": 855, + "id": 850, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -21108,7 +21027,7 @@ } }, { - "id": 856, + "id": 851, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -21129,7 +21048,7 @@ } }, { - "id": 848, + "id": 843, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -21149,7 +21068,7 @@ } }, { - "id": 849, + "id": 844, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -21169,7 +21088,7 @@ } }, { - "id": 854, + "id": 849, "name": "type", "kind": 1024, "kindString": "Property", @@ -21189,7 +21108,7 @@ } }, { - "id": 843, + "id": 838, "name": "url", "kind": 1024, "kindString": "Property", @@ -21214,27 +21133,27 @@ "title": "Properties", "kind": 1024, "children": [ + 836, + 832, + 847, + 840, 841, + 842, 837, - 852, + 839, + 834, + 833, + 831, + 835, 845, + 848, 846, - 847, - 842, - 844, - 839, - 838, - 836, - 840, 850, - 853, 851, - 855, - 856, - 848, + 843, + 844, 849, - 854, - 843 + 838 ] } ] @@ -21244,7 +21163,7 @@ } }, { - "id": 1218, + "id": 1213, "name": "parent", "kind": 1024, "kindString": "Property", @@ -21262,14 +21181,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1219, + "id": 1214, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1462, + "id": 1457, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -21293,7 +21212,7 @@ } }, { - "id": 1353, + "id": 1348, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -21317,7 +21236,7 @@ } }, { - "id": 1460, + "id": 1455, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -21341,7 +21260,7 @@ } }, { - "id": 1291, + "id": 1286, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -21361,7 +21280,7 @@ } }, { - "id": 1347, + "id": 1342, "name": "archived", "kind": 1024, "kindString": "Property", @@ -21384,7 +21303,7 @@ } }, { - "id": 1292, + "id": 1287, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -21404,7 +21323,7 @@ } }, { - "id": 1293, + "id": 1288, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -21424,7 +21343,7 @@ } }, { - "id": 1294, + "id": 1289, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -21444,7 +21363,7 @@ } }, { - "id": 1328, + "id": 1323, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -21464,7 +21383,7 @@ } }, { - "id": 1295, + "id": 1290, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -21484,7 +21403,7 @@ } }, { - "id": 1296, + "id": 1291, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -21504,7 +21423,7 @@ } }, { - "id": 1297, + "id": 1292, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -21524,7 +21443,7 @@ } }, { - "id": 1298, + "id": 1293, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -21544,7 +21463,7 @@ } }, { - "id": 1299, + "id": 1294, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -21564,7 +21483,7 @@ } }, { - "id": 1300, + "id": 1295, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -21584,7 +21503,7 @@ } }, { - "id": 1351, + "id": 1346, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -21613,7 +21532,7 @@ } }, { - "id": 1338, + "id": 1333, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -21636,7 +21555,7 @@ } }, { - "id": 1461, + "id": 1456, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -21660,7 +21579,7 @@ } }, { - "id": 1301, + "id": 1296, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -21680,7 +21599,7 @@ } }, { - "id": 1288, + "id": 1283, "name": "description", "kind": 1024, "kindString": "Property", @@ -21709,7 +21628,7 @@ } }, { - "id": 1348, + "id": 1343, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -21732,7 +21651,7 @@ } }, { - "id": 1302, + "id": 1297, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -21752,7 +21671,7 @@ } }, { - "id": 1303, + "id": 1298, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -21772,7 +21691,7 @@ } }, { - "id": 1289, + "id": 1284, "name": "fork", "kind": 1024, "kindString": "Property", @@ -21792,7 +21711,7 @@ } }, { - "id": 1255, + "id": 1250, "name": "forks", "kind": 1024, "kindString": "Property", @@ -21812,7 +21731,7 @@ } }, { - "id": 1334, + "id": 1329, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -21832,7 +21751,7 @@ } }, { - "id": 1304, + "id": 1299, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -21852,7 +21771,7 @@ } }, { - "id": 1223, + "id": 1218, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -21872,7 +21791,7 @@ } }, { - "id": 1305, + "id": 1300, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -21892,7 +21811,7 @@ } }, { - "id": 1306, + "id": 1301, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -21912,7 +21831,7 @@ } }, { - "id": 1307, + "id": 1302, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -21932,7 +21851,7 @@ } }, { - "id": 1308, + "id": 1303, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -21952,7 +21871,7 @@ } }, { - "id": 1346, + "id": 1341, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -21975,7 +21894,7 @@ } }, { - "id": 1342, + "id": 1337, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -21998,7 +21917,7 @@ } }, { - "id": 1345, + "id": 1340, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -22018,7 +21937,7 @@ } }, { - "id": 1343, + "id": 1338, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -22041,7 +21960,7 @@ } }, { - "id": 1344, + "id": 1339, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -22064,7 +21983,7 @@ } }, { - "id": 1332, + "id": 1327, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -22093,7 +22012,7 @@ } }, { - "id": 1330, + "id": 1325, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -22113,7 +22032,7 @@ } }, { - "id": 1287, + "id": 1282, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22133,7 +22052,7 @@ } }, { - "id": 1220, + "id": 1215, "name": "id", "kind": 1024, "kindString": "Property", @@ -22156,7 +22075,7 @@ } }, { - "id": 1340, + "id": 1335, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -22180,7 +22099,7 @@ } }, { - "id": 1309, + "id": 1304, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -22200,7 +22119,7 @@ } }, { - "id": 1310, + "id": 1305, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -22220,7 +22139,7 @@ } }, { - "id": 1311, + "id": 1306, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -22240,7 +22159,7 @@ } }, { - "id": 1312, + "id": 1307, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -22260,7 +22179,7 @@ } }, { - "id": 1313, + "id": 1308, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -22280,7 +22199,7 @@ } }, { - "id": 1333, + "id": 1328, "name": "language", "kind": 1024, "kindString": "Property", @@ -22309,7 +22228,7 @@ } }, { - "id": 1314, + "id": 1309, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -22329,7 +22248,7 @@ } }, { - "id": 1224, + "id": 1219, "name": "license", "kind": 1024, "kindString": "Property", @@ -22353,14 +22272,14 @@ { "type": "reflection", "declaration": { - "id": 1225, + "id": 1220, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1231, + "id": 1226, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22381,7 +22300,7 @@ } }, { - "id": 1226, + "id": 1221, "name": "key", "kind": 1024, "kindString": "Property", @@ -22401,7 +22320,7 @@ } }, { - "id": 1227, + "id": 1222, "name": "name", "kind": 1024, "kindString": "Property", @@ -22421,7 +22340,7 @@ } }, { - "id": 1230, + "id": 1225, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -22441,7 +22360,7 @@ } }, { - "id": 1229, + "id": 1224, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -22470,7 +22389,7 @@ } }, { - "id": 1228, + "id": 1223, "name": "url", "kind": 1024, "kindString": "Property", @@ -22504,12 +22423,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1231, 1226, - 1227, - 1230, - 1229, - 1228 + 1221, + 1222, + 1225, + 1224, + 1223 ] } ] @@ -22519,7 +22438,7 @@ } }, { - "id": 1467, + "id": 1462, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -22540,7 +22459,7 @@ } }, { - "id": 1315, + "id": 1310, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -22560,7 +22479,7 @@ } }, { - "id": 1316, + "id": 1311, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -22580,7 +22499,7 @@ } }, { - "id": 1329, + "id": 1324, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -22609,7 +22528,7 @@ } }, { - "id": 1222, + "id": 1217, "name": "name", "kind": 1024, "kindString": "Property", @@ -22632,7 +22551,7 @@ } }, { - "id": 1464, + "id": 1459, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -22653,7 +22572,7 @@ } }, { - "id": 1221, + "id": 1216, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -22673,7 +22592,7 @@ } }, { - "id": 1317, + "id": 1312, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -22693,7 +22612,7 @@ } }, { - "id": 1465, + "id": 1460, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -22713,7 +22632,7 @@ } }, { - "id": 1339, + "id": 1334, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -22733,7 +22652,7 @@ } }, { - "id": 1232, + "id": 1227, "name": "organization", "kind": 1024, "kindString": "Property", @@ -22758,14 +22677,14 @@ { "type": "reflection", "declaration": { - "id": 1233, + "id": 1228, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1239, + "id": 1234, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -22785,7 +22704,7 @@ } }, { - "id": 1235, + "id": 1230, "name": "email", "kind": 1024, "kindString": "Property", @@ -22815,7 +22734,7 @@ } }, { - "id": 1250, + "id": 1245, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -22835,7 +22754,7 @@ } }, { - "id": 1243, + "id": 1238, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -22855,7 +22774,7 @@ } }, { - "id": 1244, + "id": 1239, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -22875,7 +22794,7 @@ } }, { - "id": 1245, + "id": 1240, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -22895,7 +22814,7 @@ } }, { - "id": 1240, + "id": 1235, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -22924,7 +22843,7 @@ } }, { - "id": 1242, + "id": 1237, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22944,7 +22863,7 @@ } }, { - "id": 1237, + "id": 1232, "name": "id", "kind": 1024, "kindString": "Property", @@ -22964,7 +22883,7 @@ } }, { - "id": 1236, + "id": 1231, "name": "login", "kind": 1024, "kindString": "Property", @@ -22984,7 +22903,7 @@ } }, { - "id": 1234, + "id": 1229, "name": "name", "kind": 1024, "kindString": "Property", @@ -23014,7 +22933,7 @@ } }, { - "id": 1238, + "id": 1233, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23034,7 +22953,7 @@ } }, { - "id": 1248, + "id": 1243, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -23054,7 +22973,7 @@ } }, { - "id": 1251, + "id": 1246, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -23074,7 +22993,7 @@ } }, { - "id": 1249, + "id": 1244, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -23094,7 +23013,7 @@ } }, { - "id": 1253, + "id": 1248, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -23114,7 +23033,7 @@ } }, { - "id": 1254, + "id": 1249, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -23135,7 +23054,7 @@ } }, { - "id": 1246, + "id": 1241, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -23155,7 +23074,7 @@ } }, { - "id": 1247, + "id": 1242, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -23175,7 +23094,7 @@ } }, { - "id": 1252, + "id": 1247, "name": "type", "kind": 1024, "kindString": "Property", @@ -23195,7 +23114,7 @@ } }, { - "id": 1241, + "id": 1236, "name": "url", "kind": 1024, "kindString": "Property", @@ -23220,27 +23139,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1234, + 1230, + 1245, + 1238, 1239, + 1240, 1235, - 1250, + 1237, + 1232, + 1231, + 1229, + 1233, 1243, + 1246, 1244, - 1245, - 1240, - 1242, - 1237, - 1236, - 1234, - 1238, 1248, - 1251, 1249, - 1253, - 1254, - 1246, + 1241, + 1242, 1247, - 1252, - 1241 + 1236 ] } ] @@ -23250,7 +23169,7 @@ } }, { - "id": 1263, + "id": 1258, "name": "owner", "kind": 1024, "kindString": "Property", @@ -23274,14 +23193,14 @@ { "type": "reflection", "declaration": { - "id": 1264, + "id": 1259, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1270, + "id": 1265, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -23301,7 +23220,7 @@ } }, { - "id": 1266, + "id": 1261, "name": "email", "kind": 1024, "kindString": "Property", @@ -23331,7 +23250,7 @@ } }, { - "id": 1281, + "id": 1276, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -23351,7 +23270,7 @@ } }, { - "id": 1274, + "id": 1269, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -23371,7 +23290,7 @@ } }, { - "id": 1275, + "id": 1270, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -23391,7 +23310,7 @@ } }, { - "id": 1276, + "id": 1271, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -23411,7 +23330,7 @@ } }, { - "id": 1271, + "id": 1266, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -23440,7 +23359,7 @@ } }, { - "id": 1273, + "id": 1268, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -23460,7 +23379,7 @@ } }, { - "id": 1268, + "id": 1263, "name": "id", "kind": 1024, "kindString": "Property", @@ -23480,7 +23399,7 @@ } }, { - "id": 1267, + "id": 1262, "name": "login", "kind": 1024, "kindString": "Property", @@ -23500,7 +23419,7 @@ } }, { - "id": 1265, + "id": 1260, "name": "name", "kind": 1024, "kindString": "Property", @@ -23530,7 +23449,7 @@ } }, { - "id": 1269, + "id": 1264, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23550,7 +23469,7 @@ } }, { - "id": 1279, + "id": 1274, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -23570,7 +23489,7 @@ } }, { - "id": 1282, + "id": 1277, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -23590,7 +23509,7 @@ } }, { - "id": 1280, + "id": 1275, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -23610,7 +23529,7 @@ } }, { - "id": 1284, + "id": 1279, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -23630,7 +23549,7 @@ } }, { - "id": 1285, + "id": 1280, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -23651,7 +23570,7 @@ } }, { - "id": 1277, + "id": 1272, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -23671,7 +23590,7 @@ } }, { - "id": 1278, + "id": 1273, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -23691,7 +23610,7 @@ } }, { - "id": 1283, + "id": 1278, "name": "type", "kind": 1024, "kindString": "Property", @@ -23711,7 +23630,7 @@ } }, { - "id": 1272, + "id": 1267, "name": "url", "kind": 1024, "kindString": "Property", @@ -23736,27 +23655,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1265, + 1261, + 1276, + 1269, 1270, + 1271, 1266, - 1281, + 1268, + 1263, + 1262, + 1260, + 1264, 1274, + 1277, 1275, - 1276, - 1271, - 1273, - 1268, - 1267, - 1265, - 1269, 1279, - 1282, 1280, - 1284, - 1285, - 1277, + 1272, + 1273, 1278, - 1283, - 1272 + 1267 ] } ] @@ -23766,7 +23685,7 @@ } }, { - "id": 1256, + "id": 1251, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -23784,14 +23703,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1257, + "id": 1252, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1258, + "id": 1253, "name": "admin", "kind": 1024, "kindString": "Property", @@ -23811,7 +23730,7 @@ } }, { - "id": 1262, + "id": 1257, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -23832,7 +23751,7 @@ } }, { - "id": 1259, + "id": 1254, "name": "pull", "kind": 1024, "kindString": "Property", @@ -23852,7 +23771,7 @@ } }, { - "id": 1261, + "id": 1256, "name": "push", "kind": 1024, "kindString": "Property", @@ -23872,7 +23791,7 @@ } }, { - "id": 1260, + "id": 1255, "name": "triage", "kind": 1024, "kindString": "Property", @@ -23898,11 +23817,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1258, - 1262, - 1259, - 1261, - 1260 + 1253, + 1257, + 1254, + 1256, + 1255 ] } ] @@ -23910,7 +23829,7 @@ } }, { - "id": 1286, + "id": 1281, "name": "private", "kind": 1024, "kindString": "Property", @@ -23933,7 +23852,7 @@ } }, { - "id": 1318, + "id": 1313, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -23953,7 +23872,7 @@ } }, { - "id": 1350, + "id": 1345, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -23982,7 +23901,7 @@ } }, { - "id": 1319, + "id": 1314, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -24002,7 +23921,7 @@ } }, { - "id": 1337, + "id": 1332, "name": "size", "kind": 1024, "kindString": "Property", @@ -24022,7 +23941,7 @@ } }, { - "id": 1320, + "id": 1315, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -24042,7 +23961,7 @@ } }, { - "id": 1335, + "id": 1330, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -24062,7 +23981,7 @@ } }, { - "id": 1321, + "id": 1316, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -24082,7 +24001,7 @@ } }, { - "id": 1468, + "id": 1463, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -24103,7 +24022,7 @@ } }, { - "id": 1322, + "id": 1317, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -24123,7 +24042,7 @@ } }, { - "id": 1463, + "id": 1458, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -24144,7 +24063,7 @@ } }, { - "id": 1323, + "id": 1318, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -24164,7 +24083,7 @@ } }, { - "id": 1324, + "id": 1319, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -24184,7 +24103,7 @@ } }, { - "id": 1331, + "id": 1326, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -24204,7 +24123,7 @@ } }, { - "id": 1325, + "id": 1320, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -24224,7 +24143,7 @@ } }, { - "id": 1326, + "id": 1321, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -24244,7 +24163,7 @@ } }, { - "id": 1459, + "id": 1454, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -24265,7 +24184,7 @@ } }, { - "id": 1354, + "id": 1349, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -24290,14 +24209,14 @@ { "type": "reflection", "declaration": { - "id": 1355, + "id": 1350, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1456, + "id": 1451, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -24318,7 +24237,7 @@ } }, { - "id": 1452, + "id": 1447, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -24339,7 +24258,7 @@ } }, { - "id": 1454, + "id": 1449, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -24360,7 +24279,7 @@ } }, { - "id": 1385, + "id": 1380, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -24381,7 +24300,7 @@ } }, { - "id": 1441, + "id": 1436, "name": "archived", "kind": 1024, "kindString": "Property", @@ -24402,7 +24321,7 @@ } }, { - "id": 1386, + "id": 1381, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -24423,7 +24342,7 @@ } }, { - "id": 1387, + "id": 1382, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -24444,7 +24363,7 @@ } }, { - "id": 1388, + "id": 1383, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -24465,7 +24384,7 @@ } }, { - "id": 1422, + "id": 1417, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -24486,7 +24405,7 @@ } }, { - "id": 1389, + "id": 1384, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -24507,7 +24426,7 @@ } }, { - "id": 1390, + "id": 1385, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -24528,7 +24447,7 @@ } }, { - "id": 1391, + "id": 1386, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -24549,7 +24468,7 @@ } }, { - "id": 1392, + "id": 1387, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -24570,7 +24489,7 @@ } }, { - "id": 1393, + "id": 1388, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -24591,7 +24510,7 @@ } }, { - "id": 1394, + "id": 1389, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -24612,7 +24531,7 @@ } }, { - "id": 1445, + "id": 1440, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -24633,7 +24552,7 @@ } }, { - "id": 1432, + "id": 1427, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -24654,7 +24573,7 @@ } }, { - "id": 1455, + "id": 1450, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -24675,7 +24594,7 @@ } }, { - "id": 1395, + "id": 1390, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -24696,7 +24615,7 @@ } }, { - "id": 1382, + "id": 1377, "name": "description", "kind": 1024, "kindString": "Property", @@ -24717,7 +24636,7 @@ } }, { - "id": 1442, + "id": 1437, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -24738,7 +24657,7 @@ } }, { - "id": 1396, + "id": 1391, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -24759,7 +24678,7 @@ } }, { - "id": 1397, + "id": 1392, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -24780,7 +24699,7 @@ } }, { - "id": 1383, + "id": 1378, "name": "fork", "kind": 1024, "kindString": "Property", @@ -24801,7 +24720,7 @@ } }, { - "id": 1428, + "id": 1423, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -24822,7 +24741,7 @@ } }, { - "id": 1398, + "id": 1393, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -24843,7 +24762,7 @@ } }, { - "id": 1359, + "id": 1354, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -24864,7 +24783,7 @@ } }, { - "id": 1399, + "id": 1394, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -24885,7 +24804,7 @@ } }, { - "id": 1400, + "id": 1395, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -24906,7 +24825,7 @@ } }, { - "id": 1401, + "id": 1396, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -24927,7 +24846,7 @@ } }, { - "id": 1402, + "id": 1397, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -24948,7 +24867,7 @@ } }, { - "id": 1440, + "id": 1435, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -24969,7 +24888,7 @@ } }, { - "id": 1436, + "id": 1431, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -24990,7 +24909,7 @@ } }, { - "id": 1439, + "id": 1434, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -25011,7 +24930,7 @@ } }, { - "id": 1437, + "id": 1432, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -25032,7 +24951,7 @@ } }, { - "id": 1438, + "id": 1433, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -25053,7 +24972,7 @@ } }, { - "id": 1426, + "id": 1421, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -25074,7 +24993,7 @@ } }, { - "id": 1424, + "id": 1419, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -25095,7 +25014,7 @@ } }, { - "id": 1381, + "id": 1376, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -25116,7 +25035,7 @@ } }, { - "id": 1356, + "id": 1351, "name": "id", "kind": 1024, "kindString": "Property", @@ -25137,7 +25056,7 @@ } }, { - "id": 1434, + "id": 1429, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -25158,7 +25077,7 @@ } }, { - "id": 1403, + "id": 1398, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -25179,7 +25098,7 @@ } }, { - "id": 1404, + "id": 1399, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -25200,7 +25119,7 @@ } }, { - "id": 1405, + "id": 1400, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -25221,7 +25140,7 @@ } }, { - "id": 1406, + "id": 1401, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -25242,7 +25161,7 @@ } }, { - "id": 1407, + "id": 1402, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -25263,7 +25182,7 @@ } }, { - "id": 1427, + "id": 1422, "name": "language", "kind": 1024, "kindString": "Property", @@ -25284,7 +25203,7 @@ } }, { - "id": 1408, + "id": 1403, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -25305,7 +25224,7 @@ } }, { - "id": 1409, + "id": 1404, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -25326,7 +25245,7 @@ } }, { - "id": 1410, + "id": 1405, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -25347,7 +25266,7 @@ } }, { - "id": 1423, + "id": 1418, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -25368,7 +25287,7 @@ } }, { - "id": 1358, + "id": 1353, "name": "name", "kind": 1024, "kindString": "Property", @@ -25389,7 +25308,7 @@ } }, { - "id": 1458, + "id": 1453, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -25410,7 +25329,7 @@ } }, { - "id": 1357, + "id": 1352, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -25431,7 +25350,7 @@ } }, { - "id": 1411, + "id": 1406, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -25452,7 +25371,7 @@ } }, { - "id": 1433, + "id": 1428, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -25473,7 +25392,7 @@ } }, { - "id": 1360, + "id": 1355, "name": "owner", "kind": 1024, "kindString": "Property", @@ -25491,14 +25410,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1361, + "id": 1356, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1365, + "id": 1360, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -25519,7 +25438,7 @@ } }, { - "id": 1376, + "id": 1371, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -25540,7 +25459,7 @@ } }, { - "id": 1369, + "id": 1364, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -25561,7 +25480,7 @@ } }, { - "id": 1370, + "id": 1365, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -25582,7 +25501,7 @@ } }, { - "id": 1371, + "id": 1366, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -25603,7 +25522,7 @@ } }, { - "id": 1366, + "id": 1361, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -25624,7 +25543,7 @@ } }, { - "id": 1368, + "id": 1363, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -25645,7 +25564,7 @@ } }, { - "id": 1363, + "id": 1358, "name": "id", "kind": 1024, "kindString": "Property", @@ -25666,7 +25585,7 @@ } }, { - "id": 1362, + "id": 1357, "name": "login", "kind": 1024, "kindString": "Property", @@ -25687,7 +25606,7 @@ } }, { - "id": 1364, + "id": 1359, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -25708,7 +25627,7 @@ } }, { - "id": 1374, + "id": 1369, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -25729,7 +25648,7 @@ } }, { - "id": 1377, + "id": 1372, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -25750,7 +25669,7 @@ } }, { - "id": 1375, + "id": 1370, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -25771,7 +25690,7 @@ } }, { - "id": 1379, + "id": 1374, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -25792,7 +25711,7 @@ } }, { - "id": 1372, + "id": 1367, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -25813,7 +25732,7 @@ } }, { - "id": 1373, + "id": 1368, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -25834,7 +25753,7 @@ } }, { - "id": 1378, + "id": 1373, "name": "type", "kind": 1024, "kindString": "Property", @@ -25855,7 +25774,7 @@ } }, { - "id": 1367, + "id": 1362, "name": "url", "kind": 1024, "kindString": "Property", @@ -25881,24 +25800,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1365, - 1376, - 1369, - 1370, + 1360, 1371, + 1364, + 1365, 1366, - 1368, + 1361, 1363, - 1362, - 1364, - 1374, - 1377, - 1375, - 1379, + 1358, + 1357, + 1359, + 1369, 1372, + 1370, + 1374, + 1367, + 1368, 1373, - 1378, - 1367 + 1362 ] } ] @@ -25906,7 +25825,7 @@ } }, { - "id": 1447, + "id": 1442, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -25924,14 +25843,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1448, + "id": 1443, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1449, + "id": 1444, "name": "admin", "kind": 1024, "kindString": "Property", @@ -25952,7 +25871,7 @@ } }, { - "id": 1451, + "id": 1446, "name": "pull", "kind": 1024, "kindString": "Property", @@ -25973,7 +25892,7 @@ } }, { - "id": 1450, + "id": 1445, "name": "push", "kind": 1024, "kindString": "Property", @@ -25999,9 +25918,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1449, - 1451, - 1450 + 1444, + 1446, + 1445 ] } ] @@ -26009,7 +25928,7 @@ } }, { - "id": 1380, + "id": 1375, "name": "private", "kind": 1024, "kindString": "Property", @@ -26030,7 +25949,7 @@ } }, { - "id": 1412, + "id": 1407, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -26051,7 +25970,7 @@ } }, { - "id": 1444, + "id": 1439, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -26072,7 +25991,7 @@ } }, { - "id": 1413, + "id": 1408, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -26093,7 +26012,7 @@ } }, { - "id": 1431, + "id": 1426, "name": "size", "kind": 1024, "kindString": "Property", @@ -26114,7 +26033,7 @@ } }, { - "id": 1414, + "id": 1409, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -26135,7 +26054,7 @@ } }, { - "id": 1429, + "id": 1424, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -26156,7 +26075,7 @@ } }, { - "id": 1415, + "id": 1410, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -26177,7 +26096,7 @@ } }, { - "id": 1416, + "id": 1411, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -26198,7 +26117,7 @@ } }, { - "id": 1457, + "id": 1452, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -26219,7 +26138,7 @@ } }, { - "id": 1417, + "id": 1412, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -26240,7 +26159,7 @@ } }, { - "id": 1418, + "id": 1413, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -26261,7 +26180,7 @@ } }, { - "id": 1425, + "id": 1420, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -26282,7 +26201,7 @@ } }, { - "id": 1419, + "id": 1414, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -26303,7 +26222,7 @@ } }, { - "id": 1420, + "id": 1415, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -26324,7 +26243,7 @@ } }, { - "id": 1453, + "id": 1448, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -26345,7 +26264,7 @@ } }, { - "id": 1435, + "id": 1430, "name": "topics", "kind": 1024, "kindString": "Property", @@ -26369,7 +26288,7 @@ } }, { - "id": 1421, + "id": 1416, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -26390,7 +26309,7 @@ } }, { - "id": 1446, + "id": 1441, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -26411,7 +26330,7 @@ } }, { - "id": 1384, + "id": 1379, "name": "url", "kind": 1024, "kindString": "Property", @@ -26432,7 +26351,7 @@ } }, { - "id": 1443, + "id": 1438, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -26453,7 +26372,7 @@ } }, { - "id": 1430, + "id": 1425, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -26479,86 +26398,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1456, - 1452, - 1454, + 1451, + 1447, + 1449, + 1380, + 1436, + 1381, + 1382, + 1383, + 1417, + 1384, 1385, - 1441, 1386, 1387, 1388, - 1422, 1389, + 1440, + 1427, + 1450, 1390, + 1377, + 1437, 1391, 1392, + 1378, + 1423, 1393, + 1354, 1394, - 1445, - 1432, - 1455, 1395, - 1382, - 1442, 1396, 1397, - 1383, - 1428, + 1435, + 1431, + 1434, + 1432, + 1433, + 1421, + 1419, + 1376, + 1351, + 1429, 1398, - 1359, 1399, 1400, 1401, 1402, - 1440, - 1436, - 1439, - 1437, - 1438, - 1426, - 1424, - 1381, - 1356, - 1434, + 1422, 1403, 1404, 1405, + 1418, + 1353, + 1453, + 1352, 1406, + 1428, + 1355, + 1442, + 1375, 1407, - 1427, + 1439, 1408, + 1426, 1409, + 1424, 1410, - 1423, - 1358, - 1458, - 1357, 1411, - 1433, - 1360, - 1447, - 1380, + 1452, 1412, - 1444, 1413, - 1431, + 1420, 1414, - 1429, 1415, + 1448, + 1430, 1416, - 1457, - 1417, - 1418, - 1425, - 1419, - 1420, - 1453, - 1435, - 1421, - 1446, - 1384, - 1443, - 1430 + 1441, + 1379, + 1438, + 1425 ] } ] @@ -26568,7 +26487,7 @@ } }, { - "id": 1341, + "id": 1336, "name": "topics", "kind": 1024, "kindString": "Property", @@ -26592,7 +26511,7 @@ } }, { - "id": 1327, + "id": 1322, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -26612,7 +26531,7 @@ } }, { - "id": 1352, + "id": 1347, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -26641,7 +26560,7 @@ } }, { - "id": 1290, + "id": 1285, "name": "url", "kind": 1024, "kindString": "Property", @@ -26661,7 +26580,7 @@ } }, { - "id": 1349, + "id": 1344, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -26685,7 +26604,7 @@ } }, { - "id": 1466, + "id": 1461, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -26705,7 +26624,7 @@ } }, { - "id": 1336, + "id": 1331, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -26730,94 +26649,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1462, - 1353, - 1460, + 1457, + 1348, + 1455, + 1286, + 1342, + 1287, + 1288, + 1289, + 1323, + 1290, 1291, - 1347, 1292, 1293, 1294, - 1328, 1295, + 1346, + 1333, + 1456, 1296, + 1283, + 1343, 1297, 1298, + 1284, + 1250, + 1329, 1299, + 1218, 1300, - 1351, - 1338, - 1461, 1301, - 1288, - 1348, 1302, 1303, - 1289, - 1255, - 1334, + 1341, + 1337, + 1340, + 1338, + 1339, + 1327, + 1325, + 1282, + 1215, + 1335, 1304, - 1223, 1305, 1306, 1307, 1308, - 1346, - 1342, - 1345, - 1343, - 1344, - 1332, - 1330, - 1287, - 1220, - 1340, + 1328, 1309, + 1219, + 1462, 1310, 1311, + 1324, + 1217, + 1459, + 1216, 1312, + 1460, + 1334, + 1227, + 1258, + 1251, + 1281, 1313, - 1333, + 1345, 1314, - 1224, - 1467, + 1332, 1315, + 1330, 1316, - 1329, - 1222, - 1464, - 1221, + 1463, 1317, - 1465, - 1339, - 1232, - 1263, - 1256, - 1286, + 1458, 1318, - 1350, 1319, - 1337, + 1326, 1320, - 1335, 1321, - 1468, - 1322, - 1463, - 1323, - 1324, - 1331, - 1325, - 1326, - 1459, - 1354, - 1341, - 1327, - 1352, - 1290, + 1454, 1349, - 1466, - 1336 + 1336, + 1322, + 1347, + 1285, + 1344, + 1461, + 1331 ] } ] @@ -26825,7 +26744,7 @@ } }, { - "id": 924, + "id": 919, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -26843,14 +26762,14 @@ "type": { "type": "reflection", "declaration": { - "id": 925, + "id": 920, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 926, + "id": 921, "name": "admin", "kind": 1024, "kindString": "Property", @@ -26870,7 +26789,7 @@ } }, { - "id": 927, + "id": 922, "name": "pull", "kind": 1024, "kindString": "Property", @@ -26890,7 +26809,7 @@ } }, { - "id": 928, + "id": 923, "name": "push", "kind": 1024, "kindString": "Property", @@ -26915,9 +26834,9 @@ "title": "Properties", "kind": 1024, "children": [ - 926, - 927, - 928 + 921, + 922, + 923 ] } ] @@ -26925,7 +26844,7 @@ } }, { - "id": 857, + "id": 852, "name": "private", "kind": 1024, "kindString": "Property", @@ -26945,7 +26864,7 @@ } }, { - "id": 889, + "id": 884, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -26965,7 +26884,7 @@ } }, { - "id": 921, + "id": 916, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -26985,7 +26904,7 @@ } }, { - "id": 890, + "id": 885, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -27005,7 +26924,7 @@ } }, { - "id": 1731, + "id": 1726, "name": "security_and_analysis", "kind": 1024, "kindString": "Property", @@ -27030,14 +26949,14 @@ { "type": "reflection", "declaration": { - "id": 1732, + "id": 1727, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1733, + "id": 1728, "name": "advanced_security", "kind": 1024, "kindString": "Property", @@ -27055,14 +26974,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1734, + "id": 1729, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1735, + "id": 1730, "name": "status", "kind": 1024, "kindString": "Property", @@ -27097,7 +27016,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1735 + 1730 ] } ] @@ -27105,7 +27024,7 @@ } }, { - "id": 1736, + "id": 1731, "name": "secret_scanning", "kind": 1024, "kindString": "Property", @@ -27123,14 +27042,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1737, + "id": 1732, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1738, + "id": 1733, "name": "status", "kind": 1024, "kindString": "Property", @@ -27165,7 +27084,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1738 + 1733 ] } ] @@ -27178,8 +27097,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1733, - 1736 + 1728, + 1731 ] } ] @@ -27189,7 +27108,7 @@ } }, { - "id": 908, + "id": 903, "name": "size", "kind": 1024, "kindString": "Property", @@ -27209,7 +27128,7 @@ } }, { - "id": 1469, + "id": 1464, "name": "source", "kind": 1024, "kindString": "Property", @@ -27227,14 +27146,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1470, + "id": 1465, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1713, + "id": 1708, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -27258,7 +27177,7 @@ } }, { - "id": 1604, + "id": 1599, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -27282,7 +27201,7 @@ } }, { - "id": 1711, + "id": 1706, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -27306,7 +27225,7 @@ } }, { - "id": 1542, + "id": 1537, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -27326,7 +27245,7 @@ } }, { - "id": 1598, + "id": 1593, "name": "archived", "kind": 1024, "kindString": "Property", @@ -27349,7 +27268,7 @@ } }, { - "id": 1543, + "id": 1538, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -27369,7 +27288,7 @@ } }, { - "id": 1544, + "id": 1539, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -27389,7 +27308,7 @@ } }, { - "id": 1545, + "id": 1540, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -27409,7 +27328,7 @@ } }, { - "id": 1579, + "id": 1574, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -27429,7 +27348,7 @@ } }, { - "id": 1546, + "id": 1541, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -27449,7 +27368,7 @@ } }, { - "id": 1547, + "id": 1542, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -27469,7 +27388,7 @@ } }, { - "id": 1548, + "id": 1543, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -27489,7 +27408,7 @@ } }, { - "id": 1549, + "id": 1544, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -27509,7 +27428,7 @@ } }, { - "id": 1550, + "id": 1545, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -27529,7 +27448,7 @@ } }, { - "id": 1551, + "id": 1546, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -27549,7 +27468,7 @@ } }, { - "id": 1602, + "id": 1597, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -27578,7 +27497,7 @@ } }, { - "id": 1589, + "id": 1584, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -27601,7 +27520,7 @@ } }, { - "id": 1712, + "id": 1707, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -27625,7 +27544,7 @@ } }, { - "id": 1552, + "id": 1547, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -27645,7 +27564,7 @@ } }, { - "id": 1539, + "id": 1534, "name": "description", "kind": 1024, "kindString": "Property", @@ -27674,7 +27593,7 @@ } }, { - "id": 1599, + "id": 1594, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -27697,7 +27616,7 @@ } }, { - "id": 1553, + "id": 1548, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -27717,7 +27636,7 @@ } }, { - "id": 1554, + "id": 1549, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -27737,7 +27656,7 @@ } }, { - "id": 1540, + "id": 1535, "name": "fork", "kind": 1024, "kindString": "Property", @@ -27757,7 +27676,7 @@ } }, { - "id": 1506, + "id": 1501, "name": "forks", "kind": 1024, "kindString": "Property", @@ -27777,7 +27696,7 @@ } }, { - "id": 1585, + "id": 1580, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -27797,7 +27716,7 @@ } }, { - "id": 1555, + "id": 1550, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -27817,7 +27736,7 @@ } }, { - "id": 1474, + "id": 1469, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -27837,7 +27756,7 @@ } }, { - "id": 1556, + "id": 1551, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -27857,7 +27776,7 @@ } }, { - "id": 1557, + "id": 1552, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -27877,7 +27796,7 @@ } }, { - "id": 1558, + "id": 1553, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -27897,7 +27816,7 @@ } }, { - "id": 1559, + "id": 1554, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -27917,7 +27836,7 @@ } }, { - "id": 1597, + "id": 1592, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -27940,7 +27859,7 @@ } }, { - "id": 1593, + "id": 1588, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -27963,7 +27882,7 @@ } }, { - "id": 1596, + "id": 1591, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -27983,7 +27902,7 @@ } }, { - "id": 1594, + "id": 1589, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -28006,7 +27925,7 @@ } }, { - "id": 1595, + "id": 1590, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -28029,7 +27948,7 @@ } }, { - "id": 1583, + "id": 1578, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -28058,7 +27977,7 @@ } }, { - "id": 1581, + "id": 1576, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -28078,7 +27997,7 @@ } }, { - "id": 1538, + "id": 1533, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28098,7 +28017,7 @@ } }, { - "id": 1471, + "id": 1466, "name": "id", "kind": 1024, "kindString": "Property", @@ -28121,7 +28040,7 @@ } }, { - "id": 1591, + "id": 1586, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -28145,7 +28064,7 @@ } }, { - "id": 1560, + "id": 1555, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -28165,7 +28084,7 @@ } }, { - "id": 1561, + "id": 1556, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -28185,7 +28104,7 @@ } }, { - "id": 1562, + "id": 1557, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -28205,7 +28124,7 @@ } }, { - "id": 1563, + "id": 1558, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -28225,7 +28144,7 @@ } }, { - "id": 1564, + "id": 1559, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -28245,7 +28164,7 @@ } }, { - "id": 1584, + "id": 1579, "name": "language", "kind": 1024, "kindString": "Property", @@ -28274,7 +28193,7 @@ } }, { - "id": 1565, + "id": 1560, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -28294,7 +28213,7 @@ } }, { - "id": 1475, + "id": 1470, "name": "license", "kind": 1024, "kindString": "Property", @@ -28318,14 +28237,14 @@ { "type": "reflection", "declaration": { - "id": 1476, + "id": 1471, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1482, + "id": 1477, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28346,7 +28265,7 @@ } }, { - "id": 1477, + "id": 1472, "name": "key", "kind": 1024, "kindString": "Property", @@ -28366,7 +28285,7 @@ } }, { - "id": 1478, + "id": 1473, "name": "name", "kind": 1024, "kindString": "Property", @@ -28386,7 +28305,7 @@ } }, { - "id": 1481, + "id": 1476, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -28406,7 +28325,7 @@ } }, { - "id": 1480, + "id": 1475, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -28435,7 +28354,7 @@ } }, { - "id": 1479, + "id": 1474, "name": "url", "kind": 1024, "kindString": "Property", @@ -28469,12 +28388,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1482, 1477, - 1478, - 1481, - 1480, - 1479 + 1472, + 1473, + 1476, + 1475, + 1474 ] } ] @@ -28484,7 +28403,7 @@ } }, { - "id": 1718, + "id": 1713, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -28505,7 +28424,7 @@ } }, { - "id": 1566, + "id": 1561, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -28525,7 +28444,7 @@ } }, { - "id": 1567, + "id": 1562, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -28545,7 +28464,7 @@ } }, { - "id": 1580, + "id": 1575, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -28574,7 +28493,7 @@ } }, { - "id": 1473, + "id": 1468, "name": "name", "kind": 1024, "kindString": "Property", @@ -28597,7 +28516,7 @@ } }, { - "id": 1715, + "id": 1710, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -28618,7 +28537,7 @@ } }, { - "id": 1472, + "id": 1467, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -28638,7 +28557,7 @@ } }, { - "id": 1568, + "id": 1563, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -28658,7 +28577,7 @@ } }, { - "id": 1716, + "id": 1711, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -28678,7 +28597,7 @@ } }, { - "id": 1590, + "id": 1585, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -28698,7 +28617,7 @@ } }, { - "id": 1483, + "id": 1478, "name": "organization", "kind": 1024, "kindString": "Property", @@ -28723,14 +28642,14 @@ { "type": "reflection", "declaration": { - "id": 1484, + "id": 1479, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1490, + "id": 1485, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -28750,7 +28669,7 @@ } }, { - "id": 1486, + "id": 1481, "name": "email", "kind": 1024, "kindString": "Property", @@ -28780,7 +28699,7 @@ } }, { - "id": 1501, + "id": 1496, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -28800,7 +28719,7 @@ } }, { - "id": 1494, + "id": 1489, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -28820,7 +28739,7 @@ } }, { - "id": 1495, + "id": 1490, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -28840,7 +28759,7 @@ } }, { - "id": 1496, + "id": 1491, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -28860,7 +28779,7 @@ } }, { - "id": 1491, + "id": 1486, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -28889,7 +28808,7 @@ } }, { - "id": 1493, + "id": 1488, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28909,7 +28828,7 @@ } }, { - "id": 1488, + "id": 1483, "name": "id", "kind": 1024, "kindString": "Property", @@ -28929,7 +28848,7 @@ } }, { - "id": 1487, + "id": 1482, "name": "login", "kind": 1024, "kindString": "Property", @@ -28949,7 +28868,7 @@ } }, { - "id": 1485, + "id": 1480, "name": "name", "kind": 1024, "kindString": "Property", @@ -28979,7 +28898,7 @@ } }, { - "id": 1489, + "id": 1484, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -28999,7 +28918,7 @@ } }, { - "id": 1499, + "id": 1494, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -29019,7 +28938,7 @@ } }, { - "id": 1502, + "id": 1497, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -29039,7 +28958,7 @@ } }, { - "id": 1500, + "id": 1495, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -29059,7 +28978,7 @@ } }, { - "id": 1504, + "id": 1499, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -29079,7 +28998,7 @@ } }, { - "id": 1505, + "id": 1500, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -29100,7 +29019,7 @@ } }, { - "id": 1497, + "id": 1492, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -29120,7 +29039,7 @@ } }, { - "id": 1498, + "id": 1493, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -29140,7 +29059,7 @@ } }, { - "id": 1503, + "id": 1498, "name": "type", "kind": 1024, "kindString": "Property", @@ -29160,7 +29079,7 @@ } }, { - "id": 1492, + "id": 1487, "name": "url", "kind": 1024, "kindString": "Property", @@ -29185,27 +29104,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1485, + 1481, + 1496, + 1489, 1490, + 1491, 1486, - 1501, + 1488, + 1483, + 1482, + 1480, + 1484, 1494, + 1497, 1495, - 1496, - 1491, - 1493, - 1488, - 1487, - 1485, - 1489, 1499, - 1502, 1500, - 1504, - 1505, - 1497, + 1492, + 1493, 1498, - 1503, - 1492 + 1487 ] } ] @@ -29215,7 +29134,7 @@ } }, { - "id": 1514, + "id": 1509, "name": "owner", "kind": 1024, "kindString": "Property", @@ -29239,14 +29158,14 @@ { "type": "reflection", "declaration": { - "id": 1515, + "id": 1510, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1521, + "id": 1516, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -29266,7 +29185,7 @@ } }, { - "id": 1517, + "id": 1512, "name": "email", "kind": 1024, "kindString": "Property", @@ -29296,7 +29215,7 @@ } }, { - "id": 1532, + "id": 1527, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -29316,7 +29235,7 @@ } }, { - "id": 1525, + "id": 1520, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -29336,7 +29255,7 @@ } }, { - "id": 1526, + "id": 1521, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -29356,7 +29275,7 @@ } }, { - "id": 1527, + "id": 1522, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -29376,7 +29295,7 @@ } }, { - "id": 1522, + "id": 1517, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -29405,7 +29324,7 @@ } }, { - "id": 1524, + "id": 1519, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -29425,7 +29344,7 @@ } }, { - "id": 1519, + "id": 1514, "name": "id", "kind": 1024, "kindString": "Property", @@ -29445,7 +29364,7 @@ } }, { - "id": 1518, + "id": 1513, "name": "login", "kind": 1024, "kindString": "Property", @@ -29465,7 +29384,7 @@ } }, { - "id": 1516, + "id": 1511, "name": "name", "kind": 1024, "kindString": "Property", @@ -29495,7 +29414,7 @@ } }, { - "id": 1520, + "id": 1515, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -29515,7 +29434,7 @@ } }, { - "id": 1530, + "id": 1525, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -29535,7 +29454,7 @@ } }, { - "id": 1533, + "id": 1528, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -29555,7 +29474,7 @@ } }, { - "id": 1531, + "id": 1526, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -29575,7 +29494,7 @@ } }, { - "id": 1535, + "id": 1530, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -29595,7 +29514,7 @@ } }, { - "id": 1536, + "id": 1531, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -29616,7 +29535,7 @@ } }, { - "id": 1528, + "id": 1523, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -29636,7 +29555,7 @@ } }, { - "id": 1529, + "id": 1524, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -29656,7 +29575,7 @@ } }, { - "id": 1534, + "id": 1529, "name": "type", "kind": 1024, "kindString": "Property", @@ -29676,7 +29595,7 @@ } }, { - "id": 1523, + "id": 1518, "name": "url", "kind": 1024, "kindString": "Property", @@ -29701,27 +29620,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1516, + 1512, + 1527, + 1520, 1521, + 1522, 1517, - 1532, + 1519, + 1514, + 1513, + 1511, + 1515, 1525, + 1528, 1526, - 1527, - 1522, - 1524, - 1519, - 1518, - 1516, - 1520, 1530, - 1533, 1531, - 1535, - 1536, - 1528, + 1523, + 1524, 1529, - 1534, - 1523 + 1518 ] } ] @@ -29731,7 +29650,7 @@ } }, { - "id": 1507, + "id": 1502, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -29749,14 +29668,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1508, + "id": 1503, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1509, + "id": 1504, "name": "admin", "kind": 1024, "kindString": "Property", @@ -29776,7 +29695,7 @@ } }, { - "id": 1513, + "id": 1508, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -29797,7 +29716,7 @@ } }, { - "id": 1510, + "id": 1505, "name": "pull", "kind": 1024, "kindString": "Property", @@ -29817,7 +29736,7 @@ } }, { - "id": 1512, + "id": 1507, "name": "push", "kind": 1024, "kindString": "Property", @@ -29837,7 +29756,7 @@ } }, { - "id": 1511, + "id": 1506, "name": "triage", "kind": 1024, "kindString": "Property", @@ -29863,11 +29782,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1509, - 1513, - 1510, - 1512, - 1511 + 1504, + 1508, + 1505, + 1507, + 1506 ] } ] @@ -29875,7 +29794,7 @@ } }, { - "id": 1537, + "id": 1532, "name": "private", "kind": 1024, "kindString": "Property", @@ -29898,7 +29817,7 @@ } }, { - "id": 1569, + "id": 1564, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -29918,7 +29837,7 @@ } }, { - "id": 1601, + "id": 1596, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -29947,7 +29866,7 @@ } }, { - "id": 1570, + "id": 1565, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -29967,7 +29886,7 @@ } }, { - "id": 1588, + "id": 1583, "name": "size", "kind": 1024, "kindString": "Property", @@ -29987,7 +29906,7 @@ } }, { - "id": 1571, + "id": 1566, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -30007,7 +29926,7 @@ } }, { - "id": 1586, + "id": 1581, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -30027,7 +29946,7 @@ } }, { - "id": 1572, + "id": 1567, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -30047,7 +29966,7 @@ } }, { - "id": 1719, + "id": 1714, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -30068,7 +29987,7 @@ } }, { - "id": 1573, + "id": 1568, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -30088,7 +30007,7 @@ } }, { - "id": 1714, + "id": 1709, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -30109,7 +30028,7 @@ } }, { - "id": 1574, + "id": 1569, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -30129,7 +30048,7 @@ } }, { - "id": 1575, + "id": 1570, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -30149,7 +30068,7 @@ } }, { - "id": 1582, + "id": 1577, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -30169,7 +30088,7 @@ } }, { - "id": 1576, + "id": 1571, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -30189,7 +30108,7 @@ } }, { - "id": 1577, + "id": 1572, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -30209,7 +30128,7 @@ } }, { - "id": 1710, + "id": 1705, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -30230,7 +30149,7 @@ } }, { - "id": 1605, + "id": 1600, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -30255,14 +30174,14 @@ { "type": "reflection", "declaration": { - "id": 1606, + "id": 1601, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1707, + "id": 1702, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -30283,7 +30202,7 @@ } }, { - "id": 1703, + "id": 1698, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -30304,7 +30223,7 @@ } }, { - "id": 1705, + "id": 1700, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -30325,7 +30244,7 @@ } }, { - "id": 1636, + "id": 1631, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -30346,7 +30265,7 @@ } }, { - "id": 1692, + "id": 1687, "name": "archived", "kind": 1024, "kindString": "Property", @@ -30367,7 +30286,7 @@ } }, { - "id": 1637, + "id": 1632, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -30388,7 +30307,7 @@ } }, { - "id": 1638, + "id": 1633, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -30409,7 +30328,7 @@ } }, { - "id": 1639, + "id": 1634, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -30430,7 +30349,7 @@ } }, { - "id": 1673, + "id": 1668, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -30451,7 +30370,7 @@ } }, { - "id": 1640, + "id": 1635, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -30472,7 +30391,7 @@ } }, { - "id": 1641, + "id": 1636, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -30493,7 +30412,7 @@ } }, { - "id": 1642, + "id": 1637, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -30514,7 +30433,7 @@ } }, { - "id": 1643, + "id": 1638, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -30535,7 +30454,7 @@ } }, { - "id": 1644, + "id": 1639, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -30556,7 +30475,7 @@ } }, { - "id": 1645, + "id": 1640, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -30577,7 +30496,7 @@ } }, { - "id": 1696, + "id": 1691, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -30598,7 +30517,7 @@ } }, { - "id": 1683, + "id": 1678, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -30619,7 +30538,7 @@ } }, { - "id": 1706, + "id": 1701, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -30640,7 +30559,7 @@ } }, { - "id": 1646, + "id": 1641, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -30661,7 +30580,7 @@ } }, { - "id": 1633, + "id": 1628, "name": "description", "kind": 1024, "kindString": "Property", @@ -30682,7 +30601,7 @@ } }, { - "id": 1693, + "id": 1688, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -30703,7 +30622,7 @@ } }, { - "id": 1647, + "id": 1642, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -30724,7 +30643,7 @@ } }, { - "id": 1648, + "id": 1643, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -30745,7 +30664,7 @@ } }, { - "id": 1634, + "id": 1629, "name": "fork", "kind": 1024, "kindString": "Property", @@ -30766,7 +30685,7 @@ } }, { - "id": 1679, + "id": 1674, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -30787,7 +30706,7 @@ } }, { - "id": 1649, + "id": 1644, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -30808,7 +30727,7 @@ } }, { - "id": 1610, + "id": 1605, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -30829,7 +30748,7 @@ } }, { - "id": 1650, + "id": 1645, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -30850,7 +30769,7 @@ } }, { - "id": 1651, + "id": 1646, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -30871,7 +30790,7 @@ } }, { - "id": 1652, + "id": 1647, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -30892,7 +30811,7 @@ } }, { - "id": 1653, + "id": 1648, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -30913,7 +30832,7 @@ } }, { - "id": 1691, + "id": 1686, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -30934,7 +30853,7 @@ } }, { - "id": 1687, + "id": 1682, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -30955,7 +30874,7 @@ } }, { - "id": 1690, + "id": 1685, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -30976,7 +30895,7 @@ } }, { - "id": 1688, + "id": 1683, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -30997,7 +30916,7 @@ } }, { - "id": 1689, + "id": 1684, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -31018,7 +30937,7 @@ } }, { - "id": 1677, + "id": 1672, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -31039,7 +30958,7 @@ } }, { - "id": 1675, + "id": 1670, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -31060,7 +30979,7 @@ } }, { - "id": 1632, + "id": 1627, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -31081,7 +31000,7 @@ } }, { - "id": 1607, + "id": 1602, "name": "id", "kind": 1024, "kindString": "Property", @@ -31102,7 +31021,7 @@ } }, { - "id": 1685, + "id": 1680, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -31123,7 +31042,7 @@ } }, { - "id": 1654, + "id": 1649, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -31144,7 +31063,7 @@ } }, { - "id": 1655, + "id": 1650, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -31165,7 +31084,7 @@ } }, { - "id": 1656, + "id": 1651, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -31186,7 +31105,7 @@ } }, { - "id": 1657, + "id": 1652, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -31207,7 +31126,7 @@ } }, { - "id": 1658, + "id": 1653, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -31228,7 +31147,7 @@ } }, { - "id": 1678, + "id": 1673, "name": "language", "kind": 1024, "kindString": "Property", @@ -31249,7 +31168,7 @@ } }, { - "id": 1659, + "id": 1654, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -31270,7 +31189,7 @@ } }, { - "id": 1660, + "id": 1655, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -31291,7 +31210,7 @@ } }, { - "id": 1661, + "id": 1656, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -31312,7 +31231,7 @@ } }, { - "id": 1674, + "id": 1669, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -31333,7 +31252,7 @@ } }, { - "id": 1609, + "id": 1604, "name": "name", "kind": 1024, "kindString": "Property", @@ -31354,7 +31273,7 @@ } }, { - "id": 1709, + "id": 1704, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -31375,7 +31294,7 @@ } }, { - "id": 1608, + "id": 1603, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -31396,7 +31315,7 @@ } }, { - "id": 1662, + "id": 1657, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -31417,7 +31336,7 @@ } }, { - "id": 1684, + "id": 1679, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -31438,7 +31357,7 @@ } }, { - "id": 1611, + "id": 1606, "name": "owner", "kind": 1024, "kindString": "Property", @@ -31456,14 +31375,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1612, + "id": 1607, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1616, + "id": 1611, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -31484,7 +31403,7 @@ } }, { - "id": 1627, + "id": 1622, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -31505,7 +31424,7 @@ } }, { - "id": 1620, + "id": 1615, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -31526,7 +31445,7 @@ } }, { - "id": 1621, + "id": 1616, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -31547,7 +31466,7 @@ } }, { - "id": 1622, + "id": 1617, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -31568,7 +31487,7 @@ } }, { - "id": 1617, + "id": 1612, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -31589,7 +31508,7 @@ } }, { - "id": 1619, + "id": 1614, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -31610,7 +31529,7 @@ } }, { - "id": 1614, + "id": 1609, "name": "id", "kind": 1024, "kindString": "Property", @@ -31631,7 +31550,7 @@ } }, { - "id": 1613, + "id": 1608, "name": "login", "kind": 1024, "kindString": "Property", @@ -31652,7 +31571,7 @@ } }, { - "id": 1615, + "id": 1610, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -31673,7 +31592,7 @@ } }, { - "id": 1625, + "id": 1620, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -31694,7 +31613,7 @@ } }, { - "id": 1628, + "id": 1623, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -31715,7 +31634,7 @@ } }, { - "id": 1626, + "id": 1621, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -31736,7 +31655,7 @@ } }, { - "id": 1630, + "id": 1625, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -31757,7 +31676,7 @@ } }, { - "id": 1623, + "id": 1618, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -31778,7 +31697,7 @@ } }, { - "id": 1624, + "id": 1619, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -31799,7 +31718,7 @@ } }, { - "id": 1629, + "id": 1624, "name": "type", "kind": 1024, "kindString": "Property", @@ -31820,7 +31739,7 @@ } }, { - "id": 1618, + "id": 1613, "name": "url", "kind": 1024, "kindString": "Property", @@ -31846,24 +31765,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1616, - 1627, - 1620, - 1621, + 1611, 1622, + 1615, + 1616, 1617, - 1619, + 1612, 1614, - 1613, - 1615, - 1625, - 1628, - 1626, - 1630, + 1609, + 1608, + 1610, + 1620, 1623, + 1621, + 1625, + 1618, + 1619, 1624, - 1629, - 1618 + 1613 ] } ] @@ -31871,7 +31790,7 @@ } }, { - "id": 1698, + "id": 1693, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -31889,14 +31808,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1699, + "id": 1694, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1700, + "id": 1695, "name": "admin", "kind": 1024, "kindString": "Property", @@ -31917,7 +31836,7 @@ } }, { - "id": 1702, + "id": 1697, "name": "pull", "kind": 1024, "kindString": "Property", @@ -31938,7 +31857,7 @@ } }, { - "id": 1701, + "id": 1696, "name": "push", "kind": 1024, "kindString": "Property", @@ -31964,9 +31883,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1700, - 1702, - 1701 + 1695, + 1697, + 1696 ] } ] @@ -31974,7 +31893,7 @@ } }, { - "id": 1631, + "id": 1626, "name": "private", "kind": 1024, "kindString": "Property", @@ -31995,7 +31914,7 @@ } }, { - "id": 1663, + "id": 1658, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -32016,7 +31935,7 @@ } }, { - "id": 1695, + "id": 1690, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -32037,7 +31956,7 @@ } }, { - "id": 1664, + "id": 1659, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -32058,7 +31977,7 @@ } }, { - "id": 1682, + "id": 1677, "name": "size", "kind": 1024, "kindString": "Property", @@ -32079,7 +31998,7 @@ } }, { - "id": 1665, + "id": 1660, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -32100,7 +32019,7 @@ } }, { - "id": 1680, + "id": 1675, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -32121,7 +32040,7 @@ } }, { - "id": 1666, + "id": 1661, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -32142,7 +32061,7 @@ } }, { - "id": 1667, + "id": 1662, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -32163,7 +32082,7 @@ } }, { - "id": 1708, + "id": 1703, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -32184,7 +32103,7 @@ } }, { - "id": 1668, + "id": 1663, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -32205,7 +32124,7 @@ } }, { - "id": 1669, + "id": 1664, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -32226,7 +32145,7 @@ } }, { - "id": 1676, + "id": 1671, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -32247,7 +32166,7 @@ } }, { - "id": 1670, + "id": 1665, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -32268,7 +32187,7 @@ } }, { - "id": 1671, + "id": 1666, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -32289,7 +32208,7 @@ } }, { - "id": 1704, + "id": 1699, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -32310,7 +32229,7 @@ } }, { - "id": 1686, + "id": 1681, "name": "topics", "kind": 1024, "kindString": "Property", @@ -32334,7 +32253,7 @@ } }, { - "id": 1672, + "id": 1667, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -32355,7 +32274,7 @@ } }, { - "id": 1697, + "id": 1692, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -32376,7 +32295,7 @@ } }, { - "id": 1635, + "id": 1630, "name": "url", "kind": 1024, "kindString": "Property", @@ -32397,7 +32316,7 @@ } }, { - "id": 1694, + "id": 1689, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -32418,7 +32337,7 @@ } }, { - "id": 1681, + "id": 1676, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -32444,86 +32363,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1707, - 1703, - 1705, + 1702, + 1698, + 1700, + 1631, + 1687, + 1632, + 1633, + 1634, + 1668, + 1635, 1636, - 1692, 1637, 1638, 1639, - 1673, 1640, + 1691, + 1678, + 1701, 1641, + 1628, + 1688, 1642, 1643, + 1629, + 1674, 1644, + 1605, 1645, - 1696, - 1683, - 1706, 1646, - 1633, - 1693, 1647, 1648, - 1634, - 1679, + 1686, + 1682, + 1685, + 1683, + 1684, + 1672, + 1670, + 1627, + 1602, + 1680, 1649, - 1610, 1650, 1651, 1652, 1653, - 1691, - 1687, - 1690, - 1688, - 1689, - 1677, - 1675, - 1632, - 1607, - 1685, + 1673, 1654, 1655, 1656, + 1669, + 1604, + 1704, + 1603, 1657, + 1679, + 1606, + 1693, + 1626, 1658, - 1678, + 1690, 1659, + 1677, 1660, + 1675, 1661, - 1674, - 1609, - 1709, - 1608, 1662, - 1684, - 1611, - 1698, - 1631, + 1703, 1663, - 1695, 1664, - 1682, + 1671, 1665, - 1680, 1666, + 1699, + 1681, 1667, - 1708, - 1668, - 1669, - 1676, - 1670, - 1671, - 1704, - 1686, - 1672, - 1697, - 1635, - 1694, - 1681 + 1692, + 1630, + 1689, + 1676 ] } ] @@ -32533,7 +32452,7 @@ } }, { - "id": 1592, + "id": 1587, "name": "topics", "kind": 1024, "kindString": "Property", @@ -32557,7 +32476,7 @@ } }, { - "id": 1578, + "id": 1573, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -32577,7 +32496,7 @@ } }, { - "id": 1603, + "id": 1598, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -32606,7 +32525,7 @@ } }, { - "id": 1541, + "id": 1536, "name": "url", "kind": 1024, "kindString": "Property", @@ -32626,7 +32545,7 @@ } }, { - "id": 1600, + "id": 1595, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -32650,7 +32569,7 @@ } }, { - "id": 1717, + "id": 1712, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -32670,7 +32589,7 @@ } }, { - "id": 1587, + "id": 1582, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -32695,94 +32614,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1713, - 1604, - 1711, + 1708, + 1599, + 1706, + 1537, + 1593, + 1538, + 1539, + 1540, + 1574, + 1541, 1542, - 1598, 1543, 1544, 1545, - 1579, 1546, + 1597, + 1584, + 1707, 1547, + 1534, + 1594, 1548, 1549, + 1535, + 1501, + 1580, 1550, + 1469, 1551, - 1602, - 1589, - 1712, 1552, - 1539, - 1599, 1553, 1554, - 1540, - 1506, - 1585, + 1592, + 1588, + 1591, + 1589, + 1590, + 1578, + 1576, + 1533, + 1466, + 1586, 1555, - 1474, 1556, 1557, 1558, 1559, - 1597, - 1593, - 1596, - 1594, - 1595, - 1583, - 1581, - 1538, - 1471, - 1591, + 1579, 1560, + 1470, + 1713, 1561, 1562, + 1575, + 1468, + 1710, + 1467, 1563, + 1711, + 1585, + 1478, + 1509, + 1502, + 1532, 1564, - 1584, + 1596, 1565, - 1475, - 1718, + 1583, 1566, + 1581, 1567, - 1580, - 1473, - 1715, - 1472, + 1714, 1568, - 1716, - 1590, - 1483, - 1514, - 1507, - 1537, + 1709, 1569, - 1601, 1570, - 1588, + 1577, 1571, - 1586, 1572, - 1719, - 1573, - 1714, - 1574, - 1575, - 1582, - 1576, - 1577, - 1710, - 1605, - 1592, - 1578, - 1603, - 1541, + 1705, 1600, - 1717, - 1587 + 1587, + 1573, + 1598, + 1536, + 1595, + 1712, + 1582 ] } ] @@ -32790,7 +32709,7 @@ } }, { - "id": 891, + "id": 886, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -32810,7 +32729,7 @@ } }, { - "id": 906, + "id": 901, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -32830,7 +32749,7 @@ } }, { - "id": 892, + "id": 887, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -32850,7 +32769,7 @@ } }, { - "id": 893, + "id": 888, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -32870,7 +32789,7 @@ } }, { - "id": 1185, + "id": 1180, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -32890,7 +32809,7 @@ } }, { - "id": 894, + "id": 889, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -32910,7 +32829,7 @@ } }, { - "id": 895, + "id": 890, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -32930,7 +32849,7 @@ } }, { - "id": 902, + "id": 897, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -32950,7 +32869,7 @@ } }, { - "id": 896, + "id": 891, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -32970,7 +32889,7 @@ } }, { - "id": 897, + "id": 892, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -32990,7 +32909,7 @@ } }, { - "id": 1181, + "id": 1176, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -33020,7 +32939,7 @@ } }, { - "id": 930, + "id": 925, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -33045,14 +32964,14 @@ { "type": "reflection", "declaration": { - "id": 931, + "id": 926, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1174, + "id": 1169, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -33076,7 +32995,7 @@ } }, { - "id": 1065, + "id": 1060, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -33100,7 +33019,7 @@ } }, { - "id": 1172, + "id": 1167, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -33124,7 +33043,7 @@ } }, { - "id": 1003, + "id": 998, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -33144,7 +33063,7 @@ } }, { - "id": 1059, + "id": 1054, "name": "archived", "kind": 1024, "kindString": "Property", @@ -33167,7 +33086,7 @@ } }, { - "id": 1004, + "id": 999, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -33187,7 +33106,7 @@ } }, { - "id": 1005, + "id": 1000, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -33207,7 +33126,7 @@ } }, { - "id": 1006, + "id": 1001, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -33227,7 +33146,7 @@ } }, { - "id": 1040, + "id": 1035, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -33247,7 +33166,7 @@ } }, { - "id": 1007, + "id": 1002, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -33267,7 +33186,7 @@ } }, { - "id": 1008, + "id": 1003, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -33287,7 +33206,7 @@ } }, { - "id": 1009, + "id": 1004, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -33307,7 +33226,7 @@ } }, { - "id": 1010, + "id": 1005, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -33327,7 +33246,7 @@ } }, { - "id": 1011, + "id": 1006, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -33347,7 +33266,7 @@ } }, { - "id": 1012, + "id": 1007, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -33367,7 +33286,7 @@ } }, { - "id": 1063, + "id": 1058, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -33396,7 +33315,7 @@ } }, { - "id": 1050, + "id": 1045, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -33419,7 +33338,7 @@ } }, { - "id": 1173, + "id": 1168, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -33443,7 +33362,7 @@ } }, { - "id": 1013, + "id": 1008, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -33463,7 +33382,7 @@ } }, { - "id": 1000, + "id": 995, "name": "description", "kind": 1024, "kindString": "Property", @@ -33492,7 +33411,7 @@ } }, { - "id": 1060, + "id": 1055, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -33515,7 +33434,7 @@ } }, { - "id": 1014, + "id": 1009, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -33535,7 +33454,7 @@ } }, { - "id": 1015, + "id": 1010, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -33555,7 +33474,7 @@ } }, { - "id": 1001, + "id": 996, "name": "fork", "kind": 1024, "kindString": "Property", @@ -33575,7 +33494,7 @@ } }, { - "id": 967, + "id": 962, "name": "forks", "kind": 1024, "kindString": "Property", @@ -33595,7 +33514,7 @@ } }, { - "id": 1046, + "id": 1041, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -33615,7 +33534,7 @@ } }, { - "id": 1016, + "id": 1011, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -33635,7 +33554,7 @@ } }, { - "id": 935, + "id": 930, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -33655,7 +33574,7 @@ } }, { - "id": 1017, + "id": 1012, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -33675,7 +33594,7 @@ } }, { - "id": 1018, + "id": 1013, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -33695,7 +33614,7 @@ } }, { - "id": 1019, + "id": 1014, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -33715,7 +33634,7 @@ } }, { - "id": 1020, + "id": 1015, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -33735,7 +33654,7 @@ } }, { - "id": 1058, + "id": 1053, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -33758,7 +33677,7 @@ } }, { - "id": 1054, + "id": 1049, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -33781,7 +33700,7 @@ } }, { - "id": 1057, + "id": 1052, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -33801,7 +33720,7 @@ } }, { - "id": 1055, + "id": 1050, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -33824,7 +33743,7 @@ } }, { - "id": 1056, + "id": 1051, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -33847,7 +33766,7 @@ } }, { - "id": 1044, + "id": 1039, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -33876,7 +33795,7 @@ } }, { - "id": 1042, + "id": 1037, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -33896,7 +33815,7 @@ } }, { - "id": 999, + "id": 994, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -33916,7 +33835,7 @@ } }, { - "id": 932, + "id": 927, "name": "id", "kind": 1024, "kindString": "Property", @@ -33939,7 +33858,7 @@ } }, { - "id": 1052, + "id": 1047, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -33963,7 +33882,7 @@ } }, { - "id": 1021, + "id": 1016, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -33983,7 +33902,7 @@ } }, { - "id": 1022, + "id": 1017, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -34003,7 +33922,7 @@ } }, { - "id": 1023, + "id": 1018, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -34023,7 +33942,7 @@ } }, { - "id": 1024, + "id": 1019, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -34043,7 +33962,7 @@ } }, { - "id": 1025, + "id": 1020, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -34063,7 +33982,7 @@ } }, { - "id": 1045, + "id": 1040, "name": "language", "kind": 1024, "kindString": "Property", @@ -34092,7 +34011,7 @@ } }, { - "id": 1026, + "id": 1021, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -34112,7 +34031,7 @@ } }, { - "id": 936, + "id": 931, "name": "license", "kind": 1024, "kindString": "Property", @@ -34136,14 +34055,14 @@ { "type": "reflection", "declaration": { - "id": 937, + "id": 932, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 943, + "id": 938, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -34164,7 +34083,7 @@ } }, { - "id": 938, + "id": 933, "name": "key", "kind": 1024, "kindString": "Property", @@ -34184,7 +34103,7 @@ } }, { - "id": 939, + "id": 934, "name": "name", "kind": 1024, "kindString": "Property", @@ -34204,7 +34123,7 @@ } }, { - "id": 942, + "id": 937, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34224,7 +34143,7 @@ } }, { - "id": 941, + "id": 936, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -34253,7 +34172,7 @@ } }, { - "id": 940, + "id": 935, "name": "url", "kind": 1024, "kindString": "Property", @@ -34287,12 +34206,12 @@ "title": "Properties", "kind": 1024, "children": [ - 943, 938, - 939, - 942, - 941, - 940 + 933, + 934, + 937, + 936, + 935 ] } ] @@ -34302,7 +34221,7 @@ } }, { - "id": 1179, + "id": 1174, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -34323,7 +34242,7 @@ } }, { - "id": 1027, + "id": 1022, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -34343,7 +34262,7 @@ } }, { - "id": 1028, + "id": 1023, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -34363,7 +34282,7 @@ } }, { - "id": 1041, + "id": 1036, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -34392,7 +34311,7 @@ } }, { - "id": 934, + "id": 929, "name": "name", "kind": 1024, "kindString": "Property", @@ -34415,7 +34334,7 @@ } }, { - "id": 1176, + "id": 1171, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -34436,7 +34355,7 @@ } }, { - "id": 933, + "id": 928, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34456,7 +34375,7 @@ } }, { - "id": 1029, + "id": 1024, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -34476,7 +34395,7 @@ } }, { - "id": 1177, + "id": 1172, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -34496,7 +34415,7 @@ } }, { - "id": 1051, + "id": 1046, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -34516,7 +34435,7 @@ } }, { - "id": 944, + "id": 939, "name": "organization", "kind": 1024, "kindString": "Property", @@ -34541,14 +34460,14 @@ { "type": "reflection", "declaration": { - "id": 945, + "id": 940, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 951, + "id": 946, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -34568,7 +34487,7 @@ } }, { - "id": 947, + "id": 942, "name": "email", "kind": 1024, "kindString": "Property", @@ -34598,7 +34517,7 @@ } }, { - "id": 962, + "id": 957, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -34618,7 +34537,7 @@ } }, { - "id": 955, + "id": 950, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -34638,7 +34557,7 @@ } }, { - "id": 956, + "id": 951, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -34658,7 +34577,7 @@ } }, { - "id": 957, + "id": 952, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -34678,7 +34597,7 @@ } }, { - "id": 952, + "id": 947, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -34707,7 +34626,7 @@ } }, { - "id": 954, + "id": 949, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -34727,7 +34646,7 @@ } }, { - "id": 949, + "id": 944, "name": "id", "kind": 1024, "kindString": "Property", @@ -34747,7 +34666,7 @@ } }, { - "id": 948, + "id": 943, "name": "login", "kind": 1024, "kindString": "Property", @@ -34767,7 +34686,7 @@ } }, { - "id": 946, + "id": 941, "name": "name", "kind": 1024, "kindString": "Property", @@ -34797,7 +34716,7 @@ } }, { - "id": 950, + "id": 945, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34817,7 +34736,7 @@ } }, { - "id": 960, + "id": 955, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -34837,7 +34756,7 @@ } }, { - "id": 963, + "id": 958, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -34857,7 +34776,7 @@ } }, { - "id": 961, + "id": 956, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -34877,7 +34796,7 @@ } }, { - "id": 965, + "id": 960, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -34897,7 +34816,7 @@ } }, { - "id": 966, + "id": 961, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -34918,7 +34837,7 @@ } }, { - "id": 958, + "id": 953, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -34938,7 +34857,7 @@ } }, { - "id": 959, + "id": 954, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -34958,7 +34877,7 @@ } }, { - "id": 964, + "id": 959, "name": "type", "kind": 1024, "kindString": "Property", @@ -34978,7 +34897,7 @@ } }, { - "id": 953, + "id": 948, "name": "url", "kind": 1024, "kindString": "Property", @@ -35003,27 +34922,27 @@ "title": "Properties", "kind": 1024, "children": [ + 946, + 942, + 957, + 950, 951, + 952, 947, - 962, + 949, + 944, + 943, + 941, + 945, 955, + 958, 956, - 957, - 952, - 954, - 949, - 948, - 946, - 950, 960, - 963, 961, - 965, - 966, - 958, + 953, + 954, 959, - 964, - 953 + 948 ] } ] @@ -35033,7 +34952,7 @@ } }, { - "id": 975, + "id": 970, "name": "owner", "kind": 1024, "kindString": "Property", @@ -35057,14 +34976,14 @@ { "type": "reflection", "declaration": { - "id": 976, + "id": 971, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 982, + "id": 977, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -35084,7 +35003,7 @@ } }, { - "id": 978, + "id": 973, "name": "email", "kind": 1024, "kindString": "Property", @@ -35114,7 +35033,7 @@ } }, { - "id": 993, + "id": 988, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -35134,7 +35053,7 @@ } }, { - "id": 986, + "id": 981, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -35154,7 +35073,7 @@ } }, { - "id": 987, + "id": 982, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -35174,7 +35093,7 @@ } }, { - "id": 988, + "id": 983, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -35194,7 +35113,7 @@ } }, { - "id": 983, + "id": 978, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -35223,7 +35142,7 @@ } }, { - "id": 985, + "id": 980, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -35243,7 +35162,7 @@ } }, { - "id": 980, + "id": 975, "name": "id", "kind": 1024, "kindString": "Property", @@ -35263,7 +35182,7 @@ } }, { - "id": 979, + "id": 974, "name": "login", "kind": 1024, "kindString": "Property", @@ -35283,7 +35202,7 @@ } }, { - "id": 977, + "id": 972, "name": "name", "kind": 1024, "kindString": "Property", @@ -35313,7 +35232,7 @@ } }, { - "id": 981, + "id": 976, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -35333,7 +35252,7 @@ } }, { - "id": 991, + "id": 986, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -35353,7 +35272,7 @@ } }, { - "id": 994, + "id": 989, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -35373,7 +35292,7 @@ } }, { - "id": 992, + "id": 987, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -35393,7 +35312,7 @@ } }, { - "id": 996, + "id": 991, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -35413,7 +35332,7 @@ } }, { - "id": 997, + "id": 992, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -35434,7 +35353,7 @@ } }, { - "id": 989, + "id": 984, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -35454,7 +35373,7 @@ } }, { - "id": 990, + "id": 985, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -35474,7 +35393,7 @@ } }, { - "id": 995, + "id": 990, "name": "type", "kind": 1024, "kindString": "Property", @@ -35494,7 +35413,7 @@ } }, { - "id": 984, + "id": 979, "name": "url", "kind": 1024, "kindString": "Property", @@ -35519,27 +35438,27 @@ "title": "Properties", "kind": 1024, "children": [ + 977, + 973, + 988, + 981, 982, + 983, 978, - 993, + 980, + 975, + 974, + 972, + 976, 986, + 989, 987, - 988, - 983, - 985, - 980, - 979, - 977, - 981, 991, - 994, 992, - 996, - 997, - 989, + 984, + 985, 990, - 995, - 984 + 979 ] } ] @@ -35549,7 +35468,7 @@ } }, { - "id": 968, + "id": 963, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -35567,14 +35486,14 @@ "type": { "type": "reflection", "declaration": { - "id": 969, + "id": 964, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 970, + "id": 965, "name": "admin", "kind": 1024, "kindString": "Property", @@ -35594,7 +35513,7 @@ } }, { - "id": 974, + "id": 969, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -35615,7 +35534,7 @@ } }, { - "id": 971, + "id": 966, "name": "pull", "kind": 1024, "kindString": "Property", @@ -35635,7 +35554,7 @@ } }, { - "id": 973, + "id": 968, "name": "push", "kind": 1024, "kindString": "Property", @@ -35655,7 +35574,7 @@ } }, { - "id": 972, + "id": 967, "name": "triage", "kind": 1024, "kindString": "Property", @@ -35681,11 +35600,11 @@ "title": "Properties", "kind": 1024, "children": [ - 970, - 974, - 971, - 973, - 972 + 965, + 969, + 966, + 968, + 967 ] } ] @@ -35693,7 +35612,7 @@ } }, { - "id": 998, + "id": 993, "name": "private", "kind": 1024, "kindString": "Property", @@ -35716,7 +35635,7 @@ } }, { - "id": 1030, + "id": 1025, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -35736,7 +35655,7 @@ } }, { - "id": 1062, + "id": 1057, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -35765,7 +35684,7 @@ } }, { - "id": 1031, + "id": 1026, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -35785,7 +35704,7 @@ } }, { - "id": 1049, + "id": 1044, "name": "size", "kind": 1024, "kindString": "Property", @@ -35805,7 +35724,7 @@ } }, { - "id": 1032, + "id": 1027, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -35825,7 +35744,7 @@ } }, { - "id": 1047, + "id": 1042, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -35845,7 +35764,7 @@ } }, { - "id": 1033, + "id": 1028, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -35865,7 +35784,7 @@ } }, { - "id": 1180, + "id": 1175, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -35886,7 +35805,7 @@ } }, { - "id": 1034, + "id": 1029, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -35906,7 +35825,7 @@ } }, { - "id": 1175, + "id": 1170, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -35927,7 +35846,7 @@ } }, { - "id": 1035, + "id": 1030, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -35947,7 +35866,7 @@ } }, { - "id": 1036, + "id": 1031, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -35967,7 +35886,7 @@ } }, { - "id": 1043, + "id": 1038, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -35987,7 +35906,7 @@ } }, { - "id": 1037, + "id": 1032, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -36007,7 +35926,7 @@ } }, { - "id": 1038, + "id": 1033, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -36027,7 +35946,7 @@ } }, { - "id": 1171, + "id": 1166, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -36048,7 +35967,7 @@ } }, { - "id": 1066, + "id": 1061, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -36073,14 +35992,14 @@ { "type": "reflection", "declaration": { - "id": 1067, + "id": 1062, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1168, + "id": 1163, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -36101,7 +36020,7 @@ } }, { - "id": 1164, + "id": 1159, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -36122,7 +36041,7 @@ } }, { - "id": 1166, + "id": 1161, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -36143,7 +36062,7 @@ } }, { - "id": 1097, + "id": 1092, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -36164,7 +36083,7 @@ } }, { - "id": 1153, + "id": 1148, "name": "archived", "kind": 1024, "kindString": "Property", @@ -36185,7 +36104,7 @@ } }, { - "id": 1098, + "id": 1093, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -36206,7 +36125,7 @@ } }, { - "id": 1099, + "id": 1094, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -36227,7 +36146,7 @@ } }, { - "id": 1100, + "id": 1095, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -36248,7 +36167,7 @@ } }, { - "id": 1134, + "id": 1129, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -36269,7 +36188,7 @@ } }, { - "id": 1101, + "id": 1096, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -36290,7 +36209,7 @@ } }, { - "id": 1102, + "id": 1097, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -36311,7 +36230,7 @@ } }, { - "id": 1103, + "id": 1098, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -36332,7 +36251,7 @@ } }, { - "id": 1104, + "id": 1099, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -36353,7 +36272,7 @@ } }, { - "id": 1105, + "id": 1100, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -36374,7 +36293,7 @@ } }, { - "id": 1106, + "id": 1101, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -36395,7 +36314,7 @@ } }, { - "id": 1157, + "id": 1152, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -36416,7 +36335,7 @@ } }, { - "id": 1144, + "id": 1139, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -36437,7 +36356,7 @@ } }, { - "id": 1167, + "id": 1162, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -36458,7 +36377,7 @@ } }, { - "id": 1107, + "id": 1102, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -36479,7 +36398,7 @@ } }, { - "id": 1094, + "id": 1089, "name": "description", "kind": 1024, "kindString": "Property", @@ -36500,7 +36419,7 @@ } }, { - "id": 1154, + "id": 1149, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -36521,7 +36440,7 @@ } }, { - "id": 1108, + "id": 1103, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -36542,7 +36461,7 @@ } }, { - "id": 1109, + "id": 1104, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -36563,7 +36482,7 @@ } }, { - "id": 1095, + "id": 1090, "name": "fork", "kind": 1024, "kindString": "Property", @@ -36584,7 +36503,7 @@ } }, { - "id": 1140, + "id": 1135, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -36605,7 +36524,7 @@ } }, { - "id": 1110, + "id": 1105, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -36626,7 +36545,7 @@ } }, { - "id": 1071, + "id": 1066, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -36647,7 +36566,7 @@ } }, { - "id": 1111, + "id": 1106, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -36668,7 +36587,7 @@ } }, { - "id": 1112, + "id": 1107, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -36689,7 +36608,7 @@ } }, { - "id": 1113, + "id": 1108, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -36710,7 +36629,7 @@ } }, { - "id": 1114, + "id": 1109, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -36731,7 +36650,7 @@ } }, { - "id": 1152, + "id": 1147, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -36752,7 +36671,7 @@ } }, { - "id": 1148, + "id": 1143, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -36773,7 +36692,7 @@ } }, { - "id": 1151, + "id": 1146, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -36794,7 +36713,7 @@ } }, { - "id": 1149, + "id": 1144, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -36815,7 +36734,7 @@ } }, { - "id": 1150, + "id": 1145, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -36836,7 +36755,7 @@ } }, { - "id": 1138, + "id": 1133, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -36857,7 +36776,7 @@ } }, { - "id": 1136, + "id": 1131, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -36878,7 +36797,7 @@ } }, { - "id": 1093, + "id": 1088, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -36899,7 +36818,7 @@ } }, { - "id": 1068, + "id": 1063, "name": "id", "kind": 1024, "kindString": "Property", @@ -36920,7 +36839,7 @@ } }, { - "id": 1146, + "id": 1141, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -36941,7 +36860,7 @@ } }, { - "id": 1115, + "id": 1110, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -36962,7 +36881,7 @@ } }, { - "id": 1116, + "id": 1111, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -36983,7 +36902,7 @@ } }, { - "id": 1117, + "id": 1112, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -37004,7 +36923,7 @@ } }, { - "id": 1118, + "id": 1113, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -37025,7 +36944,7 @@ } }, { - "id": 1119, + "id": 1114, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -37046,7 +36965,7 @@ } }, { - "id": 1139, + "id": 1134, "name": "language", "kind": 1024, "kindString": "Property", @@ -37067,7 +36986,7 @@ } }, { - "id": 1120, + "id": 1115, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -37088,7 +37007,7 @@ } }, { - "id": 1121, + "id": 1116, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -37109,7 +37028,7 @@ } }, { - "id": 1122, + "id": 1117, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -37130,7 +37049,7 @@ } }, { - "id": 1135, + "id": 1130, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -37151,7 +37070,7 @@ } }, { - "id": 1070, + "id": 1065, "name": "name", "kind": 1024, "kindString": "Property", @@ -37172,7 +37091,7 @@ } }, { - "id": 1170, + "id": 1165, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -37193,7 +37112,7 @@ } }, { - "id": 1069, + "id": 1064, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -37214,7 +37133,7 @@ } }, { - "id": 1123, + "id": 1118, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -37235,7 +37154,7 @@ } }, { - "id": 1145, + "id": 1140, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -37256,7 +37175,7 @@ } }, { - "id": 1072, + "id": 1067, "name": "owner", "kind": 1024, "kindString": "Property", @@ -37274,14 +37193,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1073, + "id": 1068, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1077, + "id": 1072, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -37302,7 +37221,7 @@ } }, { - "id": 1088, + "id": 1083, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -37323,7 +37242,7 @@ } }, { - "id": 1081, + "id": 1076, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -37344,7 +37263,7 @@ } }, { - "id": 1082, + "id": 1077, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -37365,7 +37284,7 @@ } }, { - "id": 1083, + "id": 1078, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -37386,7 +37305,7 @@ } }, { - "id": 1078, + "id": 1073, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -37407,7 +37326,7 @@ } }, { - "id": 1080, + "id": 1075, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -37428,7 +37347,7 @@ } }, { - "id": 1075, + "id": 1070, "name": "id", "kind": 1024, "kindString": "Property", @@ -37449,7 +37368,7 @@ } }, { - "id": 1074, + "id": 1069, "name": "login", "kind": 1024, "kindString": "Property", @@ -37470,7 +37389,7 @@ } }, { - "id": 1076, + "id": 1071, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -37491,7 +37410,7 @@ } }, { - "id": 1086, + "id": 1081, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -37512,7 +37431,7 @@ } }, { - "id": 1089, + "id": 1084, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -37533,7 +37452,7 @@ } }, { - "id": 1087, + "id": 1082, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -37554,7 +37473,7 @@ } }, { - "id": 1091, + "id": 1086, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -37575,7 +37494,7 @@ } }, { - "id": 1084, + "id": 1079, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -37596,7 +37515,7 @@ } }, { - "id": 1085, + "id": 1080, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -37617,7 +37536,7 @@ } }, { - "id": 1090, + "id": 1085, "name": "type", "kind": 1024, "kindString": "Property", @@ -37638,7 +37557,7 @@ } }, { - "id": 1079, + "id": 1074, "name": "url", "kind": 1024, "kindString": "Property", @@ -37664,24 +37583,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1077, - 1088, - 1081, - 1082, + 1072, 1083, + 1076, + 1077, 1078, - 1080, + 1073, 1075, - 1074, - 1076, - 1086, - 1089, - 1087, - 1091, + 1070, + 1069, + 1071, + 1081, 1084, + 1082, + 1086, + 1079, + 1080, 1085, - 1090, - 1079 + 1074 ] } ] @@ -37689,7 +37608,7 @@ } }, { - "id": 1159, + "id": 1154, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -37707,14 +37626,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1160, + "id": 1155, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1161, + "id": 1156, "name": "admin", "kind": 1024, "kindString": "Property", @@ -37735,7 +37654,7 @@ } }, { - "id": 1163, + "id": 1158, "name": "pull", "kind": 1024, "kindString": "Property", @@ -37756,7 +37675,7 @@ } }, { - "id": 1162, + "id": 1157, "name": "push", "kind": 1024, "kindString": "Property", @@ -37782,9 +37701,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1161, - 1163, - 1162 + 1156, + 1158, + 1157 ] } ] @@ -37792,7 +37711,7 @@ } }, { - "id": 1092, + "id": 1087, "name": "private", "kind": 1024, "kindString": "Property", @@ -37813,7 +37732,7 @@ } }, { - "id": 1124, + "id": 1119, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -37834,7 +37753,7 @@ } }, { - "id": 1156, + "id": 1151, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -37855,7 +37774,7 @@ } }, { - "id": 1125, + "id": 1120, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -37876,7 +37795,7 @@ } }, { - "id": 1143, + "id": 1138, "name": "size", "kind": 1024, "kindString": "Property", @@ -37897,7 +37816,7 @@ } }, { - "id": 1126, + "id": 1121, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -37918,7 +37837,7 @@ } }, { - "id": 1141, + "id": 1136, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -37939,7 +37858,7 @@ } }, { - "id": 1127, + "id": 1122, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -37960,7 +37879,7 @@ } }, { - "id": 1128, + "id": 1123, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -37981,7 +37900,7 @@ } }, { - "id": 1169, + "id": 1164, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -38002,7 +37921,7 @@ } }, { - "id": 1129, + "id": 1124, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -38023,7 +37942,7 @@ } }, { - "id": 1130, + "id": 1125, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -38044,7 +37963,7 @@ } }, { - "id": 1137, + "id": 1132, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -38065,7 +37984,7 @@ } }, { - "id": 1131, + "id": 1126, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -38086,7 +38005,7 @@ } }, { - "id": 1132, + "id": 1127, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -38107,7 +38026,7 @@ } }, { - "id": 1165, + "id": 1160, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -38128,7 +38047,7 @@ } }, { - "id": 1147, + "id": 1142, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38152,7 +38071,7 @@ } }, { - "id": 1133, + "id": 1128, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38173,7 +38092,7 @@ } }, { - "id": 1158, + "id": 1153, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38194,7 +38113,7 @@ } }, { - "id": 1096, + "id": 1091, "name": "url", "kind": 1024, "kindString": "Property", @@ -38215,7 +38134,7 @@ } }, { - "id": 1155, + "id": 1150, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38236,7 +38155,7 @@ } }, { - "id": 1142, + "id": 1137, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -38262,86 +38181,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1168, - 1164, - 1166, + 1163, + 1159, + 1161, + 1092, + 1148, + 1093, + 1094, + 1095, + 1129, + 1096, 1097, - 1153, 1098, 1099, 1100, - 1134, 1101, + 1152, + 1139, + 1162, 1102, + 1089, + 1149, 1103, 1104, + 1090, + 1135, 1105, + 1066, 1106, - 1157, - 1144, - 1167, 1107, - 1094, - 1154, 1108, 1109, - 1095, - 1140, + 1147, + 1143, + 1146, + 1144, + 1145, + 1133, + 1131, + 1088, + 1063, + 1141, 1110, - 1071, 1111, 1112, 1113, 1114, - 1152, - 1148, - 1151, - 1149, - 1150, - 1138, - 1136, - 1093, - 1068, - 1146, + 1134, 1115, 1116, 1117, + 1130, + 1065, + 1165, + 1064, 1118, + 1140, + 1067, + 1154, + 1087, 1119, - 1139, + 1151, 1120, + 1138, 1121, + 1136, 1122, - 1135, - 1070, - 1170, - 1069, 1123, - 1145, - 1072, - 1159, - 1092, + 1164, 1124, - 1156, 1125, - 1143, + 1132, 1126, - 1141, 1127, + 1160, + 1142, 1128, - 1169, - 1129, - 1130, - 1137, - 1131, - 1132, - 1165, - 1147, - 1133, - 1158, - 1096, - 1155, - 1142 + 1153, + 1091, + 1150, + 1137 ] } ] @@ -38351,7 +38270,7 @@ } }, { - "id": 1053, + "id": 1048, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38375,7 +38294,7 @@ } }, { - "id": 1039, + "id": 1034, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38395,7 +38314,7 @@ } }, { - "id": 1064, + "id": 1059, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38424,7 +38343,7 @@ } }, { - "id": 1002, + "id": 997, "name": "url", "kind": 1024, "kindString": "Property", @@ -38444,7 +38363,7 @@ } }, { - "id": 1061, + "id": 1056, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38468,7 +38387,7 @@ } }, { - "id": 1178, + "id": 1173, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -38488,7 +38407,7 @@ } }, { - "id": 1048, + "id": 1043, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -38513,94 +38432,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1174, - 1065, - 1172, + 1169, + 1060, + 1167, + 998, + 1054, + 999, + 1000, + 1001, + 1035, + 1002, 1003, - 1059, 1004, 1005, 1006, - 1040, 1007, + 1058, + 1045, + 1168, 1008, + 995, + 1055, 1009, 1010, + 996, + 962, + 1041, 1011, + 930, 1012, - 1063, - 1050, - 1173, 1013, - 1000, - 1060, 1014, 1015, - 1001, - 967, - 1046, + 1053, + 1049, + 1052, + 1050, + 1051, + 1039, + 1037, + 994, + 927, + 1047, 1016, - 935, 1017, 1018, 1019, 1020, - 1058, - 1054, - 1057, - 1055, - 1056, - 1044, - 1042, - 999, - 932, - 1052, + 1040, 1021, + 931, + 1174, 1022, 1023, + 1036, + 929, + 1171, + 928, 1024, + 1172, + 1046, + 939, + 970, + 963, + 993, 1025, - 1045, + 1057, 1026, - 936, - 1179, + 1044, 1027, + 1042, 1028, - 1041, - 934, - 1176, - 933, + 1175, 1029, - 1177, - 1051, - 944, - 975, - 968, - 998, + 1170, 1030, - 1062, 1031, - 1049, + 1038, 1032, - 1047, 1033, - 1180, - 1034, - 1175, - 1035, - 1036, - 1043, - 1037, - 1038, - 1171, - 1066, - 1053, - 1039, - 1064, - 1002, + 1166, 1061, - 1178, - 1048 + 1048, + 1034, + 1059, + 997, + 1056, + 1173, + 1043 ] } ] @@ -38610,7 +38529,7 @@ } }, { - "id": 912, + "id": 907, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38634,7 +38553,7 @@ } }, { - "id": 898, + "id": 893, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38654,7 +38573,7 @@ } }, { - "id": 923, + "id": 918, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38674,7 +38593,7 @@ } }, { - "id": 861, + "id": 856, "name": "url", "kind": 1024, "kindString": "Property", @@ -38694,7 +38613,7 @@ } }, { - "id": 920, + "id": 915, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38718,7 +38637,7 @@ } }, { - "id": 1723, + "id": 1718, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -38738,7 +38657,7 @@ } }, { - "id": 907, + "id": 902, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -38763,98 +38682,98 @@ "title": "Properties", "kind": 1024, "children": [ - 1184, - 929, - 1182, - 1724, + 1179, + 924, + 1177, + 1719, + 857, + 913, + 858, + 859, + 860, + 894, + 1720, + 861, 862, - 918, 863, 864, 865, - 899, - 1725, 866, + 917, + 904, + 1178, 867, + 854, + 914, 868, 869, + 855, + 1715, + 900, 870, + 828, 871, - 922, - 909, - 1183, 872, - 859, - 919, 873, 874, - 860, - 1720, - 905, + 912, + 908, + 911, + 909, + 910, + 898, + 896, + 853, + 825, + 906, 875, - 833, 876, 877, 878, 879, - 917, - 913, - 916, - 914, - 915, - 903, - 901, - 858, - 830, - 911, + 899, 880, + 1182, + 1716, 881, 882, + 895, + 827, + 1181, + 826, 883, + 1717, + 905, + 1190, + 829, + 1213, + 919, + 852, 884, - 904, + 916, 885, - 1187, - 1721, + 1726, + 903, + 1464, 886, + 901, 887, - 900, - 832, - 1186, - 831, 888, - 1722, - 910, - 1195, - 834, - 1218, - 924, - 857, + 1180, 889, - 921, 890, - 1731, - 908, - 1469, + 897, 891, - 906, 892, + 1176, + 925, + 907, 893, - 1185, - 894, - 895, - 902, - 896, - 897, - 1181, - 930, - 912, - 898, - 923, - 861, - 920, - 1723, - 907 + 918, + 856, + 915, + 1718, + 902 ] } ] @@ -38864,7 +38783,7 @@ ], "type": { "type": "reference", - "id": 824, + "id": 819, "name": "Repo" }, "overwrites": { @@ -38881,7 +38800,7 @@ } }, { - "id": 2699, + "id": 2696, "name": "client", "kind": 1024, "kindString": "Property", @@ -38905,7 +38824,7 @@ } }, { - "id": 1741, + "id": 1736, "name": "data", "kind": 1024, "kindString": "Property", @@ -38923,14 +38842,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1742, + "id": 1737, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2097, + "id": 2092, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -38951,7 +38870,7 @@ } }, { - "id": 1842, + "id": 1837, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -38972,7 +38891,7 @@ } }, { - "id": 2095, + "id": 2090, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -38993,7 +38912,7 @@ } }, { - "id": 2637, + "id": 2632, "name": "anonymous_access_enabled", "kind": 1024, "kindString": "Property", @@ -39017,7 +38936,7 @@ } }, { - "id": 1775, + "id": 1770, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -39037,7 +38956,7 @@ } }, { - "id": 1831, + "id": 1826, "name": "archived", "kind": 1024, "kindString": "Property", @@ -39057,7 +38976,7 @@ } }, { - "id": 1776, + "id": 1771, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -39077,7 +38996,7 @@ } }, { - "id": 1777, + "id": 1772, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -39097,7 +39016,7 @@ } }, { - "id": 1778, + "id": 1773, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -39117,7 +39036,7 @@ } }, { - "id": 1812, + "id": 1807, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -39137,7 +39056,7 @@ } }, { - "id": 2638, + "id": 2633, "name": "code_of_conduct", "kind": 1024, "kindString": "Property", @@ -39155,14 +39074,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2639, + "id": 2634, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2643, + "id": 2638, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -39191,7 +39110,7 @@ } }, { - "id": 2641, + "id": 2636, "name": "key", "kind": 1024, "kindString": "Property", @@ -39211,7 +39130,7 @@ } }, { - "id": 2642, + "id": 2637, "name": "name", "kind": 1024, "kindString": "Property", @@ -39231,7 +39150,7 @@ } }, { - "id": 2640, + "id": 2635, "name": "url", "kind": 1024, "kindString": "Property", @@ -39256,10 +39175,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2643, - 2641, - 2642, - 2640 + 2638, + 2636, + 2637, + 2635 ] } ] @@ -39267,7 +39186,7 @@ } }, { - "id": 1779, + "id": 1774, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -39287,7 +39206,7 @@ } }, { - "id": 1780, + "id": 1775, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -39307,7 +39226,7 @@ } }, { - "id": 1781, + "id": 1776, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -39327,7 +39246,7 @@ } }, { - "id": 1782, + "id": 1777, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -39347,7 +39266,7 @@ } }, { - "id": 1783, + "id": 1778, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -39367,7 +39286,7 @@ } }, { - "id": 1784, + "id": 1779, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -39387,7 +39306,7 @@ } }, { - "id": 1835, + "id": 1830, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -39407,7 +39326,7 @@ } }, { - "id": 1822, + "id": 1817, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -39427,7 +39346,7 @@ } }, { - "id": 2096, + "id": 2091, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -39448,7 +39367,7 @@ } }, { - "id": 1785, + "id": 1780, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -39468,7 +39387,7 @@ } }, { - "id": 1772, + "id": 1767, "name": "description", "kind": 1024, "kindString": "Property", @@ -39497,7 +39416,7 @@ } }, { - "id": 1832, + "id": 1827, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -39520,7 +39439,7 @@ } }, { - "id": 1786, + "id": 1781, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -39540,7 +39459,7 @@ } }, { - "id": 1787, + "id": 1782, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -39560,7 +39479,7 @@ } }, { - "id": 1773, + "id": 1768, "name": "fork", "kind": 1024, "kindString": "Property", @@ -39580,7 +39499,7 @@ } }, { - "id": 2633, + "id": 2628, "name": "forks", "kind": 1024, "kindString": "Property", @@ -39600,7 +39519,7 @@ } }, { - "id": 1818, + "id": 1813, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -39620,7 +39539,7 @@ } }, { - "id": 1788, + "id": 1783, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -39640,7 +39559,7 @@ } }, { - "id": 1746, + "id": 1741, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -39660,7 +39579,7 @@ } }, { - "id": 1789, + "id": 1784, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -39680,7 +39599,7 @@ } }, { - "id": 1790, + "id": 1785, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -39700,7 +39619,7 @@ } }, { - "id": 1791, + "id": 1786, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -39720,7 +39639,7 @@ } }, { - "id": 1792, + "id": 1787, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -39740,7 +39659,7 @@ } }, { - "id": 1830, + "id": 1825, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -39760,7 +39679,7 @@ } }, { - "id": 1826, + "id": 1821, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -39780,7 +39699,7 @@ } }, { - "id": 1829, + "id": 1824, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -39800,7 +39719,7 @@ } }, { - "id": 1827, + "id": 1822, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -39820,7 +39739,7 @@ } }, { - "id": 1828, + "id": 1823, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -39840,7 +39759,7 @@ } }, { - "id": 1816, + "id": 1811, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -39869,7 +39788,7 @@ } }, { - "id": 1814, + "id": 1809, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -39889,7 +39808,7 @@ } }, { - "id": 1771, + "id": 1766, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -39909,7 +39828,7 @@ } }, { - "id": 1743, + "id": 1738, "name": "id", "kind": 1024, "kindString": "Property", @@ -39929,7 +39848,7 @@ } }, { - "id": 1824, + "id": 1819, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -39950,7 +39869,7 @@ } }, { - "id": 1793, + "id": 1788, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -39970,7 +39889,7 @@ } }, { - "id": 1794, + "id": 1789, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -39990,7 +39909,7 @@ } }, { - "id": 1795, + "id": 1790, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -40010,7 +39929,7 @@ } }, { - "id": 1796, + "id": 1791, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -40030,7 +39949,7 @@ } }, { - "id": 1797, + "id": 1792, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -40050,7 +39969,7 @@ } }, { - "id": 1817, + "id": 1812, "name": "language", "kind": 1024, "kindString": "Property", @@ -40079,7 +39998,7 @@ } }, { - "id": 1798, + "id": 1793, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -40099,7 +40018,7 @@ } }, { - "id": 2100, + "id": 2095, "name": "license", "kind": 1024, "kindString": "Property", @@ -40123,14 +40042,14 @@ { "type": "reflection", "declaration": { - "id": 2101, + "id": 2096, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2107, + "id": 2102, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -40151,7 +40070,7 @@ } }, { - "id": 2102, + "id": 2097, "name": "key", "kind": 1024, "kindString": "Property", @@ -40171,7 +40090,7 @@ } }, { - "id": 2103, + "id": 2098, "name": "name", "kind": 1024, "kindString": "Property", @@ -40191,7 +40110,7 @@ } }, { - "id": 2106, + "id": 2101, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40211,7 +40130,7 @@ } }, { - "id": 2105, + "id": 2100, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -40240,7 +40159,7 @@ } }, { - "id": 2104, + "id": 2099, "name": "url", "kind": 1024, "kindString": "Property", @@ -40274,12 +40193,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2107, 2102, - 2103, - 2106, - 2105, - 2104 + 2097, + 2098, + 2101, + 2100, + 2099 ] } ] @@ -40289,7 +40208,7 @@ } }, { - "id": 2634, + "id": 2629, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -40310,7 +40229,7 @@ } }, { - "id": 1799, + "id": 1794, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -40330,7 +40249,7 @@ } }, { - "id": 1800, + "id": 1795, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -40350,7 +40269,7 @@ } }, { - "id": 1813, + "id": 1808, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -40379,7 +40298,7 @@ } }, { - "id": 1745, + "id": 1740, "name": "name", "kind": 1024, "kindString": "Property", @@ -40399,7 +40318,7 @@ } }, { - "id": 2099, + "id": 2094, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -40419,7 +40338,7 @@ } }, { - "id": 1744, + "id": 1739, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40439,7 +40358,7 @@ } }, { - "id": 1801, + "id": 1796, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -40459,7 +40378,7 @@ } }, { - "id": 2635, + "id": 2630, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -40479,7 +40398,7 @@ } }, { - "id": 1823, + "id": 1818, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -40499,7 +40418,7 @@ } }, { - "id": 2108, + "id": 2103, "name": "organization", "kind": 1024, "kindString": "Property", @@ -40524,14 +40443,14 @@ { "type": "reflection", "declaration": { - "id": 2109, + "id": 2104, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2115, + "id": 2110, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -40551,7 +40470,7 @@ } }, { - "id": 2111, + "id": 2106, "name": "email", "kind": 1024, "kindString": "Property", @@ -40581,7 +40500,7 @@ } }, { - "id": 2126, + "id": 2121, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -40601,7 +40520,7 @@ } }, { - "id": 2119, + "id": 2114, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -40621,7 +40540,7 @@ } }, { - "id": 2120, + "id": 2115, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -40641,7 +40560,7 @@ } }, { - "id": 2121, + "id": 2116, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -40661,7 +40580,7 @@ } }, { - "id": 2116, + "id": 2111, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -40690,7 +40609,7 @@ } }, { - "id": 2118, + "id": 2113, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -40710,7 +40629,7 @@ } }, { - "id": 2113, + "id": 2108, "name": "id", "kind": 1024, "kindString": "Property", @@ -40730,7 +40649,7 @@ } }, { - "id": 2112, + "id": 2107, "name": "login", "kind": 1024, "kindString": "Property", @@ -40750,7 +40669,7 @@ } }, { - "id": 2110, + "id": 2105, "name": "name", "kind": 1024, "kindString": "Property", @@ -40780,7 +40699,7 @@ } }, { - "id": 2114, + "id": 2109, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40800,7 +40719,7 @@ } }, { - "id": 2124, + "id": 2119, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -40820,7 +40739,7 @@ } }, { - "id": 2127, + "id": 2122, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -40840,7 +40759,7 @@ } }, { - "id": 2125, + "id": 2120, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -40860,7 +40779,7 @@ } }, { - "id": 2129, + "id": 2124, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -40880,7 +40799,7 @@ } }, { - "id": 2130, + "id": 2125, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -40901,7 +40820,7 @@ } }, { - "id": 2122, + "id": 2117, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -40921,7 +40840,7 @@ } }, { - "id": 2123, + "id": 2118, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -40941,7 +40860,7 @@ } }, { - "id": 2128, + "id": 2123, "name": "type", "kind": 1024, "kindString": "Property", @@ -40961,7 +40880,7 @@ } }, { - "id": 2117, + "id": 2112, "name": "url", "kind": 1024, "kindString": "Property", @@ -40986,27 +40905,27 @@ "title": "Properties", "kind": 1024, "children": [ + 2110, + 2106, + 2121, + 2114, 2115, + 2116, 2111, - 2126, + 2113, + 2108, + 2107, + 2105, + 2109, 2119, + 2122, 2120, - 2121, - 2116, - 2118, - 2113, - 2112, - 2110, - 2114, 2124, - 2127, 2125, - 2129, - 2130, - 2122, + 2117, + 2118, 2123, - 2128, - 2117 + 2112 ] } ] @@ -41016,7 +40935,7 @@ } }, { - "id": 1747, + "id": 1742, "name": "owner", "kind": 1024, "kindString": "Property", @@ -41040,14 +40959,14 @@ { "type": "reflection", "declaration": { - "id": 1748, + "id": 1743, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1754, + "id": 1749, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -41067,7 +40986,7 @@ } }, { - "id": 1750, + "id": 1745, "name": "email", "kind": 1024, "kindString": "Property", @@ -41097,7 +41016,7 @@ } }, { - "id": 1765, + "id": 1760, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -41117,7 +41036,7 @@ } }, { - "id": 1758, + "id": 1753, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -41137,7 +41056,7 @@ } }, { - "id": 1759, + "id": 1754, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -41157,7 +41076,7 @@ } }, { - "id": 1760, + "id": 1755, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -41177,7 +41096,7 @@ } }, { - "id": 1755, + "id": 1750, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -41206,7 +41125,7 @@ } }, { - "id": 1757, + "id": 1752, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -41226,7 +41145,7 @@ } }, { - "id": 1752, + "id": 1747, "name": "id", "kind": 1024, "kindString": "Property", @@ -41246,7 +41165,7 @@ } }, { - "id": 1751, + "id": 1746, "name": "login", "kind": 1024, "kindString": "Property", @@ -41266,7 +41185,7 @@ } }, { - "id": 1749, + "id": 1744, "name": "name", "kind": 1024, "kindString": "Property", @@ -41296,7 +41215,7 @@ } }, { - "id": 1753, + "id": 1748, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -41316,7 +41235,7 @@ } }, { - "id": 1763, + "id": 1758, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -41336,7 +41255,7 @@ } }, { - "id": 1766, + "id": 1761, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -41356,7 +41275,7 @@ } }, { - "id": 1764, + "id": 1759, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -41376,7 +41295,7 @@ } }, { - "id": 1768, + "id": 1763, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -41396,7 +41315,7 @@ } }, { - "id": 1769, + "id": 1764, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -41417,7 +41336,7 @@ } }, { - "id": 1761, + "id": 1756, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -41437,7 +41356,7 @@ } }, { - "id": 1762, + "id": 1757, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -41457,7 +41376,7 @@ } }, { - "id": 1767, + "id": 1762, "name": "type", "kind": 1024, "kindString": "Property", @@ -41477,7 +41396,7 @@ } }, { - "id": 1756, + "id": 1751, "name": "url", "kind": 1024, "kindString": "Property", @@ -41502,27 +41421,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1749, + 1745, + 1760, + 1753, 1754, + 1755, 1750, - 1765, + 1752, + 1747, + 1746, + 1744, + 1748, 1758, + 1761, 1759, - 1760, - 1755, - 1757, - 1752, - 1751, - 1749, - 1753, 1763, - 1766, 1764, - 1768, - 1769, - 1761, + 1756, + 1757, 1762, - 1767, - 1756 + 1751 ] } ] @@ -41532,7 +41451,7 @@ } }, { - "id": 2131, + "id": 2126, "name": "parent", "kind": 1024, "kindString": "Property", @@ -41550,14 +41469,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2132, + "id": 2127, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2375, + "id": 2370, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -41581,7 +41500,7 @@ } }, { - "id": 2266, + "id": 2261, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -41605,7 +41524,7 @@ } }, { - "id": 2373, + "id": 2368, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -41629,7 +41548,7 @@ } }, { - "id": 2204, + "id": 2199, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -41649,7 +41568,7 @@ } }, { - "id": 2260, + "id": 2255, "name": "archived", "kind": 1024, "kindString": "Property", @@ -41672,7 +41591,7 @@ } }, { - "id": 2205, + "id": 2200, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -41692,7 +41611,7 @@ } }, { - "id": 2206, + "id": 2201, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -41712,7 +41631,7 @@ } }, { - "id": 2207, + "id": 2202, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -41732,7 +41651,7 @@ } }, { - "id": 2241, + "id": 2236, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -41752,7 +41671,7 @@ } }, { - "id": 2208, + "id": 2203, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -41772,7 +41691,7 @@ } }, { - "id": 2209, + "id": 2204, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -41792,7 +41711,7 @@ } }, { - "id": 2210, + "id": 2205, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -41812,7 +41731,7 @@ } }, { - "id": 2211, + "id": 2206, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -41832,7 +41751,7 @@ } }, { - "id": 2212, + "id": 2207, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -41852,7 +41771,7 @@ } }, { - "id": 2213, + "id": 2208, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -41872,7 +41791,7 @@ } }, { - "id": 2264, + "id": 2259, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -41901,7 +41820,7 @@ } }, { - "id": 2251, + "id": 2246, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -41924,7 +41843,7 @@ } }, { - "id": 2374, + "id": 2369, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -41948,7 +41867,7 @@ } }, { - "id": 2214, + "id": 2209, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -41968,7 +41887,7 @@ } }, { - "id": 2201, + "id": 2196, "name": "description", "kind": 1024, "kindString": "Property", @@ -41997,7 +41916,7 @@ } }, { - "id": 2261, + "id": 2256, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -42020,7 +41939,7 @@ } }, { - "id": 2215, + "id": 2210, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -42040,7 +41959,7 @@ } }, { - "id": 2216, + "id": 2211, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -42060,7 +41979,7 @@ } }, { - "id": 2202, + "id": 2197, "name": "fork", "kind": 1024, "kindString": "Property", @@ -42080,7 +41999,7 @@ } }, { - "id": 2168, + "id": 2163, "name": "forks", "kind": 1024, "kindString": "Property", @@ -42100,7 +42019,7 @@ } }, { - "id": 2247, + "id": 2242, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -42120,7 +42039,7 @@ } }, { - "id": 2217, + "id": 2212, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -42140,7 +42059,7 @@ } }, { - "id": 2136, + "id": 2131, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -42160,7 +42079,7 @@ } }, { - "id": 2218, + "id": 2213, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -42180,7 +42099,7 @@ } }, { - "id": 2219, + "id": 2214, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -42200,7 +42119,7 @@ } }, { - "id": 2220, + "id": 2215, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -42220,7 +42139,7 @@ } }, { - "id": 2221, + "id": 2216, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -42240,7 +42159,7 @@ } }, { - "id": 2259, + "id": 2254, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -42263,7 +42182,7 @@ } }, { - "id": 2255, + "id": 2250, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -42286,7 +42205,7 @@ } }, { - "id": 2258, + "id": 2253, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -42306,7 +42225,7 @@ } }, { - "id": 2256, + "id": 2251, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -42329,7 +42248,7 @@ } }, { - "id": 2257, + "id": 2252, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -42352,7 +42271,7 @@ } }, { - "id": 2245, + "id": 2240, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -42381,7 +42300,7 @@ } }, { - "id": 2243, + "id": 2238, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -42401,7 +42320,7 @@ } }, { - "id": 2200, + "id": 2195, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -42421,7 +42340,7 @@ } }, { - "id": 2133, + "id": 2128, "name": "id", "kind": 1024, "kindString": "Property", @@ -42444,7 +42363,7 @@ } }, { - "id": 2253, + "id": 2248, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -42468,7 +42387,7 @@ } }, { - "id": 2222, + "id": 2217, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -42488,7 +42407,7 @@ } }, { - "id": 2223, + "id": 2218, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -42508,7 +42427,7 @@ } }, { - "id": 2224, + "id": 2219, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -42528,7 +42447,7 @@ } }, { - "id": 2225, + "id": 2220, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -42548,7 +42467,7 @@ } }, { - "id": 2226, + "id": 2221, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -42568,7 +42487,7 @@ } }, { - "id": 2246, + "id": 2241, "name": "language", "kind": 1024, "kindString": "Property", @@ -42597,7 +42516,7 @@ } }, { - "id": 2227, + "id": 2222, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -42617,7 +42536,7 @@ } }, { - "id": 2137, + "id": 2132, "name": "license", "kind": 1024, "kindString": "Property", @@ -42641,14 +42560,14 @@ { "type": "reflection", "declaration": { - "id": 2138, + "id": 2133, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2144, + "id": 2139, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -42669,7 +42588,7 @@ } }, { - "id": 2139, + "id": 2134, "name": "key", "kind": 1024, "kindString": "Property", @@ -42689,7 +42608,7 @@ } }, { - "id": 2140, + "id": 2135, "name": "name", "kind": 1024, "kindString": "Property", @@ -42709,7 +42628,7 @@ } }, { - "id": 2143, + "id": 2138, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -42729,7 +42648,7 @@ } }, { - "id": 2142, + "id": 2137, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -42758,7 +42677,7 @@ } }, { - "id": 2141, + "id": 2136, "name": "url", "kind": 1024, "kindString": "Property", @@ -42792,12 +42711,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2144, 2139, - 2140, - 2143, - 2142, - 2141 + 2134, + 2135, + 2138, + 2137, + 2136 ] } ] @@ -42807,7 +42726,7 @@ } }, { - "id": 2380, + "id": 2375, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -42828,7 +42747,7 @@ } }, { - "id": 2228, + "id": 2223, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -42848,7 +42767,7 @@ } }, { - "id": 2229, + "id": 2224, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -42868,7 +42787,7 @@ } }, { - "id": 2242, + "id": 2237, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -42897,7 +42816,7 @@ } }, { - "id": 2135, + "id": 2130, "name": "name", "kind": 1024, "kindString": "Property", @@ -42920,7 +42839,7 @@ } }, { - "id": 2377, + "id": 2372, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -42941,7 +42860,7 @@ } }, { - "id": 2134, + "id": 2129, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -42961,7 +42880,7 @@ } }, { - "id": 2230, + "id": 2225, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -42981,7 +42900,7 @@ } }, { - "id": 2378, + "id": 2373, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -43001,7 +42920,7 @@ } }, { - "id": 2252, + "id": 2247, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -43021,7 +42940,7 @@ } }, { - "id": 2145, + "id": 2140, "name": "organization", "kind": 1024, "kindString": "Property", @@ -43046,14 +42965,14 @@ { "type": "reflection", "declaration": { - "id": 2146, + "id": 2141, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2152, + "id": 2147, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -43073,7 +42992,7 @@ } }, { - "id": 2148, + "id": 2143, "name": "email", "kind": 1024, "kindString": "Property", @@ -43103,7 +43022,7 @@ } }, { - "id": 2163, + "id": 2158, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -43123,7 +43042,7 @@ } }, { - "id": 2156, + "id": 2151, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -43143,7 +43062,7 @@ } }, { - "id": 2157, + "id": 2152, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -43163,7 +43082,7 @@ } }, { - "id": 2158, + "id": 2153, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -43183,7 +43102,7 @@ } }, { - "id": 2153, + "id": 2148, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -43212,7 +43131,7 @@ } }, { - "id": 2155, + "id": 2150, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -43232,7 +43151,7 @@ } }, { - "id": 2150, + "id": 2145, "name": "id", "kind": 1024, "kindString": "Property", @@ -43252,7 +43171,7 @@ } }, { - "id": 2149, + "id": 2144, "name": "login", "kind": 1024, "kindString": "Property", @@ -43272,7 +43191,7 @@ } }, { - "id": 2147, + "id": 2142, "name": "name", "kind": 1024, "kindString": "Property", @@ -43302,7 +43221,7 @@ } }, { - "id": 2151, + "id": 2146, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43322,7 +43241,7 @@ } }, { - "id": 2161, + "id": 2156, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -43342,7 +43261,7 @@ } }, { - "id": 2164, + "id": 2159, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -43362,7 +43281,7 @@ } }, { - "id": 2162, + "id": 2157, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -43382,7 +43301,7 @@ } }, { - "id": 2166, + "id": 2161, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -43402,7 +43321,7 @@ } }, { - "id": 2167, + "id": 2162, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -43423,7 +43342,7 @@ } }, { - "id": 2159, + "id": 2154, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -43443,7 +43362,7 @@ } }, { - "id": 2160, + "id": 2155, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -43463,7 +43382,7 @@ } }, { - "id": 2165, + "id": 2160, "name": "type", "kind": 1024, "kindString": "Property", @@ -43483,7 +43402,7 @@ } }, { - "id": 2154, + "id": 2149, "name": "url", "kind": 1024, "kindString": "Property", @@ -43508,27 +43427,27 @@ "title": "Properties", "kind": 1024, "children": [ + 2147, + 2143, + 2158, + 2151, 2152, + 2153, 2148, - 2163, + 2150, + 2145, + 2144, + 2142, + 2146, 2156, + 2159, 2157, - 2158, - 2153, - 2155, - 2150, - 2149, - 2147, - 2151, 2161, - 2164, 2162, - 2166, - 2167, - 2159, + 2154, + 2155, 2160, - 2165, - 2154 + 2149 ] } ] @@ -43538,7 +43457,7 @@ } }, { - "id": 2176, + "id": 2171, "name": "owner", "kind": 1024, "kindString": "Property", @@ -43562,14 +43481,14 @@ { "type": "reflection", "declaration": { - "id": 2177, + "id": 2172, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2183, + "id": 2178, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -43589,7 +43508,7 @@ } }, { - "id": 2179, + "id": 2174, "name": "email", "kind": 1024, "kindString": "Property", @@ -43619,7 +43538,7 @@ } }, { - "id": 2194, + "id": 2189, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -43639,7 +43558,7 @@ } }, { - "id": 2187, + "id": 2182, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -43659,7 +43578,7 @@ } }, { - "id": 2188, + "id": 2183, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -43679,7 +43598,7 @@ } }, { - "id": 2189, + "id": 2184, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -43699,7 +43618,7 @@ } }, { - "id": 2184, + "id": 2179, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -43728,7 +43647,7 @@ } }, { - "id": 2186, + "id": 2181, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -43748,7 +43667,7 @@ } }, { - "id": 2181, + "id": 2176, "name": "id", "kind": 1024, "kindString": "Property", @@ -43768,7 +43687,7 @@ } }, { - "id": 2180, + "id": 2175, "name": "login", "kind": 1024, "kindString": "Property", @@ -43788,7 +43707,7 @@ } }, { - "id": 2178, + "id": 2173, "name": "name", "kind": 1024, "kindString": "Property", @@ -43818,7 +43737,7 @@ } }, { - "id": 2182, + "id": 2177, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43838,7 +43757,7 @@ } }, { - "id": 2192, + "id": 2187, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -43858,7 +43777,7 @@ } }, { - "id": 2195, + "id": 2190, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -43878,7 +43797,7 @@ } }, { - "id": 2193, + "id": 2188, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -43898,7 +43817,7 @@ } }, { - "id": 2197, + "id": 2192, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -43918,7 +43837,7 @@ } }, { - "id": 2198, + "id": 2193, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -43939,7 +43858,7 @@ } }, { - "id": 2190, + "id": 2185, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -43959,7 +43878,7 @@ } }, { - "id": 2191, + "id": 2186, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -43979,7 +43898,7 @@ } }, { - "id": 2196, + "id": 2191, "name": "type", "kind": 1024, "kindString": "Property", @@ -43999,7 +43918,7 @@ } }, { - "id": 2185, + "id": 2180, "name": "url", "kind": 1024, "kindString": "Property", @@ -44024,27 +43943,27 @@ "title": "Properties", "kind": 1024, "children": [ + 2178, + 2174, + 2189, + 2182, 2183, + 2184, 2179, - 2194, + 2181, + 2176, + 2175, + 2173, + 2177, 2187, + 2190, 2188, - 2189, - 2184, - 2186, - 2181, - 2180, - 2178, - 2182, 2192, - 2195, 2193, - 2197, - 2198, - 2190, + 2185, + 2186, 2191, - 2196, - 2185 + 2180 ] } ] @@ -44054,7 +43973,7 @@ } }, { - "id": 2169, + "id": 2164, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -44072,14 +43991,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2170, + "id": 2165, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2171, + "id": 2166, "name": "admin", "kind": 1024, "kindString": "Property", @@ -44099,7 +44018,7 @@ } }, { - "id": 2175, + "id": 2170, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -44120,7 +44039,7 @@ } }, { - "id": 2172, + "id": 2167, "name": "pull", "kind": 1024, "kindString": "Property", @@ -44140,7 +44059,7 @@ } }, { - "id": 2174, + "id": 2169, "name": "push", "kind": 1024, "kindString": "Property", @@ -44160,7 +44079,7 @@ } }, { - "id": 2173, + "id": 2168, "name": "triage", "kind": 1024, "kindString": "Property", @@ -44186,11 +44105,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2171, - 2175, - 2172, - 2174, - 2173 + 2166, + 2170, + 2167, + 2169, + 2168 ] } ] @@ -44198,7 +44117,7 @@ } }, { - "id": 2199, + "id": 2194, "name": "private", "kind": 1024, "kindString": "Property", @@ -44221,7 +44140,7 @@ } }, { - "id": 2231, + "id": 2226, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -44241,7 +44160,7 @@ } }, { - "id": 2263, + "id": 2258, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -44270,7 +44189,7 @@ } }, { - "id": 2232, + "id": 2227, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -44290,7 +44209,7 @@ } }, { - "id": 2250, + "id": 2245, "name": "size", "kind": 1024, "kindString": "Property", @@ -44310,7 +44229,7 @@ } }, { - "id": 2233, + "id": 2228, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -44330,7 +44249,7 @@ } }, { - "id": 2248, + "id": 2243, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -44350,7 +44269,7 @@ } }, { - "id": 2234, + "id": 2229, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -44370,7 +44289,7 @@ } }, { - "id": 2381, + "id": 2376, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -44391,7 +44310,7 @@ } }, { - "id": 2235, + "id": 2230, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -44411,7 +44330,7 @@ } }, { - "id": 2376, + "id": 2371, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -44432,7 +44351,7 @@ } }, { - "id": 2236, + "id": 2231, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -44452,7 +44371,7 @@ } }, { - "id": 2237, + "id": 2232, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -44472,7 +44391,7 @@ } }, { - "id": 2244, + "id": 2239, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -44492,7 +44411,7 @@ } }, { - "id": 2238, + "id": 2233, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -44512,7 +44431,7 @@ } }, { - "id": 2239, + "id": 2234, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -44532,7 +44451,7 @@ } }, { - "id": 2372, + "id": 2367, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -44553,7 +44472,7 @@ } }, { - "id": 2267, + "id": 2262, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -44578,14 +44497,14 @@ { "type": "reflection", "declaration": { - "id": 2268, + "id": 2263, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2369, + "id": 2364, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -44606,7 +44525,7 @@ } }, { - "id": 2365, + "id": 2360, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -44627,7 +44546,7 @@ } }, { - "id": 2367, + "id": 2362, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -44648,7 +44567,7 @@ } }, { - "id": 2298, + "id": 2293, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -44669,7 +44588,7 @@ } }, { - "id": 2354, + "id": 2349, "name": "archived", "kind": 1024, "kindString": "Property", @@ -44690,7 +44609,7 @@ } }, { - "id": 2299, + "id": 2294, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -44711,7 +44630,7 @@ } }, { - "id": 2300, + "id": 2295, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -44732,7 +44651,7 @@ } }, { - "id": 2301, + "id": 2296, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -44753,7 +44672,7 @@ } }, { - "id": 2335, + "id": 2330, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -44774,7 +44693,7 @@ } }, { - "id": 2302, + "id": 2297, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -44795,7 +44714,7 @@ } }, { - "id": 2303, + "id": 2298, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -44816,7 +44735,7 @@ } }, { - "id": 2304, + "id": 2299, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -44837,7 +44756,7 @@ } }, { - "id": 2305, + "id": 2300, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -44858,7 +44777,7 @@ } }, { - "id": 2306, + "id": 2301, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -44879,7 +44798,7 @@ } }, { - "id": 2307, + "id": 2302, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -44900,7 +44819,7 @@ } }, { - "id": 2358, + "id": 2353, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -44921,7 +44840,7 @@ } }, { - "id": 2345, + "id": 2340, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -44942,7 +44861,7 @@ } }, { - "id": 2368, + "id": 2363, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -44963,7 +44882,7 @@ } }, { - "id": 2308, + "id": 2303, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -44984,7 +44903,7 @@ } }, { - "id": 2295, + "id": 2290, "name": "description", "kind": 1024, "kindString": "Property", @@ -45005,7 +44924,7 @@ } }, { - "id": 2355, + "id": 2350, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -45026,7 +44945,7 @@ } }, { - "id": 2309, + "id": 2304, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -45047,7 +44966,7 @@ } }, { - "id": 2310, + "id": 2305, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -45068,7 +44987,7 @@ } }, { - "id": 2296, + "id": 2291, "name": "fork", "kind": 1024, "kindString": "Property", @@ -45089,7 +45008,7 @@ } }, { - "id": 2341, + "id": 2336, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -45110,7 +45029,7 @@ } }, { - "id": 2311, + "id": 2306, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -45131,7 +45050,7 @@ } }, { - "id": 2272, + "id": 2267, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -45152,7 +45071,7 @@ } }, { - "id": 2312, + "id": 2307, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -45173,7 +45092,7 @@ } }, { - "id": 2313, + "id": 2308, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -45194,7 +45113,7 @@ } }, { - "id": 2314, + "id": 2309, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -45215,7 +45134,7 @@ } }, { - "id": 2315, + "id": 2310, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -45236,7 +45155,7 @@ } }, { - "id": 2353, + "id": 2348, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -45257,7 +45176,7 @@ } }, { - "id": 2349, + "id": 2344, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -45278,7 +45197,7 @@ } }, { - "id": 2352, + "id": 2347, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -45299,7 +45218,7 @@ } }, { - "id": 2350, + "id": 2345, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -45320,7 +45239,7 @@ } }, { - "id": 2351, + "id": 2346, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -45341,7 +45260,7 @@ } }, { - "id": 2339, + "id": 2334, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -45362,7 +45281,7 @@ } }, { - "id": 2337, + "id": 2332, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -45383,7 +45302,7 @@ } }, { - "id": 2294, + "id": 2289, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -45404,7 +45323,7 @@ } }, { - "id": 2269, + "id": 2264, "name": "id", "kind": 1024, "kindString": "Property", @@ -45425,7 +45344,7 @@ } }, { - "id": 2347, + "id": 2342, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -45446,7 +45365,7 @@ } }, { - "id": 2316, + "id": 2311, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -45467,7 +45386,7 @@ } }, { - "id": 2317, + "id": 2312, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -45488,7 +45407,7 @@ } }, { - "id": 2318, + "id": 2313, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -45509,7 +45428,7 @@ } }, { - "id": 2319, + "id": 2314, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -45530,7 +45449,7 @@ } }, { - "id": 2320, + "id": 2315, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -45551,7 +45470,7 @@ } }, { - "id": 2340, + "id": 2335, "name": "language", "kind": 1024, "kindString": "Property", @@ -45572,7 +45491,7 @@ } }, { - "id": 2321, + "id": 2316, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -45593,7 +45512,7 @@ } }, { - "id": 2322, + "id": 2317, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -45614,7 +45533,7 @@ } }, { - "id": 2323, + "id": 2318, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -45635,7 +45554,7 @@ } }, { - "id": 2336, + "id": 2331, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -45656,7 +45575,7 @@ } }, { - "id": 2271, + "id": 2266, "name": "name", "kind": 1024, "kindString": "Property", @@ -45677,7 +45596,7 @@ } }, { - "id": 2371, + "id": 2366, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -45698,7 +45617,7 @@ } }, { - "id": 2270, + "id": 2265, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -45719,7 +45638,7 @@ } }, { - "id": 2324, + "id": 2319, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -45740,7 +45659,7 @@ } }, { - "id": 2346, + "id": 2341, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -45761,7 +45680,7 @@ } }, { - "id": 2273, + "id": 2268, "name": "owner", "kind": 1024, "kindString": "Property", @@ -45779,14 +45698,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2274, + "id": 2269, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2278, + "id": 2273, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -45807,7 +45726,7 @@ } }, { - "id": 2289, + "id": 2284, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -45828,7 +45747,7 @@ } }, { - "id": 2282, + "id": 2277, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -45849,7 +45768,7 @@ } }, { - "id": 2283, + "id": 2278, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -45870,7 +45789,7 @@ } }, { - "id": 2284, + "id": 2279, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -45891,7 +45810,7 @@ } }, { - "id": 2279, + "id": 2274, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -45912,7 +45831,7 @@ } }, { - "id": 2281, + "id": 2276, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -45933,7 +45852,7 @@ } }, { - "id": 2276, + "id": 2271, "name": "id", "kind": 1024, "kindString": "Property", @@ -45954,7 +45873,7 @@ } }, { - "id": 2275, + "id": 2270, "name": "login", "kind": 1024, "kindString": "Property", @@ -45975,7 +45894,7 @@ } }, { - "id": 2277, + "id": 2272, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -45996,7 +45915,7 @@ } }, { - "id": 2287, + "id": 2282, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -46017,7 +45936,7 @@ } }, { - "id": 2290, + "id": 2285, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -46038,7 +45957,7 @@ } }, { - "id": 2288, + "id": 2283, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -46059,7 +45978,7 @@ } }, { - "id": 2292, + "id": 2287, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -46080,7 +45999,7 @@ } }, { - "id": 2285, + "id": 2280, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -46101,7 +46020,7 @@ } }, { - "id": 2286, + "id": 2281, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -46122,7 +46041,7 @@ } }, { - "id": 2291, + "id": 2286, "name": "type", "kind": 1024, "kindString": "Property", @@ -46143,7 +46062,7 @@ } }, { - "id": 2280, + "id": 2275, "name": "url", "kind": 1024, "kindString": "Property", @@ -46169,24 +46088,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2278, - 2289, - 2282, - 2283, + 2273, 2284, + 2277, + 2278, 2279, - 2281, + 2274, 2276, - 2275, - 2277, - 2287, - 2290, - 2288, - 2292, + 2271, + 2270, + 2272, + 2282, 2285, + 2283, + 2287, + 2280, + 2281, 2286, - 2291, - 2280 + 2275 ] } ] @@ -46194,7 +46113,7 @@ } }, { - "id": 2360, + "id": 2355, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -46212,14 +46131,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2361, + "id": 2356, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2362, + "id": 2357, "name": "admin", "kind": 1024, "kindString": "Property", @@ -46240,7 +46159,7 @@ } }, { - "id": 2364, + "id": 2359, "name": "pull", "kind": 1024, "kindString": "Property", @@ -46261,7 +46180,7 @@ } }, { - "id": 2363, + "id": 2358, "name": "push", "kind": 1024, "kindString": "Property", @@ -46287,9 +46206,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2362, - 2364, - 2363 + 2357, + 2359, + 2358 ] } ] @@ -46297,7 +46216,7 @@ } }, { - "id": 2293, + "id": 2288, "name": "private", "kind": 1024, "kindString": "Property", @@ -46318,7 +46237,7 @@ } }, { - "id": 2325, + "id": 2320, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -46339,7 +46258,7 @@ } }, { - "id": 2357, + "id": 2352, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -46360,7 +46279,7 @@ } }, { - "id": 2326, + "id": 2321, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -46381,7 +46300,7 @@ } }, { - "id": 2344, + "id": 2339, "name": "size", "kind": 1024, "kindString": "Property", @@ -46402,7 +46321,7 @@ } }, { - "id": 2327, + "id": 2322, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -46423,7 +46342,7 @@ } }, { - "id": 2342, + "id": 2337, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -46444,7 +46363,7 @@ } }, { - "id": 2328, + "id": 2323, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -46465,7 +46384,7 @@ } }, { - "id": 2329, + "id": 2324, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -46486,7 +46405,7 @@ } }, { - "id": 2370, + "id": 2365, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -46507,7 +46426,7 @@ } }, { - "id": 2330, + "id": 2325, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -46528,7 +46447,7 @@ } }, { - "id": 2331, + "id": 2326, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -46549,7 +46468,7 @@ } }, { - "id": 2338, + "id": 2333, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -46570,7 +46489,7 @@ } }, { - "id": 2332, + "id": 2327, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -46591,7 +46510,7 @@ } }, { - "id": 2333, + "id": 2328, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -46612,7 +46531,7 @@ } }, { - "id": 2366, + "id": 2361, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -46633,7 +46552,7 @@ } }, { - "id": 2348, + "id": 2343, "name": "topics", "kind": 1024, "kindString": "Property", @@ -46657,7 +46576,7 @@ } }, { - "id": 2334, + "id": 2329, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -46678,7 +46597,7 @@ } }, { - "id": 2359, + "id": 2354, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -46699,7 +46618,7 @@ } }, { - "id": 2297, + "id": 2292, "name": "url", "kind": 1024, "kindString": "Property", @@ -46720,7 +46639,7 @@ } }, { - "id": 2356, + "id": 2351, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -46741,7 +46660,7 @@ } }, { - "id": 2343, + "id": 2338, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -46767,86 +46686,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2369, - 2365, - 2367, + 2364, + 2360, + 2362, + 2293, + 2349, + 2294, + 2295, + 2296, + 2330, + 2297, 2298, - 2354, 2299, 2300, 2301, - 2335, 2302, + 2353, + 2340, + 2363, 2303, + 2290, + 2350, 2304, 2305, + 2291, + 2336, 2306, + 2267, 2307, - 2358, - 2345, - 2368, 2308, - 2295, - 2355, 2309, 2310, - 2296, - 2341, + 2348, + 2344, + 2347, + 2345, + 2346, + 2334, + 2332, + 2289, + 2264, + 2342, 2311, - 2272, 2312, 2313, 2314, 2315, - 2353, - 2349, - 2352, - 2350, - 2351, - 2339, - 2337, - 2294, - 2269, - 2347, + 2335, 2316, 2317, 2318, + 2331, + 2266, + 2366, + 2265, 2319, + 2341, + 2268, + 2355, + 2288, 2320, - 2340, + 2352, 2321, + 2339, 2322, + 2337, 2323, - 2336, - 2271, - 2371, - 2270, 2324, - 2346, - 2273, - 2360, - 2293, + 2365, 2325, - 2357, 2326, - 2344, + 2333, 2327, - 2342, 2328, + 2361, + 2343, 2329, - 2370, - 2330, - 2331, - 2338, - 2332, - 2333, - 2366, - 2348, - 2334, - 2359, - 2297, - 2356, - 2343 + 2354, + 2292, + 2351, + 2338 ] } ] @@ -46856,7 +46775,7 @@ } }, { - "id": 2254, + "id": 2249, "name": "topics", "kind": 1024, "kindString": "Property", @@ -46880,7 +46799,7 @@ } }, { - "id": 2240, + "id": 2235, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -46900,7 +46819,7 @@ } }, { - "id": 2265, + "id": 2260, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -46929,7 +46848,7 @@ } }, { - "id": 2203, + "id": 2198, "name": "url", "kind": 1024, "kindString": "Property", @@ -46949,7 +46868,7 @@ } }, { - "id": 2262, + "id": 2257, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -46973,7 +46892,7 @@ } }, { - "id": 2379, + "id": 2374, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -46993,7 +46912,7 @@ } }, { - "id": 2249, + "id": 2244, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -47018,94 +46937,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2375, - 2266, - 2373, + 2370, + 2261, + 2368, + 2199, + 2255, + 2200, + 2201, + 2202, + 2236, + 2203, 2204, - 2260, 2205, 2206, 2207, - 2241, 2208, + 2259, + 2246, + 2369, 2209, + 2196, + 2256, 2210, 2211, + 2197, + 2163, + 2242, 2212, + 2131, 2213, - 2264, - 2251, - 2374, 2214, - 2201, - 2261, 2215, 2216, - 2202, - 2168, - 2247, + 2254, + 2250, + 2253, + 2251, + 2252, + 2240, + 2238, + 2195, + 2128, + 2248, 2217, - 2136, 2218, 2219, 2220, 2221, - 2259, - 2255, - 2258, - 2256, - 2257, - 2245, - 2243, - 2200, - 2133, - 2253, + 2241, 2222, + 2132, + 2375, 2223, 2224, + 2237, + 2130, + 2372, + 2129, 2225, + 2373, + 2247, + 2140, + 2171, + 2164, + 2194, 2226, - 2246, + 2258, 2227, - 2137, - 2380, + 2245, 2228, + 2243, 2229, - 2242, - 2135, - 2377, - 2134, + 2376, 2230, - 2378, - 2252, - 2145, - 2176, - 2169, - 2199, + 2371, 2231, - 2263, 2232, - 2250, + 2239, 2233, - 2248, 2234, - 2381, - 2235, - 2376, - 2236, - 2237, - 2244, - 2238, - 2239, - 2372, - 2267, - 2254, - 2240, - 2265, - 2203, + 2367, 2262, - 2379, - 2249 + 2249, + 2235, + 2260, + 2198, + 2257, + 2374, + 2244 ] } ] @@ -47113,7 +47032,7 @@ } }, { - "id": 1837, + "id": 1832, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -47131,14 +47050,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1838, + "id": 1833, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1839, + "id": 1834, "name": "admin", "kind": 1024, "kindString": "Property", @@ -47158,7 +47077,7 @@ } }, { - "id": 1840, + "id": 1835, "name": "pull", "kind": 1024, "kindString": "Property", @@ -47178,7 +47097,7 @@ } }, { - "id": 1841, + "id": 1836, "name": "push", "kind": 1024, "kindString": "Property", @@ -47203,9 +47122,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1839, - 1840, - 1841 + 1834, + 1835, + 1836 ] } ] @@ -47213,7 +47132,7 @@ } }, { - "id": 1770, + "id": 1765, "name": "private", "kind": 1024, "kindString": "Property", @@ -47233,7 +47152,7 @@ } }, { - "id": 1802, + "id": 1797, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -47253,7 +47172,7 @@ } }, { - "id": 1834, + "id": 1829, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -47273,7 +47192,7 @@ } }, { - "id": 1803, + "id": 1798, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -47293,7 +47212,7 @@ } }, { - "id": 2644, + "id": 2639, "name": "security_and_analysis", "kind": 1024, "kindString": "Property", @@ -47318,14 +47237,14 @@ { "type": "reflection", "declaration": { - "id": 2645, + "id": 2640, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2646, + "id": 2641, "name": "advanced_security", "kind": 1024, "kindString": "Property", @@ -47343,14 +47262,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2647, + "id": 2642, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2648, + "id": 2643, "name": "status", "kind": 1024, "kindString": "Property", @@ -47385,7 +47304,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2648 + 2643 ] } ] @@ -47393,7 +47312,7 @@ } }, { - "id": 2649, + "id": 2644, "name": "secret_scanning", "kind": 1024, "kindString": "Property", @@ -47411,14 +47330,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2650, + "id": 2645, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2651, + "id": 2646, "name": "status", "kind": 1024, "kindString": "Property", @@ -47453,7 +47372,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2651 + 2646 ] } ] @@ -47466,8 +47385,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2646, - 2649 + 2641, + 2644 ] } ] @@ -47477,7 +47396,7 @@ } }, { - "id": 1821, + "id": 1816, "name": "size", "kind": 1024, "kindString": "Property", @@ -47497,7 +47416,7 @@ } }, { - "id": 2382, + "id": 2377, "name": "source", "kind": 1024, "kindString": "Property", @@ -47515,14 +47434,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2383, + "id": 2378, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2626, + "id": 2621, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -47546,7 +47465,7 @@ } }, { - "id": 2517, + "id": 2512, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -47570,7 +47489,7 @@ } }, { - "id": 2624, + "id": 2619, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -47594,7 +47513,7 @@ } }, { - "id": 2455, + "id": 2450, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -47614,7 +47533,7 @@ } }, { - "id": 2511, + "id": 2506, "name": "archived", "kind": 1024, "kindString": "Property", @@ -47637,7 +47556,7 @@ } }, { - "id": 2456, + "id": 2451, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -47657,7 +47576,7 @@ } }, { - "id": 2457, + "id": 2452, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -47677,7 +47596,7 @@ } }, { - "id": 2458, + "id": 2453, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -47697,7 +47616,7 @@ } }, { - "id": 2492, + "id": 2487, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -47717,7 +47636,7 @@ } }, { - "id": 2459, + "id": 2454, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -47737,7 +47656,7 @@ } }, { - "id": 2460, + "id": 2455, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -47757,7 +47676,7 @@ } }, { - "id": 2461, + "id": 2456, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -47777,7 +47696,7 @@ } }, { - "id": 2462, + "id": 2457, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -47797,7 +47716,7 @@ } }, { - "id": 2463, + "id": 2458, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -47817,7 +47736,7 @@ } }, { - "id": 2464, + "id": 2459, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -47837,7 +47756,7 @@ } }, { - "id": 2515, + "id": 2510, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -47866,7 +47785,7 @@ } }, { - "id": 2502, + "id": 2497, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -47889,7 +47808,7 @@ } }, { - "id": 2625, + "id": 2620, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -47913,7 +47832,7 @@ } }, { - "id": 2465, + "id": 2460, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -47933,7 +47852,7 @@ } }, { - "id": 2452, + "id": 2447, "name": "description", "kind": 1024, "kindString": "Property", @@ -47962,7 +47881,7 @@ } }, { - "id": 2512, + "id": 2507, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -47985,7 +47904,7 @@ } }, { - "id": 2466, + "id": 2461, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -48005,7 +47924,7 @@ } }, { - "id": 2467, + "id": 2462, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -48025,7 +47944,7 @@ } }, { - "id": 2453, + "id": 2448, "name": "fork", "kind": 1024, "kindString": "Property", @@ -48045,7 +47964,7 @@ } }, { - "id": 2419, + "id": 2414, "name": "forks", "kind": 1024, "kindString": "Property", @@ -48065,7 +47984,7 @@ } }, { - "id": 2498, + "id": 2493, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -48085,7 +48004,7 @@ } }, { - "id": 2468, + "id": 2463, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -48105,7 +48024,7 @@ } }, { - "id": 2387, + "id": 2382, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -48125,7 +48044,7 @@ } }, { - "id": 2469, + "id": 2464, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -48145,7 +48064,7 @@ } }, { - "id": 2470, + "id": 2465, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -48165,7 +48084,7 @@ } }, { - "id": 2471, + "id": 2466, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -48185,7 +48104,7 @@ } }, { - "id": 2472, + "id": 2467, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -48205,7 +48124,7 @@ } }, { - "id": 2510, + "id": 2505, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -48228,7 +48147,7 @@ } }, { - "id": 2506, + "id": 2501, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -48251,7 +48170,7 @@ } }, { - "id": 2509, + "id": 2504, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -48271,7 +48190,7 @@ } }, { - "id": 2507, + "id": 2502, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -48294,7 +48213,7 @@ } }, { - "id": 2508, + "id": 2503, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -48317,7 +48236,7 @@ } }, { - "id": 2496, + "id": 2491, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -48346,7 +48265,7 @@ } }, { - "id": 2494, + "id": 2489, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -48366,7 +48285,7 @@ } }, { - "id": 2451, + "id": 2446, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -48386,7 +48305,7 @@ } }, { - "id": 2384, + "id": 2379, "name": "id", "kind": 1024, "kindString": "Property", @@ -48409,7 +48328,7 @@ } }, { - "id": 2504, + "id": 2499, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -48433,7 +48352,7 @@ } }, { - "id": 2473, + "id": 2468, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -48453,7 +48372,7 @@ } }, { - "id": 2474, + "id": 2469, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -48473,7 +48392,7 @@ } }, { - "id": 2475, + "id": 2470, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -48493,7 +48412,7 @@ } }, { - "id": 2476, + "id": 2471, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -48513,7 +48432,7 @@ } }, { - "id": 2477, + "id": 2472, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -48533,7 +48452,7 @@ } }, { - "id": 2497, + "id": 2492, "name": "language", "kind": 1024, "kindString": "Property", @@ -48562,7 +48481,7 @@ } }, { - "id": 2478, + "id": 2473, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -48582,7 +48501,7 @@ } }, { - "id": 2388, + "id": 2383, "name": "license", "kind": 1024, "kindString": "Property", @@ -48606,14 +48525,14 @@ { "type": "reflection", "declaration": { - "id": 2389, + "id": 2384, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2395, + "id": 2390, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -48634,7 +48553,7 @@ } }, { - "id": 2390, + "id": 2385, "name": "key", "kind": 1024, "kindString": "Property", @@ -48654,7 +48573,7 @@ } }, { - "id": 2391, + "id": 2386, "name": "name", "kind": 1024, "kindString": "Property", @@ -48674,7 +48593,7 @@ } }, { - "id": 2394, + "id": 2389, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -48694,7 +48613,7 @@ } }, { - "id": 2393, + "id": 2388, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -48723,7 +48642,7 @@ } }, { - "id": 2392, + "id": 2387, "name": "url", "kind": 1024, "kindString": "Property", @@ -48757,12 +48676,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2395, 2390, - 2391, - 2394, - 2393, - 2392 + 2385, + 2386, + 2389, + 2388, + 2387 ] } ] @@ -48772,7 +48691,7 @@ } }, { - "id": 2631, + "id": 2626, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -48793,7 +48712,7 @@ } }, { - "id": 2479, + "id": 2474, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -48813,7 +48732,7 @@ } }, { - "id": 2480, + "id": 2475, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -48833,7 +48752,7 @@ } }, { - "id": 2493, + "id": 2488, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -48862,7 +48781,7 @@ } }, { - "id": 2386, + "id": 2381, "name": "name", "kind": 1024, "kindString": "Property", @@ -48885,7 +48804,7 @@ } }, { - "id": 2628, + "id": 2623, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -48906,7 +48825,7 @@ } }, { - "id": 2385, + "id": 2380, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -48926,7 +48845,7 @@ } }, { - "id": 2481, + "id": 2476, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -48946,7 +48865,7 @@ } }, { - "id": 2629, + "id": 2624, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -48966,7 +48885,7 @@ } }, { - "id": 2503, + "id": 2498, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -48986,7 +48905,7 @@ } }, { - "id": 2396, + "id": 2391, "name": "organization", "kind": 1024, "kindString": "Property", @@ -49011,14 +48930,14 @@ { "type": "reflection", "declaration": { - "id": 2397, + "id": 2392, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2403, + "id": 2398, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -49038,7 +48957,7 @@ } }, { - "id": 2399, + "id": 2394, "name": "email", "kind": 1024, "kindString": "Property", @@ -49068,7 +48987,7 @@ } }, { - "id": 2414, + "id": 2409, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -49088,7 +49007,7 @@ } }, { - "id": 2407, + "id": 2402, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -49108,7 +49027,7 @@ } }, { - "id": 2408, + "id": 2403, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -49128,7 +49047,7 @@ } }, { - "id": 2409, + "id": 2404, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -49148,7 +49067,7 @@ } }, { - "id": 2404, + "id": 2399, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -49177,7 +49096,7 @@ } }, { - "id": 2406, + "id": 2401, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -49197,7 +49116,7 @@ } }, { - "id": 2401, + "id": 2396, "name": "id", "kind": 1024, "kindString": "Property", @@ -49217,7 +49136,7 @@ } }, { - "id": 2400, + "id": 2395, "name": "login", "kind": 1024, "kindString": "Property", @@ -49237,7 +49156,7 @@ } }, { - "id": 2398, + "id": 2393, "name": "name", "kind": 1024, "kindString": "Property", @@ -49267,7 +49186,7 @@ } }, { - "id": 2402, + "id": 2397, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49287,7 +49206,7 @@ } }, { - "id": 2412, + "id": 2407, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -49307,7 +49226,7 @@ } }, { - "id": 2415, + "id": 2410, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -49327,7 +49246,7 @@ } }, { - "id": 2413, + "id": 2408, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -49347,7 +49266,7 @@ } }, { - "id": 2417, + "id": 2412, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -49367,7 +49286,7 @@ } }, { - "id": 2418, + "id": 2413, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -49388,7 +49307,7 @@ } }, { - "id": 2410, + "id": 2405, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -49408,7 +49327,7 @@ } }, { - "id": 2411, + "id": 2406, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -49428,7 +49347,7 @@ } }, { - "id": 2416, + "id": 2411, "name": "type", "kind": 1024, "kindString": "Property", @@ -49448,7 +49367,7 @@ } }, { - "id": 2405, + "id": 2400, "name": "url", "kind": 1024, "kindString": "Property", @@ -49473,27 +49392,27 @@ "title": "Properties", "kind": 1024, "children": [ + 2398, + 2394, + 2409, + 2402, 2403, + 2404, 2399, - 2414, + 2401, + 2396, + 2395, + 2393, + 2397, 2407, + 2410, 2408, - 2409, - 2404, - 2406, - 2401, - 2400, - 2398, - 2402, 2412, - 2415, 2413, - 2417, - 2418, - 2410, + 2405, + 2406, 2411, - 2416, - 2405 + 2400 ] } ] @@ -49503,7 +49422,7 @@ } }, { - "id": 2427, + "id": 2422, "name": "owner", "kind": 1024, "kindString": "Property", @@ -49527,14 +49446,14 @@ { "type": "reflection", "declaration": { - "id": 2428, + "id": 2423, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2434, + "id": 2429, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -49554,7 +49473,7 @@ } }, { - "id": 2430, + "id": 2425, "name": "email", "kind": 1024, "kindString": "Property", @@ -49584,7 +49503,7 @@ } }, { - "id": 2445, + "id": 2440, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -49604,7 +49523,7 @@ } }, { - "id": 2438, + "id": 2433, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -49624,7 +49543,7 @@ } }, { - "id": 2439, + "id": 2434, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -49644,7 +49563,7 @@ } }, { - "id": 2440, + "id": 2435, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -49664,7 +49583,7 @@ } }, { - "id": 2435, + "id": 2430, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -49693,7 +49612,7 @@ } }, { - "id": 2437, + "id": 2432, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -49713,7 +49632,7 @@ } }, { - "id": 2432, + "id": 2427, "name": "id", "kind": 1024, "kindString": "Property", @@ -49733,7 +49652,7 @@ } }, { - "id": 2431, + "id": 2426, "name": "login", "kind": 1024, "kindString": "Property", @@ -49753,7 +49672,7 @@ } }, { - "id": 2429, + "id": 2424, "name": "name", "kind": 1024, "kindString": "Property", @@ -49783,7 +49702,7 @@ } }, { - "id": 2433, + "id": 2428, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49803,7 +49722,7 @@ } }, { - "id": 2443, + "id": 2438, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -49823,7 +49742,7 @@ } }, { - "id": 2446, + "id": 2441, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -49843,7 +49762,7 @@ } }, { - "id": 2444, + "id": 2439, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -49863,7 +49782,7 @@ } }, { - "id": 2448, + "id": 2443, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -49883,7 +49802,7 @@ } }, { - "id": 2449, + "id": 2444, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -49904,7 +49823,7 @@ } }, { - "id": 2441, + "id": 2436, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -49924,7 +49843,7 @@ } }, { - "id": 2442, + "id": 2437, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -49944,7 +49863,7 @@ } }, { - "id": 2447, + "id": 2442, "name": "type", "kind": 1024, "kindString": "Property", @@ -49964,7 +49883,7 @@ } }, { - "id": 2436, + "id": 2431, "name": "url", "kind": 1024, "kindString": "Property", @@ -49989,27 +49908,27 @@ "title": "Properties", "kind": 1024, "children": [ + 2429, + 2425, + 2440, + 2433, 2434, + 2435, 2430, - 2445, + 2432, + 2427, + 2426, + 2424, + 2428, 2438, + 2441, 2439, - 2440, - 2435, - 2437, - 2432, - 2431, - 2429, - 2433, 2443, - 2446, 2444, - 2448, - 2449, - 2441, + 2436, + 2437, 2442, - 2447, - 2436 + 2431 ] } ] @@ -50019,7 +49938,7 @@ } }, { - "id": 2420, + "id": 2415, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -50037,14 +49956,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2421, + "id": 2416, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2422, + "id": 2417, "name": "admin", "kind": 1024, "kindString": "Property", @@ -50064,7 +49983,7 @@ } }, { - "id": 2426, + "id": 2421, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -50085,7 +50004,7 @@ } }, { - "id": 2423, + "id": 2418, "name": "pull", "kind": 1024, "kindString": "Property", @@ -50105,7 +50024,7 @@ } }, { - "id": 2425, + "id": 2420, "name": "push", "kind": 1024, "kindString": "Property", @@ -50125,7 +50044,7 @@ } }, { - "id": 2424, + "id": 2419, "name": "triage", "kind": 1024, "kindString": "Property", @@ -50151,11 +50070,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2422, - 2426, - 2423, - 2425, - 2424 + 2417, + 2421, + 2418, + 2420, + 2419 ] } ] @@ -50163,7 +50082,7 @@ } }, { - "id": 2450, + "id": 2445, "name": "private", "kind": 1024, "kindString": "Property", @@ -50186,7 +50105,7 @@ } }, { - "id": 2482, + "id": 2477, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -50206,7 +50125,7 @@ } }, { - "id": 2514, + "id": 2509, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -50235,7 +50154,7 @@ } }, { - "id": 2483, + "id": 2478, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -50255,7 +50174,7 @@ } }, { - "id": 2501, + "id": 2496, "name": "size", "kind": 1024, "kindString": "Property", @@ -50275,7 +50194,7 @@ } }, { - "id": 2484, + "id": 2479, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -50295,7 +50214,7 @@ } }, { - "id": 2499, + "id": 2494, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -50315,7 +50234,7 @@ } }, { - "id": 2485, + "id": 2480, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -50335,7 +50254,7 @@ } }, { - "id": 2632, + "id": 2627, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -50356,7 +50275,7 @@ } }, { - "id": 2486, + "id": 2481, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -50376,7 +50295,7 @@ } }, { - "id": 2627, + "id": 2622, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -50397,7 +50316,7 @@ } }, { - "id": 2487, + "id": 2482, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -50417,7 +50336,7 @@ } }, { - "id": 2488, + "id": 2483, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -50437,7 +50356,7 @@ } }, { - "id": 2495, + "id": 2490, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -50457,7 +50376,7 @@ } }, { - "id": 2489, + "id": 2484, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -50477,7 +50396,7 @@ } }, { - "id": 2490, + "id": 2485, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -50497,7 +50416,7 @@ } }, { - "id": 2623, + "id": 2618, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -50518,7 +50437,7 @@ } }, { - "id": 2518, + "id": 2513, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -50543,14 +50462,14 @@ { "type": "reflection", "declaration": { - "id": 2519, + "id": 2514, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2620, + "id": 2615, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -50571,7 +50490,7 @@ } }, { - "id": 2616, + "id": 2611, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -50592,7 +50511,7 @@ } }, { - "id": 2618, + "id": 2613, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -50613,7 +50532,7 @@ } }, { - "id": 2549, + "id": 2544, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -50634,7 +50553,7 @@ } }, { - "id": 2605, + "id": 2600, "name": "archived", "kind": 1024, "kindString": "Property", @@ -50655,7 +50574,7 @@ } }, { - "id": 2550, + "id": 2545, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -50676,7 +50595,7 @@ } }, { - "id": 2551, + "id": 2546, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -50697,7 +50616,7 @@ } }, { - "id": 2552, + "id": 2547, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -50718,7 +50637,7 @@ } }, { - "id": 2586, + "id": 2581, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -50739,7 +50658,7 @@ } }, { - "id": 2553, + "id": 2548, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -50760,7 +50679,7 @@ } }, { - "id": 2554, + "id": 2549, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -50781,7 +50700,7 @@ } }, { - "id": 2555, + "id": 2550, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -50802,7 +50721,7 @@ } }, { - "id": 2556, + "id": 2551, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -50823,7 +50742,7 @@ } }, { - "id": 2557, + "id": 2552, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -50844,7 +50763,7 @@ } }, { - "id": 2558, + "id": 2553, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -50865,7 +50784,7 @@ } }, { - "id": 2609, + "id": 2604, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -50886,7 +50805,7 @@ } }, { - "id": 2596, + "id": 2591, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -50907,7 +50826,7 @@ } }, { - "id": 2619, + "id": 2614, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -50928,7 +50847,7 @@ } }, { - "id": 2559, + "id": 2554, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -50949,7 +50868,7 @@ } }, { - "id": 2546, + "id": 2541, "name": "description", "kind": 1024, "kindString": "Property", @@ -50970,7 +50889,7 @@ } }, { - "id": 2606, + "id": 2601, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -50991,7 +50910,7 @@ } }, { - "id": 2560, + "id": 2555, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -51012,7 +50931,7 @@ } }, { - "id": 2561, + "id": 2556, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -51033,7 +50952,7 @@ } }, { - "id": 2547, + "id": 2542, "name": "fork", "kind": 1024, "kindString": "Property", @@ -51054,7 +50973,7 @@ } }, { - "id": 2592, + "id": 2587, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -51075,7 +50994,7 @@ } }, { - "id": 2562, + "id": 2557, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -51096,7 +51015,7 @@ } }, { - "id": 2523, + "id": 2518, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -51117,7 +51036,7 @@ } }, { - "id": 2563, + "id": 2558, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -51138,7 +51057,7 @@ } }, { - "id": 2564, + "id": 2559, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -51159,7 +51078,7 @@ } }, { - "id": 2565, + "id": 2560, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -51180,7 +51099,7 @@ } }, { - "id": 2566, + "id": 2561, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -51201,7 +51120,7 @@ } }, { - "id": 2604, + "id": 2599, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -51222,7 +51141,7 @@ } }, { - "id": 2600, + "id": 2595, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -51243,7 +51162,7 @@ } }, { - "id": 2603, + "id": 2598, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -51264,7 +51183,7 @@ } }, { - "id": 2601, + "id": 2596, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -51285,7 +51204,7 @@ } }, { - "id": 2602, + "id": 2597, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -51306,7 +51225,7 @@ } }, { - "id": 2590, + "id": 2585, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -51327,7 +51246,7 @@ } }, { - "id": 2588, + "id": 2583, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -51348,7 +51267,7 @@ } }, { - "id": 2545, + "id": 2540, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -51369,7 +51288,7 @@ } }, { - "id": 2520, + "id": 2515, "name": "id", "kind": 1024, "kindString": "Property", @@ -51390,7 +51309,7 @@ } }, { - "id": 2598, + "id": 2593, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -51411,7 +51330,7 @@ } }, { - "id": 2567, + "id": 2562, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -51432,7 +51351,7 @@ } }, { - "id": 2568, + "id": 2563, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -51453,7 +51372,7 @@ } }, { - "id": 2569, + "id": 2564, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -51474,7 +51393,7 @@ } }, { - "id": 2570, + "id": 2565, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -51495,7 +51414,7 @@ } }, { - "id": 2571, + "id": 2566, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -51516,7 +51435,7 @@ } }, { - "id": 2591, + "id": 2586, "name": "language", "kind": 1024, "kindString": "Property", @@ -51537,7 +51456,7 @@ } }, { - "id": 2572, + "id": 2567, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -51558,7 +51477,7 @@ } }, { - "id": 2573, + "id": 2568, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -51579,7 +51498,7 @@ } }, { - "id": 2574, + "id": 2569, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -51600,7 +51519,7 @@ } }, { - "id": 2587, + "id": 2582, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -51621,7 +51540,7 @@ } }, { - "id": 2522, + "id": 2517, "name": "name", "kind": 1024, "kindString": "Property", @@ -51642,7 +51561,7 @@ } }, { - "id": 2622, + "id": 2617, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -51663,7 +51582,7 @@ } }, { - "id": 2521, + "id": 2516, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -51684,7 +51603,7 @@ } }, { - "id": 2575, + "id": 2570, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -51705,7 +51624,7 @@ } }, { - "id": 2597, + "id": 2592, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -51726,7 +51645,7 @@ } }, { - "id": 2524, + "id": 2519, "name": "owner", "kind": 1024, "kindString": "Property", @@ -51744,14 +51663,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2525, + "id": 2520, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2529, + "id": 2524, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -51772,7 +51691,7 @@ } }, { - "id": 2540, + "id": 2535, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -51793,7 +51712,7 @@ } }, { - "id": 2533, + "id": 2528, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -51814,7 +51733,7 @@ } }, { - "id": 2534, + "id": 2529, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -51835,7 +51754,7 @@ } }, { - "id": 2535, + "id": 2530, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -51856,7 +51775,7 @@ } }, { - "id": 2530, + "id": 2525, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -51877,7 +51796,7 @@ } }, { - "id": 2532, + "id": 2527, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -51898,7 +51817,7 @@ } }, { - "id": 2527, + "id": 2522, "name": "id", "kind": 1024, "kindString": "Property", @@ -51919,7 +51838,7 @@ } }, { - "id": 2526, + "id": 2521, "name": "login", "kind": 1024, "kindString": "Property", @@ -51940,7 +51859,7 @@ } }, { - "id": 2528, + "id": 2523, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -51961,7 +51880,7 @@ } }, { - "id": 2538, + "id": 2533, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -51982,7 +51901,7 @@ } }, { - "id": 2541, + "id": 2536, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -52003,7 +51922,7 @@ } }, { - "id": 2539, + "id": 2534, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -52024,7 +51943,7 @@ } }, { - "id": 2543, + "id": 2538, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -52045,7 +51964,7 @@ } }, { - "id": 2536, + "id": 2531, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -52066,7 +51985,7 @@ } }, { - "id": 2537, + "id": 2532, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -52087,7 +52006,7 @@ } }, { - "id": 2542, + "id": 2537, "name": "type", "kind": 1024, "kindString": "Property", @@ -52108,7 +52027,7 @@ } }, { - "id": 2531, + "id": 2526, "name": "url", "kind": 1024, "kindString": "Property", @@ -52134,24 +52053,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2529, - 2540, - 2533, - 2534, + 2524, 2535, + 2528, + 2529, 2530, - 2532, + 2525, 2527, - 2526, - 2528, - 2538, - 2541, - 2539, - 2543, + 2522, + 2521, + 2523, + 2533, 2536, + 2534, + 2538, + 2531, + 2532, 2537, - 2542, - 2531 + 2526 ] } ] @@ -52159,7 +52078,7 @@ } }, { - "id": 2611, + "id": 2606, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -52177,14 +52096,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2612, + "id": 2607, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2613, + "id": 2608, "name": "admin", "kind": 1024, "kindString": "Property", @@ -52205,7 +52124,7 @@ } }, { - "id": 2615, + "id": 2610, "name": "pull", "kind": 1024, "kindString": "Property", @@ -52226,7 +52145,7 @@ } }, { - "id": 2614, + "id": 2609, "name": "push", "kind": 1024, "kindString": "Property", @@ -52252,9 +52171,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2613, - 2615, - 2614 + 2608, + 2610, + 2609 ] } ] @@ -52262,7 +52181,7 @@ } }, { - "id": 2544, + "id": 2539, "name": "private", "kind": 1024, "kindString": "Property", @@ -52283,7 +52202,7 @@ } }, { - "id": 2576, + "id": 2571, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -52304,7 +52223,7 @@ } }, { - "id": 2608, + "id": 2603, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -52325,7 +52244,7 @@ } }, { - "id": 2577, + "id": 2572, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -52346,7 +52265,7 @@ } }, { - "id": 2595, + "id": 2590, "name": "size", "kind": 1024, "kindString": "Property", @@ -52367,7 +52286,7 @@ } }, { - "id": 2578, + "id": 2573, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -52388,7 +52307,7 @@ } }, { - "id": 2593, + "id": 2588, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -52409,7 +52328,7 @@ } }, { - "id": 2579, + "id": 2574, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -52430,7 +52349,7 @@ } }, { - "id": 2580, + "id": 2575, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -52451,7 +52370,7 @@ } }, { - "id": 2621, + "id": 2616, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -52472,7 +52391,7 @@ } }, { - "id": 2581, + "id": 2576, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -52493,7 +52412,7 @@ } }, { - "id": 2582, + "id": 2577, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -52514,7 +52433,7 @@ } }, { - "id": 2589, + "id": 2584, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -52535,7 +52454,7 @@ } }, { - "id": 2583, + "id": 2578, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -52556,7 +52475,7 @@ } }, { - "id": 2584, + "id": 2579, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -52577,7 +52496,7 @@ } }, { - "id": 2617, + "id": 2612, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -52598,7 +52517,7 @@ } }, { - "id": 2599, + "id": 2594, "name": "topics", "kind": 1024, "kindString": "Property", @@ -52622,7 +52541,7 @@ } }, { - "id": 2585, + "id": 2580, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -52643,7 +52562,7 @@ } }, { - "id": 2610, + "id": 2605, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -52664,7 +52583,7 @@ } }, { - "id": 2548, + "id": 2543, "name": "url", "kind": 1024, "kindString": "Property", @@ -52685,7 +52604,7 @@ } }, { - "id": 2607, + "id": 2602, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -52706,7 +52625,7 @@ } }, { - "id": 2594, + "id": 2589, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -52732,86 +52651,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2620, - 2616, - 2618, + 2615, + 2611, + 2613, + 2544, + 2600, + 2545, + 2546, + 2547, + 2581, + 2548, 2549, - 2605, 2550, 2551, 2552, - 2586, 2553, + 2604, + 2591, + 2614, 2554, + 2541, + 2601, 2555, 2556, + 2542, + 2587, 2557, + 2518, 2558, - 2609, - 2596, - 2619, 2559, - 2546, - 2606, 2560, 2561, - 2547, - 2592, + 2599, + 2595, + 2598, + 2596, + 2597, + 2585, + 2583, + 2540, + 2515, + 2593, 2562, - 2523, 2563, 2564, 2565, 2566, - 2604, - 2600, - 2603, - 2601, - 2602, - 2590, - 2588, - 2545, - 2520, - 2598, + 2586, 2567, 2568, 2569, + 2582, + 2517, + 2617, + 2516, 2570, + 2592, + 2519, + 2606, + 2539, 2571, - 2591, + 2603, 2572, + 2590, 2573, + 2588, 2574, - 2587, - 2522, - 2622, - 2521, 2575, - 2597, - 2524, - 2611, - 2544, + 2616, 2576, - 2608, 2577, - 2595, + 2584, 2578, - 2593, 2579, + 2612, + 2594, 2580, - 2621, - 2581, - 2582, - 2589, - 2583, - 2584, - 2617, - 2599, - 2585, - 2610, - 2548, - 2607, - 2594 + 2605, + 2543, + 2602, + 2589 ] } ] @@ -52821,7 +52740,7 @@ } }, { - "id": 2505, + "id": 2500, "name": "topics", "kind": 1024, "kindString": "Property", @@ -52845,7 +52764,7 @@ } }, { - "id": 2491, + "id": 2486, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -52865,7 +52784,7 @@ } }, { - "id": 2516, + "id": 2511, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -52894,7 +52813,7 @@ } }, { - "id": 2454, + "id": 2449, "name": "url", "kind": 1024, "kindString": "Property", @@ -52914,7 +52833,7 @@ } }, { - "id": 2513, + "id": 2508, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -52938,7 +52857,7 @@ } }, { - "id": 2630, + "id": 2625, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -52958,7 +52877,7 @@ } }, { - "id": 2500, + "id": 2495, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -52983,94 +52902,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2626, - 2517, - 2624, + 2621, + 2512, + 2619, + 2450, + 2506, + 2451, + 2452, + 2453, + 2487, + 2454, 2455, - 2511, 2456, 2457, 2458, - 2492, 2459, + 2510, + 2497, + 2620, 2460, + 2447, + 2507, 2461, 2462, + 2448, + 2414, + 2493, 2463, + 2382, 2464, - 2515, - 2502, - 2625, 2465, - 2452, - 2512, 2466, 2467, - 2453, - 2419, - 2498, + 2505, + 2501, + 2504, + 2502, + 2503, + 2491, + 2489, + 2446, + 2379, + 2499, 2468, - 2387, 2469, 2470, 2471, 2472, - 2510, - 2506, - 2509, - 2507, - 2508, - 2496, - 2494, - 2451, - 2384, - 2504, + 2492, 2473, + 2383, + 2626, 2474, 2475, + 2488, + 2381, + 2623, + 2380, 2476, + 2624, + 2498, + 2391, + 2422, + 2415, + 2445, 2477, - 2497, + 2509, 2478, - 2388, - 2631, + 2496, 2479, + 2494, 2480, - 2493, - 2386, - 2628, - 2385, + 2627, 2481, - 2629, - 2503, - 2396, - 2427, - 2420, - 2450, + 2622, 2482, - 2514, 2483, - 2501, + 2490, 2484, - 2499, 2485, - 2632, - 2486, - 2627, - 2487, - 2488, - 2495, - 2489, - 2490, - 2623, - 2518, - 2505, - 2491, - 2516, - 2454, + 2618, 2513, - 2630, - 2500 + 2500, + 2486, + 2511, + 2449, + 2508, + 2625, + 2495 ] } ] @@ -53078,7 +52997,7 @@ } }, { - "id": 1804, + "id": 1799, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -53098,7 +53017,7 @@ } }, { - "id": 1819, + "id": 1814, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -53118,7 +53037,7 @@ } }, { - "id": 1805, + "id": 1800, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -53138,7 +53057,7 @@ } }, { - "id": 1806, + "id": 1801, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -53158,7 +53077,7 @@ } }, { - "id": 2098, + "id": 2093, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -53178,7 +53097,7 @@ } }, { - "id": 1807, + "id": 1802, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -53198,7 +53117,7 @@ } }, { - "id": 1808, + "id": 1803, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -53218,7 +53137,7 @@ } }, { - "id": 1815, + "id": 1810, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -53238,7 +53157,7 @@ } }, { - "id": 1809, + "id": 1804, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -53258,7 +53177,7 @@ } }, { - "id": 1810, + "id": 1805, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -53278,7 +53197,7 @@ } }, { - "id": 2094, + "id": 2089, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -53308,7 +53227,7 @@ } }, { - "id": 1843, + "id": 1838, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -53333,14 +53252,14 @@ { "type": "reflection", "declaration": { - "id": 1844, + "id": 1839, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2087, + "id": 2082, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -53364,7 +53283,7 @@ } }, { - "id": 1978, + "id": 1973, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -53388,7 +53307,7 @@ } }, { - "id": 2085, + "id": 2080, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -53412,7 +53331,7 @@ } }, { - "id": 1916, + "id": 1911, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -53432,7 +53351,7 @@ } }, { - "id": 1972, + "id": 1967, "name": "archived", "kind": 1024, "kindString": "Property", @@ -53455,7 +53374,7 @@ } }, { - "id": 1917, + "id": 1912, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -53475,7 +53394,7 @@ } }, { - "id": 1918, + "id": 1913, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -53495,7 +53414,7 @@ } }, { - "id": 1919, + "id": 1914, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -53515,7 +53434,7 @@ } }, { - "id": 1953, + "id": 1948, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -53535,7 +53454,7 @@ } }, { - "id": 1920, + "id": 1915, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -53555,7 +53474,7 @@ } }, { - "id": 1921, + "id": 1916, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -53575,7 +53494,7 @@ } }, { - "id": 1922, + "id": 1917, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -53595,7 +53514,7 @@ } }, { - "id": 1923, + "id": 1918, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -53615,7 +53534,7 @@ } }, { - "id": 1924, + "id": 1919, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -53635,7 +53554,7 @@ } }, { - "id": 1925, + "id": 1920, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -53655,7 +53574,7 @@ } }, { - "id": 1976, + "id": 1971, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -53684,7 +53603,7 @@ } }, { - "id": 1963, + "id": 1958, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -53707,7 +53626,7 @@ } }, { - "id": 2086, + "id": 2081, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -53731,7 +53650,7 @@ } }, { - "id": 1926, + "id": 1921, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -53751,7 +53670,7 @@ } }, { - "id": 1913, + "id": 1908, "name": "description", "kind": 1024, "kindString": "Property", @@ -53780,7 +53699,7 @@ } }, { - "id": 1973, + "id": 1968, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -53803,7 +53722,7 @@ } }, { - "id": 1927, + "id": 1922, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -53823,7 +53742,7 @@ } }, { - "id": 1928, + "id": 1923, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -53843,7 +53762,7 @@ } }, { - "id": 1914, + "id": 1909, "name": "fork", "kind": 1024, "kindString": "Property", @@ -53863,7 +53782,7 @@ } }, { - "id": 1880, + "id": 1875, "name": "forks", "kind": 1024, "kindString": "Property", @@ -53883,7 +53802,7 @@ } }, { - "id": 1959, + "id": 1954, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -53903,7 +53822,7 @@ } }, { - "id": 1929, + "id": 1924, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -53923,7 +53842,7 @@ } }, { - "id": 1848, + "id": 1843, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -53943,7 +53862,7 @@ } }, { - "id": 1930, + "id": 1925, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -53963,7 +53882,7 @@ } }, { - "id": 1931, + "id": 1926, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -53983,7 +53902,7 @@ } }, { - "id": 1932, + "id": 1927, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -54003,7 +53922,7 @@ } }, { - "id": 1933, + "id": 1928, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -54023,7 +53942,7 @@ } }, { - "id": 1971, + "id": 1966, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -54046,7 +53965,7 @@ } }, { - "id": 1967, + "id": 1962, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -54069,7 +53988,7 @@ } }, { - "id": 1970, + "id": 1965, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -54089,7 +54008,7 @@ } }, { - "id": 1968, + "id": 1963, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -54112,7 +54031,7 @@ } }, { - "id": 1969, + "id": 1964, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -54135,7 +54054,7 @@ } }, { - "id": 1957, + "id": 1952, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -54164,7 +54083,7 @@ } }, { - "id": 1955, + "id": 1950, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -54184,7 +54103,7 @@ } }, { - "id": 1912, + "id": 1907, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -54204,7 +54123,7 @@ } }, { - "id": 1845, + "id": 1840, "name": "id", "kind": 1024, "kindString": "Property", @@ -54227,7 +54146,7 @@ } }, { - "id": 1965, + "id": 1960, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -54251,7 +54170,7 @@ } }, { - "id": 1934, + "id": 1929, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -54271,7 +54190,7 @@ } }, { - "id": 1935, + "id": 1930, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -54291,7 +54210,7 @@ } }, { - "id": 1936, + "id": 1931, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -54311,7 +54230,7 @@ } }, { - "id": 1937, + "id": 1932, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -54331,7 +54250,7 @@ } }, { - "id": 1938, + "id": 1933, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -54351,7 +54270,7 @@ } }, { - "id": 1958, + "id": 1953, "name": "language", "kind": 1024, "kindString": "Property", @@ -54380,7 +54299,7 @@ } }, { - "id": 1939, + "id": 1934, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -54400,7 +54319,7 @@ } }, { - "id": 1849, + "id": 1844, "name": "license", "kind": 1024, "kindString": "Property", @@ -54424,14 +54343,14 @@ { "type": "reflection", "declaration": { - "id": 1850, + "id": 1845, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1856, + "id": 1851, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -54452,7 +54371,7 @@ } }, { - "id": 1851, + "id": 1846, "name": "key", "kind": 1024, "kindString": "Property", @@ -54472,7 +54391,7 @@ } }, { - "id": 1852, + "id": 1847, "name": "name", "kind": 1024, "kindString": "Property", @@ -54492,7 +54411,7 @@ } }, { - "id": 1855, + "id": 1850, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -54512,7 +54431,7 @@ } }, { - "id": 1854, + "id": 1849, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -54541,7 +54460,7 @@ } }, { - "id": 1853, + "id": 1848, "name": "url", "kind": 1024, "kindString": "Property", @@ -54575,12 +54494,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1856, 1851, - 1852, - 1855, - 1854, - 1853 + 1846, + 1847, + 1850, + 1849, + 1848 ] } ] @@ -54590,7 +54509,7 @@ } }, { - "id": 2092, + "id": 2087, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -54611,7 +54530,7 @@ } }, { - "id": 1940, + "id": 1935, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -54631,7 +54550,7 @@ } }, { - "id": 1941, + "id": 1936, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -54651,7 +54570,7 @@ } }, { - "id": 1954, + "id": 1949, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -54680,7 +54599,7 @@ } }, { - "id": 1847, + "id": 1842, "name": "name", "kind": 1024, "kindString": "Property", @@ -54703,7 +54622,7 @@ } }, { - "id": 2089, + "id": 2084, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -54724,7 +54643,7 @@ } }, { - "id": 1846, + "id": 1841, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -54744,7 +54663,7 @@ } }, { - "id": 1942, + "id": 1937, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -54764,7 +54683,7 @@ } }, { - "id": 2090, + "id": 2085, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -54784,7 +54703,7 @@ } }, { - "id": 1964, + "id": 1959, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -54804,7 +54723,7 @@ } }, { - "id": 1857, + "id": 1852, "name": "organization", "kind": 1024, "kindString": "Property", @@ -54829,14 +54748,14 @@ { "type": "reflection", "declaration": { - "id": 1858, + "id": 1853, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1864, + "id": 1859, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -54856,7 +54775,7 @@ } }, { - "id": 1860, + "id": 1855, "name": "email", "kind": 1024, "kindString": "Property", @@ -54886,7 +54805,7 @@ } }, { - "id": 1875, + "id": 1870, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -54906,7 +54825,7 @@ } }, { - "id": 1868, + "id": 1863, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -54926,7 +54845,7 @@ } }, { - "id": 1869, + "id": 1864, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -54946,7 +54865,7 @@ } }, { - "id": 1870, + "id": 1865, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -54966,7 +54885,7 @@ } }, { - "id": 1865, + "id": 1860, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -54995,7 +54914,7 @@ } }, { - "id": 1867, + "id": 1862, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -55015,7 +54934,7 @@ } }, { - "id": 1862, + "id": 1857, "name": "id", "kind": 1024, "kindString": "Property", @@ -55035,7 +54954,7 @@ } }, { - "id": 1861, + "id": 1856, "name": "login", "kind": 1024, "kindString": "Property", @@ -55055,7 +54974,7 @@ } }, { - "id": 1859, + "id": 1854, "name": "name", "kind": 1024, "kindString": "Property", @@ -55085,7 +55004,7 @@ } }, { - "id": 1863, + "id": 1858, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55105,7 +55024,7 @@ } }, { - "id": 1873, + "id": 1868, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -55125,7 +55044,7 @@ } }, { - "id": 1876, + "id": 1871, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -55145,7 +55064,7 @@ } }, { - "id": 1874, + "id": 1869, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -55165,7 +55084,7 @@ } }, { - "id": 1878, + "id": 1873, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -55185,7 +55104,7 @@ } }, { - "id": 1879, + "id": 1874, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -55206,7 +55125,7 @@ } }, { - "id": 1871, + "id": 1866, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -55226,7 +55145,7 @@ } }, { - "id": 1872, + "id": 1867, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -55246,7 +55165,7 @@ } }, { - "id": 1877, + "id": 1872, "name": "type", "kind": 1024, "kindString": "Property", @@ -55266,7 +55185,7 @@ } }, { - "id": 1866, + "id": 1861, "name": "url", "kind": 1024, "kindString": "Property", @@ -55291,27 +55210,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1859, + 1855, + 1870, + 1863, 1864, + 1865, 1860, - 1875, + 1862, + 1857, + 1856, + 1854, + 1858, 1868, + 1871, 1869, - 1870, - 1865, - 1867, - 1862, - 1861, - 1859, - 1863, 1873, - 1876, 1874, - 1878, - 1879, - 1871, + 1866, + 1867, 1872, - 1877, - 1866 + 1861 ] } ] @@ -55321,7 +55240,7 @@ } }, { - "id": 1888, + "id": 1883, "name": "owner", "kind": 1024, "kindString": "Property", @@ -55345,14 +55264,14 @@ { "type": "reflection", "declaration": { - "id": 1889, + "id": 1884, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1895, + "id": 1890, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -55372,7 +55291,7 @@ } }, { - "id": 1891, + "id": 1886, "name": "email", "kind": 1024, "kindString": "Property", @@ -55402,7 +55321,7 @@ } }, { - "id": 1906, + "id": 1901, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -55422,7 +55341,7 @@ } }, { - "id": 1899, + "id": 1894, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -55442,7 +55361,7 @@ } }, { - "id": 1900, + "id": 1895, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -55462,7 +55381,7 @@ } }, { - "id": 1901, + "id": 1896, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -55482,7 +55401,7 @@ } }, { - "id": 1896, + "id": 1891, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -55511,7 +55430,7 @@ } }, { - "id": 1898, + "id": 1893, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -55531,7 +55450,7 @@ } }, { - "id": 1893, + "id": 1888, "name": "id", "kind": 1024, "kindString": "Property", @@ -55551,7 +55470,7 @@ } }, { - "id": 1892, + "id": 1887, "name": "login", "kind": 1024, "kindString": "Property", @@ -55571,7 +55490,7 @@ } }, { - "id": 1890, + "id": 1885, "name": "name", "kind": 1024, "kindString": "Property", @@ -55601,7 +55520,7 @@ } }, { - "id": 1894, + "id": 1889, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55621,7 +55540,7 @@ } }, { - "id": 1904, + "id": 1899, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -55641,7 +55560,7 @@ } }, { - "id": 1907, + "id": 1902, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -55661,7 +55580,7 @@ } }, { - "id": 1905, + "id": 1900, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -55681,7 +55600,7 @@ } }, { - "id": 1909, + "id": 1904, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -55701,7 +55620,7 @@ } }, { - "id": 1910, + "id": 1905, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -55722,7 +55641,7 @@ } }, { - "id": 1902, + "id": 1897, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -55742,7 +55661,7 @@ } }, { - "id": 1903, + "id": 1898, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -55762,7 +55681,7 @@ } }, { - "id": 1908, + "id": 1903, "name": "type", "kind": 1024, "kindString": "Property", @@ -55782,7 +55701,7 @@ } }, { - "id": 1897, + "id": 1892, "name": "url", "kind": 1024, "kindString": "Property", @@ -55807,27 +55726,27 @@ "title": "Properties", "kind": 1024, "children": [ + 1890, + 1886, + 1901, + 1894, 1895, + 1896, 1891, - 1906, + 1893, + 1888, + 1887, + 1885, + 1889, 1899, + 1902, 1900, - 1901, - 1896, - 1898, - 1893, - 1892, - 1890, - 1894, 1904, - 1907, 1905, - 1909, - 1910, - 1902, + 1897, + 1898, 1903, - 1908, - 1897 + 1892 ] } ] @@ -55837,7 +55756,7 @@ } }, { - "id": 1881, + "id": 1876, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -55855,14 +55774,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1882, + "id": 1877, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1883, + "id": 1878, "name": "admin", "kind": 1024, "kindString": "Property", @@ -55882,7 +55801,7 @@ } }, { - "id": 1887, + "id": 1882, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -55903,7 +55822,7 @@ } }, { - "id": 1884, + "id": 1879, "name": "pull", "kind": 1024, "kindString": "Property", @@ -55923,7 +55842,7 @@ } }, { - "id": 1886, + "id": 1881, "name": "push", "kind": 1024, "kindString": "Property", @@ -55943,7 +55862,7 @@ } }, { - "id": 1885, + "id": 1880, "name": "triage", "kind": 1024, "kindString": "Property", @@ -55969,11 +55888,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1883, - 1887, - 1884, - 1886, - 1885 + 1878, + 1882, + 1879, + 1881, + 1880 ] } ] @@ -55981,7 +55900,7 @@ } }, { - "id": 1911, + "id": 1906, "name": "private", "kind": 1024, "kindString": "Property", @@ -56004,7 +55923,7 @@ } }, { - "id": 1943, + "id": 1938, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -56024,7 +55943,7 @@ } }, { - "id": 1975, + "id": 1970, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -56053,7 +55972,7 @@ } }, { - "id": 1944, + "id": 1939, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -56073,7 +55992,7 @@ } }, { - "id": 1962, + "id": 1957, "name": "size", "kind": 1024, "kindString": "Property", @@ -56093,7 +56012,7 @@ } }, { - "id": 1945, + "id": 1940, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -56113,7 +56032,7 @@ } }, { - "id": 1960, + "id": 1955, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -56133,7 +56052,7 @@ } }, { - "id": 1946, + "id": 1941, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -56153,7 +56072,7 @@ } }, { - "id": 2093, + "id": 2088, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -56174,7 +56093,7 @@ } }, { - "id": 1947, + "id": 1942, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -56194,7 +56113,7 @@ } }, { - "id": 2088, + "id": 2083, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -56215,7 +56134,7 @@ } }, { - "id": 1948, + "id": 1943, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -56235,7 +56154,7 @@ } }, { - "id": 1949, + "id": 1944, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -56255,7 +56174,7 @@ } }, { - "id": 1956, + "id": 1951, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -56275,7 +56194,7 @@ } }, { - "id": 1950, + "id": 1945, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -56295,7 +56214,7 @@ } }, { - "id": 1951, + "id": 1946, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -56315,7 +56234,7 @@ } }, { - "id": 2084, + "id": 2079, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -56336,7 +56255,7 @@ } }, { - "id": 1979, + "id": 1974, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -56361,14 +56280,14 @@ { "type": "reflection", "declaration": { - "id": 1980, + "id": 1975, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2081, + "id": 2076, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -56389,7 +56308,7 @@ } }, { - "id": 2077, + "id": 2072, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -56410,7 +56329,7 @@ } }, { - "id": 2079, + "id": 2074, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -56431,7 +56350,7 @@ } }, { - "id": 2010, + "id": 2005, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -56452,7 +56371,7 @@ } }, { - "id": 2066, + "id": 2061, "name": "archived", "kind": 1024, "kindString": "Property", @@ -56473,7 +56392,7 @@ } }, { - "id": 2011, + "id": 2006, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -56494,7 +56413,7 @@ } }, { - "id": 2012, + "id": 2007, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -56515,7 +56434,7 @@ } }, { - "id": 2013, + "id": 2008, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -56536,7 +56455,7 @@ } }, { - "id": 2047, + "id": 2042, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -56557,7 +56476,7 @@ } }, { - "id": 2014, + "id": 2009, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -56578,7 +56497,7 @@ } }, { - "id": 2015, + "id": 2010, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -56599,7 +56518,7 @@ } }, { - "id": 2016, + "id": 2011, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -56620,7 +56539,7 @@ } }, { - "id": 2017, + "id": 2012, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -56641,7 +56560,7 @@ } }, { - "id": 2018, + "id": 2013, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -56662,7 +56581,7 @@ } }, { - "id": 2019, + "id": 2014, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -56683,7 +56602,7 @@ } }, { - "id": 2070, + "id": 2065, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -56704,7 +56623,7 @@ } }, { - "id": 2057, + "id": 2052, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -56725,7 +56644,7 @@ } }, { - "id": 2080, + "id": 2075, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -56746,7 +56665,7 @@ } }, { - "id": 2020, + "id": 2015, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -56767,7 +56686,7 @@ } }, { - "id": 2007, + "id": 2002, "name": "description", "kind": 1024, "kindString": "Property", @@ -56788,7 +56707,7 @@ } }, { - "id": 2067, + "id": 2062, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -56809,7 +56728,7 @@ } }, { - "id": 2021, + "id": 2016, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -56830,7 +56749,7 @@ } }, { - "id": 2022, + "id": 2017, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -56851,7 +56770,7 @@ } }, { - "id": 2008, + "id": 2003, "name": "fork", "kind": 1024, "kindString": "Property", @@ -56872,7 +56791,7 @@ } }, { - "id": 2053, + "id": 2048, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -56893,7 +56812,7 @@ } }, { - "id": 2023, + "id": 2018, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -56914,7 +56833,7 @@ } }, { - "id": 1984, + "id": 1979, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -56935,7 +56854,7 @@ } }, { - "id": 2024, + "id": 2019, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -56956,7 +56875,7 @@ } }, { - "id": 2025, + "id": 2020, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -56977,7 +56896,7 @@ } }, { - "id": 2026, + "id": 2021, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -56998,7 +56917,7 @@ } }, { - "id": 2027, + "id": 2022, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -57019,7 +56938,7 @@ } }, { - "id": 2065, + "id": 2060, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -57040,7 +56959,7 @@ } }, { - "id": 2061, + "id": 2056, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -57061,7 +56980,7 @@ } }, { - "id": 2064, + "id": 2059, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -57082,7 +57001,7 @@ } }, { - "id": 2062, + "id": 2057, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -57103,7 +57022,7 @@ } }, { - "id": 2063, + "id": 2058, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -57124,7 +57043,7 @@ } }, { - "id": 2051, + "id": 2046, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -57145,7 +57064,7 @@ } }, { - "id": 2049, + "id": 2044, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -57166,7 +57085,7 @@ } }, { - "id": 2006, + "id": 2001, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -57187,7 +57106,7 @@ } }, { - "id": 1981, + "id": 1976, "name": "id", "kind": 1024, "kindString": "Property", @@ -57208,7 +57127,7 @@ } }, { - "id": 2059, + "id": 2054, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -57229,7 +57148,7 @@ } }, { - "id": 2028, + "id": 2023, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -57250,7 +57169,7 @@ } }, { - "id": 2029, + "id": 2024, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -57271,7 +57190,7 @@ } }, { - "id": 2030, + "id": 2025, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -57292,7 +57211,7 @@ } }, { - "id": 2031, + "id": 2026, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -57313,7 +57232,7 @@ } }, { - "id": 2032, + "id": 2027, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -57334,7 +57253,7 @@ } }, { - "id": 2052, + "id": 2047, "name": "language", "kind": 1024, "kindString": "Property", @@ -57355,7 +57274,7 @@ } }, { - "id": 2033, + "id": 2028, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -57376,7 +57295,7 @@ } }, { - "id": 2034, + "id": 2029, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -57397,7 +57316,7 @@ } }, { - "id": 2035, + "id": 2030, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -57418,7 +57337,7 @@ } }, { - "id": 2048, + "id": 2043, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -57439,7 +57358,7 @@ } }, { - "id": 1983, + "id": 1978, "name": "name", "kind": 1024, "kindString": "Property", @@ -57460,7 +57379,7 @@ } }, { - "id": 2083, + "id": 2078, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -57481,7 +57400,7 @@ } }, { - "id": 1982, + "id": 1977, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -57502,7 +57421,7 @@ } }, { - "id": 2036, + "id": 2031, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -57523,7 +57442,7 @@ } }, { - "id": 2058, + "id": 2053, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -57544,7 +57463,7 @@ } }, { - "id": 1985, + "id": 1980, "name": "owner", "kind": 1024, "kindString": "Property", @@ -57562,14 +57481,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1986, + "id": 1981, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1990, + "id": 1985, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -57590,7 +57509,7 @@ } }, { - "id": 2001, + "id": 1996, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -57611,7 +57530,7 @@ } }, { - "id": 1994, + "id": 1989, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -57632,7 +57551,7 @@ } }, { - "id": 1995, + "id": 1990, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -57653,7 +57572,7 @@ } }, { - "id": 1996, + "id": 1991, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -57674,7 +57593,7 @@ } }, { - "id": 1991, + "id": 1986, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -57695,7 +57614,7 @@ } }, { - "id": 1993, + "id": 1988, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -57716,7 +57635,7 @@ } }, { - "id": 1988, + "id": 1983, "name": "id", "kind": 1024, "kindString": "Property", @@ -57737,7 +57656,7 @@ } }, { - "id": 1987, + "id": 1982, "name": "login", "kind": 1024, "kindString": "Property", @@ -57758,7 +57677,7 @@ } }, { - "id": 1989, + "id": 1984, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -57779,7 +57698,7 @@ } }, { - "id": 1999, + "id": 1994, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -57800,7 +57719,7 @@ } }, { - "id": 2002, + "id": 1997, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -57821,7 +57740,7 @@ } }, { - "id": 2000, + "id": 1995, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -57842,7 +57761,7 @@ } }, { - "id": 2004, + "id": 1999, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -57863,7 +57782,7 @@ } }, { - "id": 1997, + "id": 1992, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -57884,7 +57803,7 @@ } }, { - "id": 1998, + "id": 1993, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -57905,7 +57824,7 @@ } }, { - "id": 2003, + "id": 1998, "name": "type", "kind": 1024, "kindString": "Property", @@ -57926,7 +57845,7 @@ } }, { - "id": 1992, + "id": 1987, "name": "url", "kind": 1024, "kindString": "Property", @@ -57952,24 +57871,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1990, - 2001, - 1994, - 1995, + 1985, 1996, + 1989, + 1990, 1991, - 1993, + 1986, 1988, - 1987, - 1989, - 1999, - 2002, - 2000, - 2004, + 1983, + 1982, + 1984, + 1994, 1997, + 1995, + 1999, + 1992, + 1993, 1998, - 2003, - 1992 + 1987 ] } ] @@ -57977,7 +57896,7 @@ } }, { - "id": 2072, + "id": 2067, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -57995,14 +57914,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2073, + "id": 2068, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2074, + "id": 2069, "name": "admin", "kind": 1024, "kindString": "Property", @@ -58023,7 +57942,7 @@ } }, { - "id": 2076, + "id": 2071, "name": "pull", "kind": 1024, "kindString": "Property", @@ -58044,7 +57963,7 @@ } }, { - "id": 2075, + "id": 2070, "name": "push", "kind": 1024, "kindString": "Property", @@ -58070,9 +57989,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2074, - 2076, - 2075 + 2069, + 2071, + 2070 ] } ] @@ -58080,7 +57999,7 @@ } }, { - "id": 2005, + "id": 2000, "name": "private", "kind": 1024, "kindString": "Property", @@ -58101,7 +58020,7 @@ } }, { - "id": 2037, + "id": 2032, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -58122,7 +58041,7 @@ } }, { - "id": 2069, + "id": 2064, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -58143,7 +58062,7 @@ } }, { - "id": 2038, + "id": 2033, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -58164,7 +58083,7 @@ } }, { - "id": 2056, + "id": 2051, "name": "size", "kind": 1024, "kindString": "Property", @@ -58185,7 +58104,7 @@ } }, { - "id": 2039, + "id": 2034, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -58206,7 +58125,7 @@ } }, { - "id": 2054, + "id": 2049, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -58227,7 +58146,7 @@ } }, { - "id": 2040, + "id": 2035, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -58248,7 +58167,7 @@ } }, { - "id": 2041, + "id": 2036, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -58269,7 +58188,7 @@ } }, { - "id": 2082, + "id": 2077, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -58290,7 +58209,7 @@ } }, { - "id": 2042, + "id": 2037, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -58311,7 +58230,7 @@ } }, { - "id": 2043, + "id": 2038, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -58332,7 +58251,7 @@ } }, { - "id": 2050, + "id": 2045, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -58353,7 +58272,7 @@ } }, { - "id": 2044, + "id": 2039, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -58374,7 +58293,7 @@ } }, { - "id": 2045, + "id": 2040, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -58395,7 +58314,7 @@ } }, { - "id": 2078, + "id": 2073, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -58416,7 +58335,7 @@ } }, { - "id": 2060, + "id": 2055, "name": "topics", "kind": 1024, "kindString": "Property", @@ -58440,7 +58359,7 @@ } }, { - "id": 2046, + "id": 2041, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -58461,7 +58380,7 @@ } }, { - "id": 2071, + "id": 2066, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -58482,7 +58401,7 @@ } }, { - "id": 2009, + "id": 2004, "name": "url", "kind": 1024, "kindString": "Property", @@ -58503,7 +58422,7 @@ } }, { - "id": 2068, + "id": 2063, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -58524,7 +58443,7 @@ } }, { - "id": 2055, + "id": 2050, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -58550,86 +58469,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2081, - 2077, - 2079, + 2076, + 2072, + 2074, + 2005, + 2061, + 2006, + 2007, + 2008, + 2042, + 2009, 2010, - 2066, 2011, 2012, 2013, - 2047, 2014, + 2065, + 2052, + 2075, 2015, + 2002, + 2062, 2016, 2017, + 2003, + 2048, 2018, + 1979, 2019, - 2070, - 2057, - 2080, 2020, - 2007, - 2067, 2021, 2022, - 2008, - 2053, + 2060, + 2056, + 2059, + 2057, + 2058, + 2046, + 2044, + 2001, + 1976, + 2054, 2023, - 1984, 2024, 2025, 2026, 2027, - 2065, - 2061, - 2064, - 2062, - 2063, - 2051, - 2049, - 2006, - 1981, - 2059, + 2047, 2028, 2029, 2030, + 2043, + 1978, + 2078, + 1977, 2031, + 2053, + 1980, + 2067, + 2000, 2032, - 2052, + 2064, 2033, + 2051, 2034, + 2049, 2035, - 2048, - 1983, - 2083, - 1982, 2036, - 2058, - 1985, - 2072, - 2005, + 2077, 2037, - 2069, 2038, - 2056, + 2045, 2039, - 2054, 2040, + 2073, + 2055, 2041, - 2082, - 2042, - 2043, - 2050, - 2044, - 2045, - 2078, - 2060, - 2046, - 2071, - 2009, - 2068, - 2055 + 2066, + 2004, + 2063, + 2050 ] } ] @@ -58639,7 +58558,7 @@ } }, { - "id": 1966, + "id": 1961, "name": "topics", "kind": 1024, "kindString": "Property", @@ -58663,7 +58582,7 @@ } }, { - "id": 1952, + "id": 1947, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -58683,7 +58602,7 @@ } }, { - "id": 1977, + "id": 1972, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -58712,7 +58631,7 @@ } }, { - "id": 1915, + "id": 1910, "name": "url", "kind": 1024, "kindString": "Property", @@ -58732,7 +58651,7 @@ } }, { - "id": 1974, + "id": 1969, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -58756,7 +58675,7 @@ } }, { - "id": 2091, + "id": 2086, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -58776,7 +58695,7 @@ } }, { - "id": 1961, + "id": 1956, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -58801,94 +58720,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2087, - 1978, - 2085, + 2082, + 1973, + 2080, + 1911, + 1967, + 1912, + 1913, + 1914, + 1948, + 1915, 1916, - 1972, 1917, 1918, 1919, - 1953, 1920, + 1971, + 1958, + 2081, 1921, + 1908, + 1968, 1922, 1923, + 1909, + 1875, + 1954, 1924, + 1843, 1925, - 1976, - 1963, - 2086, 1926, - 1913, - 1973, 1927, 1928, - 1914, - 1880, - 1959, + 1966, + 1962, + 1965, + 1963, + 1964, + 1952, + 1950, + 1907, + 1840, + 1960, 1929, - 1848, 1930, 1931, 1932, 1933, - 1971, - 1967, - 1970, - 1968, - 1969, - 1957, - 1955, - 1912, - 1845, - 1965, + 1953, 1934, + 1844, + 2087, 1935, 1936, + 1949, + 1842, + 2084, + 1841, 1937, + 2085, + 1959, + 1852, + 1883, + 1876, + 1906, 1938, - 1958, + 1970, 1939, - 1849, - 2092, + 1957, 1940, + 1955, 1941, - 1954, - 1847, - 2089, - 1846, + 2088, 1942, - 2090, - 1964, - 1857, - 1888, - 1881, - 1911, + 2083, 1943, - 1975, 1944, - 1962, + 1951, 1945, - 1960, 1946, - 2093, - 1947, - 2088, - 1948, - 1949, - 1956, - 1950, - 1951, - 2084, - 1979, - 1966, - 1952, - 1977, - 1915, + 2079, 1974, - 2091, - 1961 + 1961, + 1947, + 1972, + 1910, + 1969, + 2086, + 1956 ] } ] @@ -58898,7 +58817,7 @@ } }, { - "id": 1825, + "id": 1820, "name": "topics", "kind": 1024, "kindString": "Property", @@ -58922,7 +58841,7 @@ } }, { - "id": 1811, + "id": 1806, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -58942,7 +58861,7 @@ } }, { - "id": 1836, + "id": 1831, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -58962,7 +58881,7 @@ } }, { - "id": 1774, + "id": 1769, "name": "url", "kind": 1024, "kindString": "Property", @@ -58982,7 +58901,7 @@ } }, { - "id": 1833, + "id": 1828, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -59006,7 +58925,7 @@ } }, { - "id": 2636, + "id": 2631, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -59026,7 +58945,7 @@ } }, { - "id": 1820, + "id": 1815, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -59051,98 +58970,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2097, - 1842, - 2095, - 2637, + 2092, + 1837, + 2090, + 2632, + 1770, + 1826, + 1771, + 1772, + 1773, + 1807, + 2633, + 1774, 1775, - 1831, 1776, 1777, 1778, - 1812, - 2638, 1779, + 1830, + 1817, + 2091, 1780, + 1767, + 1827, 1781, 1782, + 1768, + 2628, + 1813, 1783, + 1741, 1784, - 1835, - 1822, - 2096, 1785, - 1772, - 1832, 1786, 1787, - 1773, - 2633, - 1818, + 1825, + 1821, + 1824, + 1822, + 1823, + 1811, + 1809, + 1766, + 1738, + 1819, 1788, - 1746, 1789, 1790, 1791, 1792, - 1830, - 1826, - 1829, - 1827, - 1828, - 1816, - 1814, - 1771, - 1743, - 1824, + 1812, 1793, + 2095, + 2629, 1794, 1795, + 1808, + 1740, + 2094, + 1739, 1796, + 2630, + 1818, + 2103, + 1742, + 2126, + 1832, + 1765, 1797, - 1817, + 1829, 1798, - 2100, - 2634, + 2639, + 1816, + 2377, 1799, + 1814, 1800, - 1813, - 1745, - 2099, - 1744, 1801, - 2635, - 1823, - 2108, - 1747, - 2131, - 1837, - 1770, + 2093, 1802, - 1834, 1803, - 2644, - 1821, - 2382, + 1810, 1804, - 1819, 1805, + 2089, + 1838, + 1820, 1806, - 2098, - 1807, - 1808, - 1815, - 1809, - 1810, - 2094, - 1843, - 1825, - 1811, - 1836, - 1774, - 1833, - 2636, - 1820 + 1831, + 1769, + 1828, + 2631, + 1815 ] } ] @@ -59150,7 +59069,7 @@ } }, { - "id": 1740, + "id": 1735, "name": "forks", "kind": 1024, "kindString": "Property", @@ -59167,12 +59086,12 @@ ], "type": { "type": "reference", - "id": 2873, + "id": 2870, "name": "ForkManager" } }, { - "id": 1739, + "id": 1734, "name": "id", "kind": 1024, "kindString": "Property", @@ -59193,7 +59112,7 @@ } }, { - "id": 2658, + "id": 2653, "name": "allowMergeCommit", "kind": 262144, "kindString": "Accessor", @@ -59209,7 +59128,7 @@ ], "getSignature": [ { - "id": 2659, + "id": 2654, "name": "allowMergeCommit", "kind": 524288, "kindString": "Get signature", @@ -59231,7 +59150,7 @@ ] }, { - "id": 2660, + "id": 2655, "name": "allowRebaseMerge", "kind": 262144, "kindString": "Accessor", @@ -59247,7 +59166,7 @@ ], "getSignature": [ { - "id": 2661, + "id": 2656, "name": "allowRebaseMerge", "kind": 524288, "kindString": "Get signature", @@ -59269,7 +59188,7 @@ ] }, { - "id": 2662, + "id": 2657, "name": "allowSquashMerge", "kind": 262144, "kindString": "Accessor", @@ -59285,7 +59204,7 @@ ], "getSignature": [ { - "id": 2663, + "id": 2658, "name": "allowSquashMerge", "kind": 524288, "kindString": "Get signature", @@ -59307,7 +59226,7 @@ ] }, { - "id": 2664, + "id": 2659, "name": "anonymusAccessEnabled", "kind": 262144, "kindString": "Accessor", @@ -59323,7 +59242,7 @@ ], "getSignature": [ { - "id": 2665, + "id": 2660, "name": "anonymusAccessEnabled", "kind": 524288, "kindString": "Get signature", @@ -59345,7 +59264,7 @@ ] }, { - "id": 2666, + "id": 2661, "name": "archiveUrl", "kind": 262144, "kindString": "Accessor", @@ -59361,7 +59280,7 @@ ], "getSignature": [ { - "id": 2667, + "id": 2662, "name": "archiveUrl", "kind": 524288, "kindString": "Get signature", @@ -59374,7 +59293,7 @@ ] }, { - "id": 2668, + "id": 2663, "name": "archived", "kind": 262144, "kindString": "Accessor", @@ -59390,7 +59309,7 @@ ], "getSignature": [ { - "id": 2669, + "id": 2664, "name": "archived", "kind": 524288, "kindString": "Get signature", @@ -59403,7 +59322,7 @@ ] }, { - "id": 2670, + "id": 2665, "name": "assigneesUrl", "kind": 262144, "kindString": "Accessor", @@ -59419,7 +59338,7 @@ ], "getSignature": [ { - "id": 2671, + "id": 2666, "name": "assigneesUrl", "kind": 524288, "kindString": "Get signature", @@ -59432,7 +59351,7 @@ ] }, { - "id": 2672, + "id": 2667, "name": "blobsUrl", "kind": 262144, "kindString": "Accessor", @@ -59448,7 +59367,7 @@ ], "getSignature": [ { - "id": 2673, + "id": 2668, "name": "blobsUrl", "kind": 524288, "kindString": "Get signature", @@ -59461,7 +59380,7 @@ ] }, { - "id": 2674, + "id": 2669, "name": "branchesUrl", "kind": 262144, "kindString": "Accessor", @@ -59477,7 +59396,7 @@ ], "getSignature": [ { - "id": 2675, + "id": 2670, "name": "branchesUrl", "kind": 524288, "kindString": "Get signature", @@ -59490,7 +59409,7 @@ ] }, { - "id": 2676, + "id": 2671, "name": "cloneUrl", "kind": 262144, "kindString": "Accessor", @@ -59506,7 +59425,7 @@ ], "getSignature": [ { - "id": 2677, + "id": 2672, "name": "cloneUrl", "kind": 524288, "kindString": "Get signature", @@ -59519,7 +59438,7 @@ ] }, { - "id": 2678, + "id": 2673, "name": "codeOfConduct", "kind": 262144, "kindString": "Accessor", @@ -59535,7 +59454,7 @@ ], "getSignature": [ { - "id": 2679, + "id": 2674, "name": "codeOfConduct", "kind": 524288, "kindString": "Get signature", @@ -59550,14 +59469,14 @@ { "type": "reflection", "declaration": { - "id": 2680, + "id": 2675, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2684, + "id": 2679, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -59586,7 +59505,7 @@ } }, { - "id": 2682, + "id": 2677, "name": "key", "kind": 1024, "kindString": "Property", @@ -59606,7 +59525,7 @@ } }, { - "id": 2683, + "id": 2678, "name": "name", "kind": 1024, "kindString": "Property", @@ -59626,7 +59545,7 @@ } }, { - "id": 2681, + "id": 2676, "name": "url", "kind": 1024, "kindString": "Property", @@ -59651,10 +59570,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2684, - 2682, - 2683, - 2681 + 2679, + 2677, + 2678, + 2676 ] } ] @@ -59666,7 +59585,7 @@ ] }, { - "id": 2685, + "id": 2680, "name": "collaboratorsUrl", "kind": 262144, "kindString": "Accessor", @@ -59682,7 +59601,7 @@ ], "getSignature": [ { - "id": 2686, + "id": 2681, "name": "collaboratorsUrl", "kind": 524288, "kindString": "Get signature", @@ -59695,7 +59614,7 @@ ] }, { - "id": 2687, + "id": 2682, "name": "commentsUrl", "kind": 262144, "kindString": "Accessor", @@ -59711,7 +59630,7 @@ ], "getSignature": [ { - "id": 2688, + "id": 2683, "name": "commentsUrl", "kind": 524288, "kindString": "Get signature", @@ -59724,7 +59643,7 @@ ] }, { - "id": 2689, + "id": 2684, "name": "commitsUrl", "kind": 262144, "kindString": "Accessor", @@ -59740,7 +59659,7 @@ ], "getSignature": [ { - "id": 2690, + "id": 2685, "name": "commitsUrl", "kind": 524288, "kindString": "Get signature", @@ -59753,7 +59672,7 @@ ] }, { - "id": 2691, + "id": 2686, "name": "compareUrl", "kind": 262144, "kindString": "Accessor", @@ -59769,7 +59688,7 @@ ], "getSignature": [ { - "id": 2692, + "id": 2687, "name": "compareUrl", "kind": 524288, "kindString": "Get signature", @@ -59782,7 +59701,7 @@ ] }, { - "id": 2693, + "id": 2688, "name": "contentsUrl", "kind": 262144, "kindString": "Accessor", @@ -59798,7 +59717,7 @@ ], "getSignature": [ { - "id": 2694, + "id": 2689, "name": "contentsUrl", "kind": 524288, "kindString": "Get signature", @@ -59811,7 +59730,7 @@ ] }, { - "id": 2695, + "id": 2690, "name": "contributorsUrl", "kind": 262144, "kindString": "Accessor", @@ -59827,7 +59746,7 @@ ], "getSignature": [ { - "id": 2696, + "id": 2691, "name": "contributorsUrl", "kind": 524288, "kindString": "Get signature", @@ -59840,7 +59759,7 @@ ] }, { - "id": 2697, + "id": 2692, "name": "createdAt", "kind": 262144, "kindString": "Accessor", @@ -59856,7 +59775,7 @@ ], "getSignature": [ { - "id": 2698, + "id": 2693, "name": "createdAt", "kind": 524288, "kindString": "Get signature", @@ -59869,7 +59788,36 @@ ] }, { - "id": 2654, + "id": 2694, + "name": "defaultBranch", + "kind": 262144, + "kindString": "Accessor", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/repo.ts", + "line": 101, + "character": 26 + } + ], + "getSignature": [ + { + "id": 2695, + "name": "defaultBranch", + "kind": 524288, + "kindString": "Get signature", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ] + }, + { + "id": 2649, "name": "fork", "kind": 262144, "kindString": "Accessor", @@ -59885,7 +59833,7 @@ ], "getSignature": [ { - "id": 2655, + "id": 2650, "name": "fork", "kind": 524288, "kindString": "Get signature", @@ -59898,7 +59846,7 @@ ] }, { - "id": 2652, + "id": 2647, "name": "forkCount", "kind": 262144, "kindString": "Accessor", @@ -59914,7 +59862,7 @@ ], "getSignature": [ { - "id": 2653, + "id": 2648, "name": "forkCount", "kind": 524288, "kindString": "Get signature", @@ -59927,7 +59875,7 @@ ] }, { - "id": 2656, + "id": 2651, "name": "fullName", "kind": 262144, "kindString": "Accessor", @@ -59943,7 +59891,7 @@ ], "getSignature": [ { - "id": 2657, + "id": 2652, "name": "fullName", "kind": 524288, "kindString": "Get signature", @@ -59961,44 +59909,45 @@ "title": "Constructors", "kind": 512, "children": [ - 825 + 820 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2699, - 1741, - 1740, - 1739 + 2696, + 1736, + 1735, + 1734 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2658, - 2660, - 2662, - 2664, - 2666, - 2668, - 2670, - 2672, - 2674, - 2676, - 2678, - 2685, - 2687, - 2689, - 2691, - 2693, - 2695, - 2697, - 2654, - 2652, - 2656 + 2653, + 2655, + 2657, + 2659, + 2661, + 2663, + 2665, + 2667, + 2669, + 2671, + 2673, + 2680, + 2682, + 2684, + 2686, + 2688, + 2690, + 2692, + 2694, + 2649, + 2647, + 2651 ] } ], @@ -60018,28 +59967,28 @@ ] }, { - "id": 2895, + "id": 2892, "name": "RepoManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2896, + "id": 2893, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2897, + "id": 2894, "name": "new RepoManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2898, + "id": 2895, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -60047,14 +59996,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2899, + "id": 2896, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2900, + "id": 2897, "name": "client", "kind": 1024, "kindString": "Property", @@ -60073,7 +60022,7 @@ } }, { - "id": 2901, + "id": 2898, "name": "url", "kind": 1024, "kindString": "Property", @@ -60096,8 +60045,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2900, - 2901 + 2897, + 2898 ] } ] @@ -60107,24 +60056,24 @@ ], "type": { "type": "reference", - "id": 2895, + "id": 2892, "name": "RepoManager" }, "overwrites": { "type": "reference", - "id": 2837, + "id": 2834, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2836, + "id": 2833, "name": "Manager.constructor" } }, { - "id": 2902, + "id": 2899, "name": "client", "kind": 1024, "kindString": "Property", @@ -60143,12 +60092,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2842, + "id": 2839, "name": "Manager.client" } }, { - "id": 2903, + "id": 2900, "name": "url", "kind": 1024, "kindString": "Property", @@ -60168,7 +60117,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2843, + "id": 2840, "name": "Manager.url" } } @@ -60178,15 +60127,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2896 + 2893 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2902, - 2903 + 2899, + 2900 ] } ], @@ -60200,13 +60149,13 @@ "extendedTypes": [ { "type": "reference", - "id": 2835, + "id": 2832, "name": "Manager" } ] }, { - "id": 2700, + "id": 2697, "name": "User", "kind": 128, "kindString": "Class", @@ -60216,21 +60165,21 @@ }, "children": [ { - "id": 2701, + "id": 2698, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2702, + "id": 2699, "name": "new User", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2703, + "id": 2700, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -60241,14 +60190,14 @@ { "type": "reflection", "declaration": { - "id": 2704, + "id": 2701, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2708, + "id": 2705, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -60268,7 +60217,7 @@ } }, { - "id": 2729, + "id": 2726, "name": "bio", "kind": 1024, "kindString": "Property", @@ -60297,7 +60246,7 @@ } }, { - "id": 2725, + "id": 2722, "name": "blog", "kind": 1024, "kindString": "Property", @@ -60326,7 +60275,7 @@ } }, { - "id": 2750, + "id": 2747, "name": "business_plus", "kind": 1024, "kindString": "Property", @@ -60347,7 +60296,7 @@ } }, { - "id": 2741, + "id": 2738, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -60367,7 +60316,7 @@ } }, { - "id": 2724, + "id": 2721, "name": "company", "kind": 1024, "kindString": "Property", @@ -60396,7 +60345,7 @@ } }, { - "id": 2735, + "id": 2732, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -60416,7 +60365,7 @@ } }, { - "id": 2740, + "id": 2737, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -60436,7 +60385,7 @@ } }, { - "id": 2727, + "id": 2724, "name": "email", "kind": 1024, "kindString": "Property", @@ -60465,7 +60414,7 @@ } }, { - "id": 2719, + "id": 2716, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -60485,7 +60434,7 @@ } }, { - "id": 2733, + "id": 2730, "name": "followers", "kind": 1024, "kindString": "Property", @@ -60505,7 +60454,7 @@ } }, { - "id": 2712, + "id": 2709, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -60525,7 +60474,7 @@ } }, { - "id": 2734, + "id": 2731, "name": "following", "kind": 1024, "kindString": "Property", @@ -60545,7 +60494,7 @@ } }, { - "id": 2713, + "id": 2710, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -60565,7 +60514,7 @@ } }, { - "id": 2714, + "id": 2711, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -60585,7 +60534,7 @@ } }, { - "id": 2709, + "id": 2706, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -60614,7 +60563,7 @@ } }, { - "id": 2728, + "id": 2725, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -60643,7 +60592,7 @@ } }, { - "id": 2711, + "id": 2708, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -60663,7 +60612,7 @@ } }, { - "id": 2706, + "id": 2703, "name": "id", "kind": 1024, "kindString": "Property", @@ -60683,7 +60632,7 @@ } }, { - "id": 2751, + "id": 2748, "name": "ldap_dn", "kind": 1024, "kindString": "Property", @@ -60704,7 +60653,7 @@ } }, { - "id": 2726, + "id": 2723, "name": "location", "kind": 1024, "kindString": "Property", @@ -60733,7 +60682,7 @@ } }, { - "id": 2705, + "id": 2702, "name": "login", "kind": 1024, "kindString": "Property", @@ -60753,7 +60702,7 @@ } }, { - "id": 2723, + "id": 2720, "name": "name", "kind": 1024, "kindString": "Property", @@ -60782,7 +60731,7 @@ } }, { - "id": 2707, + "id": 2704, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -60802,7 +60751,7 @@ } }, { - "id": 2717, + "id": 2714, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -60822,7 +60771,7 @@ } }, { - "id": 2739, + "id": 2736, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -60842,7 +60791,7 @@ } }, { - "id": 2743, + "id": 2740, "name": "plan", "kind": 1024, "kindString": "Property", @@ -60860,14 +60809,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2744, + "id": 2741, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2745, + "id": 2742, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -60887,7 +60836,7 @@ } }, { - "id": 2746, + "id": 2743, "name": "name", "kind": 1024, "kindString": "Property", @@ -60907,7 +60856,7 @@ } }, { - "id": 2748, + "id": 2745, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -60927,7 +60876,7 @@ } }, { - "id": 2747, + "id": 2744, "name": "space", "kind": 1024, "kindString": "Property", @@ -60952,10 +60901,10 @@ "title": "Properties", "kind": 1024, "children": [ + 2742, + 2743, 2745, - 2746, - 2748, - 2747 + 2744 ] } ] @@ -60963,7 +60912,7 @@ } }, { - "id": 2737, + "id": 2734, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -60983,7 +60932,7 @@ } }, { - "id": 2732, + "id": 2729, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -61003,7 +60952,7 @@ } }, { - "id": 2731, + "id": 2728, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -61023,7 +60972,7 @@ } }, { - "id": 2720, + "id": 2717, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -61043,7 +60992,7 @@ } }, { - "id": 2718, + "id": 2715, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -61063,7 +61012,7 @@ } }, { - "id": 2722, + "id": 2719, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -61083,7 +61032,7 @@ } }, { - "id": 2715, + "id": 2712, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -61103,7 +61052,7 @@ } }, { - "id": 2716, + "id": 2713, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -61123,7 +61072,7 @@ } }, { - "id": 2749, + "id": 2746, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -61153,7 +61102,7 @@ } }, { - "id": 2738, + "id": 2735, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -61173,7 +61122,7 @@ } }, { - "id": 2730, + "id": 2727, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -61203,7 +61152,7 @@ } }, { - "id": 2742, + "id": 2739, "name": "two_factor_authentication", "kind": 1024, "kindString": "Property", @@ -61223,7 +61172,7 @@ } }, { - "id": 2721, + "id": 2718, "name": "type", "kind": 1024, "kindString": "Property", @@ -61243,7 +61192,7 @@ } }, { - "id": 2736, + "id": 2733, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -61263,7 +61212,7 @@ } }, { - "id": 2710, + "id": 2707, "name": "url", "kind": 1024, "kindString": "Property", @@ -61288,48 +61237,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2708, - 2729, - 2725, - 2750, - 2741, + 2705, + 2726, + 2722, + 2747, + 2738, + 2721, + 2732, + 2737, 2724, - 2735, - 2740, - 2727, - 2719, - 2733, - 2712, - 2734, - 2713, - 2714, + 2716, + 2730, 2709, - 2728, + 2731, + 2710, 2711, 2706, - 2751, - 2726, - 2705, + 2725, + 2708, + 2703, + 2748, 2723, - 2707, + 2702, + 2720, + 2704, + 2714, + 2736, + 2740, + 2734, + 2729, + 2728, 2717, + 2715, + 2719, + 2712, + 2713, + 2746, + 2735, + 2727, 2739, - 2743, - 2737, - 2732, - 2731, - 2720, 2718, - 2722, - 2715, - 2716, - 2749, - 2738, - 2730, - 2742, - 2721, - 2736, - 2710 + 2733, + 2707 ] } ] @@ -61338,14 +61287,14 @@ { "type": "reflection", "declaration": { - "id": 2752, + "id": 2749, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2756, + "id": 2753, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -61365,7 +61314,7 @@ } }, { - "id": 2777, + "id": 2774, "name": "bio", "kind": 1024, "kindString": "Property", @@ -61394,7 +61343,7 @@ } }, { - "id": 2773, + "id": 2770, "name": "blog", "kind": 1024, "kindString": "Property", @@ -61423,7 +61372,7 @@ } }, { - "id": 2796, + "id": 2793, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -61444,7 +61393,7 @@ } }, { - "id": 2772, + "id": 2769, "name": "company", "kind": 1024, "kindString": "Property", @@ -61473,7 +61422,7 @@ } }, { - "id": 2783, + "id": 2780, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -61493,7 +61442,7 @@ } }, { - "id": 2795, + "id": 2792, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -61514,7 +61463,7 @@ } }, { - "id": 2775, + "id": 2772, "name": "email", "kind": 1024, "kindString": "Property", @@ -61543,7 +61492,7 @@ } }, { - "id": 2767, + "id": 2764, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -61563,7 +61512,7 @@ } }, { - "id": 2781, + "id": 2778, "name": "followers", "kind": 1024, "kindString": "Property", @@ -61583,7 +61532,7 @@ } }, { - "id": 2760, + "id": 2757, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -61603,7 +61552,7 @@ } }, { - "id": 2782, + "id": 2779, "name": "following", "kind": 1024, "kindString": "Property", @@ -61623,7 +61572,7 @@ } }, { - "id": 2761, + "id": 2758, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -61643,7 +61592,7 @@ } }, { - "id": 2762, + "id": 2759, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -61663,7 +61612,7 @@ } }, { - "id": 2757, + "id": 2754, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -61692,7 +61641,7 @@ } }, { - "id": 2776, + "id": 2773, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -61721,7 +61670,7 @@ } }, { - "id": 2759, + "id": 2756, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -61741,7 +61690,7 @@ } }, { - "id": 2754, + "id": 2751, "name": "id", "kind": 1024, "kindString": "Property", @@ -61761,7 +61710,7 @@ } }, { - "id": 2774, + "id": 2771, "name": "location", "kind": 1024, "kindString": "Property", @@ -61790,7 +61739,7 @@ } }, { - "id": 2753, + "id": 2750, "name": "login", "kind": 1024, "kindString": "Property", @@ -61810,7 +61759,7 @@ } }, { - "id": 2771, + "id": 2768, "name": "name", "kind": 1024, "kindString": "Property", @@ -61839,7 +61788,7 @@ } }, { - "id": 2755, + "id": 2752, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -61859,7 +61808,7 @@ } }, { - "id": 2765, + "id": 2762, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -61879,7 +61828,7 @@ } }, { - "id": 2794, + "id": 2791, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -61900,7 +61849,7 @@ } }, { - "id": 2785, + "id": 2782, "name": "plan", "kind": 1024, "kindString": "Property", @@ -61918,14 +61867,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2786, + "id": 2783, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2787, + "id": 2784, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -61945,7 +61894,7 @@ } }, { - "id": 2788, + "id": 2785, "name": "name", "kind": 1024, "kindString": "Property", @@ -61965,7 +61914,7 @@ } }, { - "id": 2790, + "id": 2787, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -61985,7 +61934,7 @@ } }, { - "id": 2789, + "id": 2786, "name": "space", "kind": 1024, "kindString": "Property", @@ -62010,10 +61959,10 @@ "title": "Properties", "kind": 1024, "children": [ + 2784, + 2785, 2787, - 2788, - 2790, - 2789 + 2786 ] } ] @@ -62021,7 +61970,7 @@ } }, { - "id": 2792, + "id": 2789, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -62042,7 +61991,7 @@ } }, { - "id": 2780, + "id": 2777, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -62062,7 +62011,7 @@ } }, { - "id": 2779, + "id": 2776, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -62082,7 +62031,7 @@ } }, { - "id": 2768, + "id": 2765, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -62102,7 +62051,7 @@ } }, { - "id": 2766, + "id": 2763, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -62122,7 +62071,7 @@ } }, { - "id": 2770, + "id": 2767, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -62142,7 +62091,7 @@ } }, { - "id": 2763, + "id": 2760, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -62162,7 +62111,7 @@ } }, { - "id": 2764, + "id": 2761, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -62182,7 +62131,7 @@ } }, { - "id": 2791, + "id": 2788, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -62212,7 +62161,7 @@ } }, { - "id": 2793, + "id": 2790, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -62233,7 +62182,7 @@ } }, { - "id": 2778, + "id": 2775, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -62263,7 +62212,7 @@ } }, { - "id": 2769, + "id": 2766, "name": "type", "kind": 1024, "kindString": "Property", @@ -62283,7 +62232,7 @@ } }, { - "id": 2784, + "id": 2781, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -62303,7 +62252,7 @@ } }, { - "id": 2758, + "id": 2755, "name": "url", "kind": 1024, "kindString": "Property", @@ -62328,45 +62277,45 @@ "title": "Properties", "kind": 1024, "children": [ - 2756, - 2777, - 2773, - 2796, + 2753, + 2774, + 2770, + 2793, + 2769, + 2780, + 2792, 2772, - 2783, - 2795, - 2775, - 2767, - 2781, - 2760, - 2782, - 2761, - 2762, + 2764, + 2778, 2757, - 2776, + 2779, + 2758, 2759, 2754, - 2774, - 2753, + 2773, + 2756, + 2751, 2771, - 2755, - 2765, - 2794, - 2785, - 2792, - 2780, - 2779, + 2750, 2768, - 2766, - 2770, - 2763, - 2764, + 2752, + 2762, 2791, - 2793, - 2778, - 2769, - 2784, - 2758 + 2782, + 2789, + 2777, + 2776, + 2765, + 2763, + 2767, + 2760, + 2761, + 2788, + 2790, + 2775, + 2766, + 2781, + 2755 ] } ] @@ -62375,20 +62324,20 @@ { "type": "reflection", "declaration": { - "id": 2797, + "id": 2794, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2798, + "id": 2795, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2799, + "id": 2796, "name": "key", "kind": 32768, "flags": {}, @@ -62409,7 +62358,7 @@ } }, { - "id": 2800, + "id": 2797, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -62417,14 +62366,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2801, + "id": 2798, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2802, + "id": 2799, "name": "client", "kind": 1024, "kindString": "Property", @@ -62448,7 +62397,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2802 + 2799 ] } ] @@ -62458,14 +62407,14 @@ ], "type": { "type": "reference", - "id": 2700, + "id": 2697, "name": "User" } } ] }, { - "id": 2807, + "id": 2804, "name": "avatarUrl", "kind": 1024, "kindString": "Property", @@ -62483,7 +62432,7 @@ } }, { - "id": 2827, + "id": 2824, "name": "bio", "kind": 1024, "kindString": "Property", @@ -62503,7 +62452,7 @@ } }, { - "id": 2823, + "id": 2820, "name": "blog", "kind": 1024, "kindString": "Property", @@ -62523,7 +62472,7 @@ } }, { - "id": 2803, + "id": 2800, "name": "client", "kind": 1024, "kindString": "Property", @@ -62556,7 +62505,7 @@ } }, { - "id": 2822, + "id": 2819, "name": "company", "kind": 1024, "kindString": "Property", @@ -62576,7 +62525,7 @@ } }, { - "id": 2833, + "id": 2830, "name": "createdAt", "kind": 1024, "kindString": "Property", @@ -62596,7 +62545,7 @@ } }, { - "id": 2825, + "id": 2822, "name": "email", "kind": 1024, "kindString": "Property", @@ -62625,7 +62574,7 @@ } }, { - "id": 2818, + "id": 2815, "name": "eventsUrl", "kind": 1024, "kindString": "Property", @@ -62645,7 +62594,7 @@ } }, { - "id": 2831, + "id": 2828, "name": "followers", "kind": 1024, "kindString": "Property", @@ -62665,7 +62614,7 @@ } }, { - "id": 2812, + "id": 2809, "name": "followersUrl", "kind": 1024, "kindString": "Property", @@ -62685,7 +62634,7 @@ } }, { - "id": 2832, + "id": 2829, "name": "following", "kind": 1024, "kindString": "Property", @@ -62705,7 +62654,7 @@ } }, { - "id": 2811, + "id": 2808, "name": "followingUrl", "kind": 1024, "kindString": "Property", @@ -62725,7 +62674,7 @@ } }, { - "id": 2813, + "id": 2810, "name": "gistsUrl", "kind": 1024, "kindString": "Property", @@ -62745,7 +62694,7 @@ } }, { - "id": 2808, + "id": 2805, "name": "gravatarId", "kind": 1024, "kindString": "Property", @@ -62763,7 +62712,7 @@ } }, { - "id": 2826, + "id": 2823, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -62792,7 +62741,7 @@ } }, { - "id": 2810, + "id": 2807, "name": "htmlUrl", "kind": 1024, "kindString": "Property", @@ -62810,7 +62759,7 @@ } }, { - "id": 2805, + "id": 2802, "name": "id", "kind": 1024, "kindString": "Property", @@ -62828,7 +62777,7 @@ } }, { - "id": 2824, + "id": 2821, "name": "location", "kind": 1024, "kindString": "Property", @@ -62848,7 +62797,7 @@ } }, { - "id": 2804, + "id": 2801, "name": "login", "kind": 1024, "kindString": "Property", @@ -62866,7 +62815,7 @@ } }, { - "id": 2806, + "id": 2803, "name": "nodeId", "kind": 1024, "kindString": "Property", @@ -62884,7 +62833,7 @@ } }, { - "id": 2816, + "id": 2813, "name": "organizationsUrl", "kind": 1024, "kindString": "Property", @@ -62904,7 +62853,7 @@ } }, { - "id": 2830, + "id": 2827, "name": "publicGists", "kind": 1024, "kindString": "Property", @@ -62924,7 +62873,7 @@ } }, { - "id": 2829, + "id": 2826, "name": "publicRepos", "kind": 1024, "kindString": "Property", @@ -62944,7 +62893,7 @@ } }, { - "id": 2819, + "id": 2816, "name": "receivedEventsUrl", "kind": 1024, "kindString": "Property", @@ -62964,7 +62913,7 @@ } }, { - "id": 2817, + "id": 2814, "name": "reposUrl", "kind": 1024, "kindString": "Property", @@ -62984,7 +62933,7 @@ } }, { - "id": 2821, + "id": 2818, "name": "siteAdmin", "kind": 1024, "kindString": "Property", @@ -63004,7 +62953,7 @@ } }, { - "id": 2814, + "id": 2811, "name": "starredUrl", "kind": 1024, "kindString": "Property", @@ -63024,7 +62973,7 @@ } }, { - "id": 2815, + "id": 2812, "name": "subscriptionsUrl", "kind": 1024, "kindString": "Property", @@ -63044,7 +62993,7 @@ } }, { - "id": 2828, + "id": 2825, "name": "twitterUsername", "kind": 1024, "kindString": "Property", @@ -63073,7 +63022,7 @@ } }, { - "id": 2820, + "id": 2817, "name": "type", "kind": 1024, "kindString": "Property", @@ -63093,7 +63042,7 @@ } }, { - "id": 2834, + "id": 2831, "name": "updatedAt", "kind": 1024, "kindString": "Property", @@ -63113,7 +63062,7 @@ } }, { - "id": 2809, + "id": 2806, "name": "url", "kind": 1024, "kindString": "Property", @@ -63136,45 +63085,45 @@ "title": "Constructors", "kind": 512, "children": [ - 2701 + 2698 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2807, - 2827, - 2823, - 2803, + 2804, + 2824, + 2820, + 2800, + 2819, + 2830, 2822, - 2833, - 2825, - 2818, - 2831, - 2812, - 2832, - 2811, - 2813, + 2815, + 2828, + 2809, + 2829, 2808, - 2826, 2810, 2805, - 2824, - 2804, - 2806, - 2816, - 2830, - 2829, - 2819, - 2817, + 2823, + 2807, + 2802, 2821, + 2801, + 2803, + 2813, + 2827, + 2826, + 2816, 2814, - 2815, - 2828, - 2820, - 2834, - 2809 + 2818, + 2811, + 2812, + 2825, + 2817, + 2831, + 2806 ] } ], @@ -63194,28 +63143,28 @@ ] }, { - "id": 2904, + "id": 2901, "name": "UserManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2905, + "id": 2902, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2906, + "id": 2903, "name": "new UserManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2907, + "id": 2904, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -63223,14 +63172,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2908, + "id": 2905, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2909, + "id": 2906, "name": "client", "kind": 1024, "kindString": "Property", @@ -63249,7 +63198,7 @@ } }, { - "id": 2910, + "id": 2907, "name": "url", "kind": 1024, "kindString": "Property", @@ -63274,8 +63223,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2909, - 2910 + 2906, + 2907 ] } ] @@ -63285,24 +63234,24 @@ ], "type": { "type": "reference", - "id": 2904, + "id": 2901, "name": "UserManager" }, "overwrites": { "type": "reference", - "id": 2837, + "id": 2834, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2836, + "id": 2833, "name": "Manager.constructor" } }, { - "id": 2921, + "id": 2918, "name": "client", "kind": 1024, "kindString": "Property", @@ -63321,12 +63270,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2842, + "id": 2839, "name": "Manager.client" } }, { - "id": 2922, + "id": 2919, "name": "url", "kind": 1024, "kindString": "Property", @@ -63346,12 +63295,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2843, + "id": 2840, "name": "Manager.url" } }, { - "id": 2911, + "id": 2908, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -63367,14 +63316,14 @@ ], "signatures": [ { - "id": 2912, + "id": 2909, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2913, + "id": 2910, "name": "username", "kind": 32768, "kindString": "Parameter", @@ -63385,7 +63334,7 @@ } }, { - "id": 2914, + "id": 2911, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -63402,7 +63351,7 @@ "typeArguments": [ { "type": "reference", - "id": 2700, + "id": 2697, "name": "User" } ], @@ -63412,7 +63361,7 @@ ] }, { - "id": 2915, + "id": 2912, "name": "list", "kind": 2048, "kindString": "Method", @@ -63428,14 +63377,14 @@ ], "signatures": [ { - "id": 2916, + "id": 2913, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2917, + "id": 2914, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -63443,14 +63392,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2918, + "id": 2915, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2920, + "id": 2917, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -63470,7 +63419,7 @@ } }, { - "id": 2919, + "id": 2916, "name": "since", "kind": 1024, "kindString": "Property", @@ -63495,8 +63444,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2920, - 2919 + 2917, + 2916 ] } ] @@ -63532,23 +63481,23 @@ "title": "Constructors", "kind": 512, "children": [ - 2905 + 2902 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2921, - 2922 + 2918, + 2919 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2911, - 2915 + 2908, + 2912 ] } ], @@ -63562,7 +63511,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2835, + "id": 2832, "name": "Manager" } ] @@ -63574,22 +63523,22 @@ "kind": 128, "children": [ 109, - 2844, + 2841, 121, 126, 1, 142, 323, - 353, - 2873, - 368, - 818, - 2882, - 2835, - 824, - 2895, - 2700, - 2904 + 348, + 2870, + 363, + 813, + 2879, + 2832, + 819, + 2892, + 2697, + 2901 ] } ], From e31b35965dd7cb504b839dbeb05338c3304db975 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 24 Jul 2021 13:58:30 +0530 Subject: [PATCH 46/79] feat: vscode setup --- .eslintrc | 3 +-- .vscode/extensions.json | 6 ++++++ .vscode/settings.json | 6 ++++++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/settings.json diff --git a/.eslintrc b/.eslintrc index 55a6a5f..3d7a56b 100644 --- a/.eslintrc +++ b/.eslintrc @@ -13,6 +13,5 @@ "no-console": 2, "@typescript-eslint/explicit-function-return-type": 2, "@typescript-eslint/no-explicit-any":2, - "@typescript-eslint/no-unused-vars":2 - } + "@typescript-eslint/no-unused-vars":2 } } diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..3c4ccad --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..60a4d8c --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "typescript.tsdk": "node_modules/typescript/lib", + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + } +} From e8bdcf0cddc3695dcb402545a21900d39cc7b2b3 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Tue, 27 Jul 2021 22:57:04 +0530 Subject: [PATCH 47/79] fix(lint): fixing lint errors --- src/managers/artifactsManager.ts | 18 ++++++++++++------ src/managers/issuemanager.ts | 4 ++-- src/managers/usermanager.ts | 20 ++++++++++++-------- src/structures/clientuser.ts | 18 +++++++++--------- 4 files changed, 35 insertions(+), 25 deletions(-) diff --git a/src/managers/artifactsManager.ts b/src/managers/artifactsManager.ts index 1b5a819..c688455 100644 --- a/src/managers/artifactsManager.ts +++ b/src/managers/artifactsManager.ts @@ -1,5 +1,6 @@ import { Response } from "node-fetch"; import Client from "../structures/client"; +import { ArtifactData, ArtifactListData } from "../utils"; import Manager from "./manager"; class ArtifactsManager extends Manager { @@ -13,7 +14,10 @@ class ArtifactsManager extends Manager { this.owner = owner; this.repo = repo; } - async list(options: { page?: number; perPage?: number }) { + async list(options: { + page?: number; + perPage?: number; + }): Promise { return await this.client.api .req(`/repos/${this.owner}/${this.repo}/actions/artifacts`, { query: options, @@ -22,11 +26,11 @@ class ArtifactsManager extends Manager { .then((res: Response) => { return res.json(); }) - .catch((e: any) => { - throw new Error(e); + .catch((e: Error) => { + throw e; }); } - async get(artifactId: number) { + async get(artifactId: number): Promise { return await this.client.api .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) .get() @@ -34,7 +38,9 @@ class ArtifactsManager extends Manager { return res.json(); }); } - async delete(artifactId: number) { + + // For the time being we will leave as it is... Unless confirm with tests + async delete(artifactId: number): Promise { return await this.client.api .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`) .delete() @@ -42,7 +48,7 @@ class ArtifactsManager extends Manager { return res.json(); }); } - async download(artifactId: number) { + async download(artifactId: number): Promise { return await this.client.api .req( `/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}/zip` diff --git a/src/managers/issuemanager.ts b/src/managers/issuemanager.ts index f2b032a..c470a5f 100644 --- a/src/managers/issuemanager.ts +++ b/src/managers/issuemanager.ts @@ -1,6 +1,6 @@ import Client from "../structures/client"; import Manager from "./manager"; -import { FetchOptions } from "../utils/constants"; +// import { FetchOptions } from "../utils/constants"; class IssueManager extends Manager { constructor({ client, url }: { client: Client; url: string }) { @@ -12,7 +12,7 @@ class IssueManager extends Manager { * @param {number} id - issue number * @param {FetchOptions} options */ - async fetch(id: number, options: FetchOptions): Promise {} + // async fetch(id: number, options: FetchOptions): Promise {} } export default IssueManager; diff --git a/src/managers/usermanager.ts b/src/managers/usermanager.ts index 7536d8e..b6bb048 100644 --- a/src/managers/usermanager.ts +++ b/src/managers/usermanager.ts @@ -3,28 +3,32 @@ import User from "../structures/user"; import Client from "../structures/client"; import { FetchOptions } from "../utils/constants"; import { Response } from "node-fetch"; +import { UserListData } from "../utils"; class UserManager extends Manager { constructor({ client, url }: { client: Client; url?: string }) { super({ client, url }); } - public async fetch(username: string, options: FetchOptions = {}) { + public async fetch( + username: string, + options: FetchOptions = {} + ): Promise { const { auth = true } = options; const res: Response = await this.client.api .req(`users/${username}`, { auth }) .get(); - return res.json().then((b: any) => { + return res.json().then((b: UserListData) => { return new User(b, { client: this.client }); }); } - public async *list({ - since, - perPage, - }: { since?: string; perPage?: number } = {}): AsyncGenerator { - let next, previous; - } + // public async *list({ + // since, + // perPage, + // }: { since?: string; perPage?: number } = {}): AsyncGenerator { + // let next, previous; + // } } export default UserManager; diff --git a/src/structures/clientuser.ts b/src/structures/clientuser.ts index 139d7a3..fe52150 100644 --- a/src/structures/clientuser.ts +++ b/src/structures/clientuser.ts @@ -41,7 +41,7 @@ class ClientUser extends User { * @param {String} email - Email you want to set * @returns - Returns updated user */ - async setEmail(email: string) { + async setEmail(email: string): Promise { return await this.setAll({ email }); } @@ -50,7 +50,7 @@ class ClientUser extends User { * @param {String} name - name that you want to set * @returns - Returns updated user. */ - async setName(name: string) { + async setName(name: string): Promise { return await this.setAll({ name }); } @@ -59,27 +59,27 @@ class ClientUser extends User { * @param blog - A string that you want to set as Blog * @returns {User} - returns the updated user */ - async setBlog(blog: string) { + async setBlog(blog: string): Promise { return await this.setAll({ blog }); } - async setTwitterUsername(twitterUsername: string) { + async setTwitterUsername(twitterUsername: string): Promise { return await this.setAll({ twitterUsername }); } - async setCompany(company: string) { + async setCompany(company: string): Promise { return await this.setAll({ company }); } - async setLocation(location: string) { + async setLocation(location: string): Promise { return await this.setAll({ location }); } - async setHireable(hireable: boolean) { + async setHireable(hireable: boolean): Promise { return await this.setAll({ hireable }); } - async setBio(bio: string) { + async setBio(bio: string): Promise { return await this.setAll({ bio }); } @@ -92,7 +92,7 @@ class ClientUser extends User { location?: string; hireable?: boolean; bio?: string; - }) { + }): Promise { return await this.client.api .req("user", { body: options }) .patch() From 2137d5c7bb8c3161d6478f0ea8e5c4ac08855e6f Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Tue, 27 Jul 2021 17:27:38 +0000 Subject: [PATCH 48/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 1040 ++++++++++++++++++++++++++++++++--------------- 1 file changed, 718 insertions(+), 322 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 4d2f149..9517107 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -282,7 +282,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 9, + "line": 10, "character": 24 } ], @@ -329,7 +329,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 10, + "line": 11, "character": 28 } ], @@ -347,7 +347,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 10, + "line": 11, "character": 42 } ], @@ -390,7 +390,7 @@ } }, { - "id": 2868, + "id": 2893, "name": "client", "kind": 1024, "kindString": "Property", @@ -422,7 +422,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 6, + "line": 7, "character": 7 } ], @@ -440,7 +440,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 7, + "line": 8, "character": 6 } ], @@ -450,7 +450,7 @@ } }, { - "id": 2869, + "id": 2894, "name": "url", "kind": 1024, "kindString": "Property", @@ -475,7 +475,7 @@ } }, { - "id": 2862, + "id": 2887, "name": "delete", "kind": 2048, "kindString": "Method", @@ -483,20 +483,20 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 37, + "line": 43, "character": 14 } ], "signatures": [ { - "id": 2863, + "id": 2888, "name": "delete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2864, + "id": 2889, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -512,7 +512,7 @@ "typeArguments": [ { "type": "intrinsic", - "name": "any" + "name": "unknown" } ], "name": "Promise" @@ -521,7 +521,7 @@ ] }, { - "id": 2865, + "id": 2890, "name": "download", "kind": 2048, "kindString": "Method", @@ -529,20 +529,20 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 45, + "line": 51, "character": 16 } ], "signatures": [ { - "id": 2866, + "id": 2891, "name": "download", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2867, + "id": 2892, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -558,7 +558,7 @@ "typeArguments": [ { "type": "intrinsic", - "name": "any" + "name": "unknown" } ], "name": "Promise" @@ -567,7 +567,7 @@ ] }, { - "id": 2859, + "id": 2873, "name": "get", "kind": 2048, "kindString": "Method", @@ -575,20 +575,20 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 29, + "line": 33, "character": 11 } ], "signatures": [ { - "id": 2860, + "id": 2874, "name": "get", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2861, + "id": 2875, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -603,8 +603,270 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reflection", + "declaration": { + "id": 2876, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2882, + "name": "archive_download_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7398, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2884, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7401, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2883, + "name": "expired", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether or not the artifact has expired." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7400, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2885, + "name": "expires_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7402, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2877, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7391, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2879, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the artifact." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7394, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2878, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7392, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2880, + "name": "size_in_bytes", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The size in bytes of the artifact." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7396, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2886, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7403, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2881, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7397, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2882, + 2884, + 2883, + 2885, + 2877, + 2879, + 2878, + 2880, + 2886, + 2881 + ] + } + ] + } } ], "name": "Promise" @@ -621,7 +883,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 16, + "line": 17, "character": 12 } ], @@ -659,8 +921,8 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 16, - "character": 28 + "line": 18, + "character": 8 } ], "type": { @@ -679,8 +941,8 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 16, - "character": 46 + "line": 19, + "character": 11 } ], "type": { @@ -707,8 +969,331 @@ "type": "reference", "typeArguments": [ { - "type": "intrinsic", - "name": "any" + "type": "reflection", + "declaration": { + "id": 2859, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2861, + "name": "artifacts", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 18720, + "character": 21 + } + ], + "type": { + "type": "array", + "elementType": { + "type": "reflection", + "declaration": { + "id": 2862, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2868, + "name": "archive_download_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7398, + "character": 26 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2870, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7401, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2869, + "name": "expired", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "Whether or not the artifact has expired." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7400, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2871, + "name": "expires_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7402, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2863, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7391, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2865, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The name of the artifact." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7394, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2864, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7392, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2866, + "name": "size_in_bytes", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "comment": { + "shortText": "The size in bytes of the artifact." + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7396, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2872, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7403, + "character": 16 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2867, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 7397, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2868, + 2870, + 2869, + 2871, + 2863, + 2865, + 2864, + 2866, + 2872, + 2867 + ] + } + ] + } + } + } + }, + { + "id": 2860, + "name": "total_count", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 18719, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2861, + 2860 + ] + } + ] + } } ], "name": "Promise" @@ -729,19 +1314,19 @@ "title": "Properties", "kind": 1024, "children": [ - 2868, + 2893, 2851, 2852, - 2869 + 2894 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2862, - 2865, - 2859, + 2887, + 2890, + 2873, 2853 ] } @@ -749,7 +1334,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 5, + "line": 6, "character": 22 } ], @@ -1368,7 +1953,7 @@ ], "type": { "type": "reference", - "id": 2901, + "id": 2922, "name": "UserManager" } }, @@ -6737,8 +7322,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -6784,8 +7369,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -6837,8 +7422,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -6884,8 +7469,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -6938,8 +7523,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -6985,8 +7570,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -7032,8 +7617,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -7086,8 +7671,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -7133,8 +7718,8 @@ "typeArguments": [ { "type": "reference", - "id": 142, - "name": "ClientUser" + "id": 2697, + "name": "User" } ], "name": "Promise" @@ -7944,28 +8529,28 @@ ] }, { - "id": 2870, + "id": 2895, "name": "ForkManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2871, + "id": 2896, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2872, + "id": 2897, "name": "new ForkManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2873, + "id": 2898, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -7977,7 +8562,7 @@ } }, { - "id": 2874, + "id": 2899, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -7985,14 +8570,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2875, + "id": 2900, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2876, + "id": 2901, "name": "url", "kind": 1024, "kindString": "Property", @@ -8017,7 +8602,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2876 + 2901 ] } ] @@ -8027,7 +8612,7 @@ ], "type": { "type": "reference", - "id": 2870, + "id": 2895, "name": "ForkManager" }, "overwrites": { @@ -8044,7 +8629,7 @@ } }, { - "id": 2877, + "id": 2902, "name": "client", "kind": 1024, "kindString": "Property", @@ -8068,7 +8653,7 @@ } }, { - "id": 2878, + "id": 2903, "name": "url", "kind": 1024, "kindString": "Property", @@ -8098,15 +8683,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2871 + 2896 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2877, - 2878 + 2902, + 2903 ] } ], @@ -17832,7 +18417,7 @@ ], "type": { "type": "reference", - "id": 2870, + "id": 2895, "name": "ForkManager" } }, @@ -18062,28 +18647,28 @@ ] }, { - "id": 2879, + "id": 2904, "name": "IssueManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2880, + "id": 2905, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2881, + "id": 2906, "name": "new IssueManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2882, + "id": 2907, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18091,14 +18676,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2883, + "id": 2908, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2884, + "id": 2909, "name": "client", "kind": 1024, "kindString": "Property", @@ -18117,7 +18702,7 @@ } }, { - "id": 2885, + "id": 2910, "name": "url", "kind": 1024, "kindString": "Property", @@ -18140,8 +18725,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2884, - 2885 + 2909, + 2910 ] } ] @@ -18151,7 +18736,7 @@ ], "type": { "type": "reference", - "id": 2879, + "id": 2904, "name": "IssueManager" }, "overwrites": { @@ -18168,7 +18753,7 @@ } }, { - "id": 2890, + "id": 2911, "name": "client", "kind": 1024, "kindString": "Property", @@ -18192,7 +18777,7 @@ } }, { - "id": 2891, + "id": 2912, "name": "url", "kind": 1024, "kindString": "Property", @@ -18215,72 +18800,6 @@ "id": 2840, "name": "Manager.url" } - }, - { - "id": 2886, - "name": "fetch", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/managers/issuemanager.ts", - "line": 15, - "character": 13 - } - ], - "signatures": [ - { - "id": 2887, - "name": "fetch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "fetch the issue using it's number" - }, - "parameters": [ - { - "id": 2888, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "issue number" - }, - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2889, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "\n" - }, - "type": { - "type": "reference", - "name": "FetchOptions" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "void" - } - ], - "name": "Promise" - } - } - ] } ], "groups": [ @@ -18288,22 +18807,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2880 + 2905 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2890, - 2891 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 2886 + 2911, + 2912 ] } ], @@ -18492,22 +19004,22 @@ }, { "type": "reference", - "id": 2870, + "id": 2895, "name": "ForkManager" }, { "type": "reference", - "id": 2879, + "id": 2904, "name": "IssueManager" }, { "type": "reference", - "id": 2892, + "id": 2913, "name": "RepoManager" }, { "type": "reference", - "id": 2901, + "id": 2922, "name": "UserManager" } ] @@ -59086,7 +59598,7 @@ ], "type": { "type": "reference", - "id": 2870, + "id": 2895, "name": "ForkManager" } }, @@ -59967,28 +60479,28 @@ ] }, { - "id": 2892, + "id": 2913, "name": "RepoManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2893, + "id": 2914, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2894, + "id": 2915, "name": "new RepoManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2895, + "id": 2916, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -59996,14 +60508,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2896, + "id": 2917, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2897, + "id": 2918, "name": "client", "kind": 1024, "kindString": "Property", @@ -60022,7 +60534,7 @@ } }, { - "id": 2898, + "id": 2919, "name": "url", "kind": 1024, "kindString": "Property", @@ -60045,8 +60557,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2897, - 2898 + 2918, + 2919 ] } ] @@ -60056,7 +60568,7 @@ ], "type": { "type": "reference", - "id": 2892, + "id": 2913, "name": "RepoManager" }, "overwrites": { @@ -60073,7 +60585,7 @@ } }, { - "id": 2899, + "id": 2920, "name": "client", "kind": 1024, "kindString": "Property", @@ -60097,7 +60609,7 @@ } }, { - "id": 2900, + "id": 2921, "name": "url", "kind": 1024, "kindString": "Property", @@ -60127,15 +60639,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2893 + 2914 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2899, - 2900 + 2920, + 2921 ] } ], @@ -63143,28 +63655,28 @@ ] }, { - "id": 2901, + "id": 2922, "name": "UserManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2902, + "id": 2923, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2903, + "id": 2924, "name": "new UserManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2904, + "id": 2925, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -63172,14 +63684,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2905, + "id": 2926, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2906, + "id": 2927, "name": "client", "kind": 1024, "kindString": "Property", @@ -63187,7 +63699,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 8, + "line": 9, "character": 39 } ], @@ -63198,7 +63710,7 @@ } }, { - "id": 2907, + "id": 2928, "name": "url", "kind": 1024, "kindString": "Property", @@ -63208,7 +63720,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 8, + "line": 9, "character": 52 } ], @@ -63223,8 +63735,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2906, - 2907 + 2927, + 2928 ] } ] @@ -63234,7 +63746,7 @@ ], "type": { "type": "reference", - "id": 2901, + "id": 2922, "name": "UserManager" }, "overwrites": { @@ -63251,7 +63763,7 @@ } }, { - "id": 2918, + "id": 2933, "name": "client", "kind": 1024, "kindString": "Property", @@ -63275,7 +63787,7 @@ } }, { - "id": 2919, + "id": 2934, "name": "url", "kind": 1024, "kindString": "Property", @@ -63300,7 +63812,7 @@ } }, { - "id": 2908, + "id": 2929, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -63310,20 +63822,20 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 12, + "line": 13, "character": 20 } ], "signatures": [ { - "id": 2909, + "id": 2930, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2910, + "id": 2931, "name": "username", "kind": 32768, "kindString": "Parameter", @@ -63334,7 +63846,7 @@ } }, { - "id": 2911, + "id": 2932, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -63359,121 +63871,6 @@ } } ] - }, - { - "id": 2912, - "name": "list", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPublic": true - }, - "sources": [ - { - "fileName": "src/managers/usermanager.ts", - "line": 22, - "character": 20 - } - ], - "signatures": [ - { - "id": 2913, - "name": "list", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 2914, - "name": "__namedParameters", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 2915, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 2917, - "name": "perPage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/usermanager.ts", - "line": 25, - "character": 30 - } - ], - "type": { - "type": "intrinsic", - "name": "number" - } - }, - { - "id": 2916, - "name": "since", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/managers/usermanager.ts", - "line": 25, - "character": 12 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2917, - 2916 - ] - } - ] - } - }, - "defaultValue": "{}" - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "intrinsic", - "name": "unknown" - }, - { - "type": "intrinsic", - "name": "any" - }, - { - "type": "intrinsic", - "name": "unknown" - } - ], - "name": "AsyncGenerator" - } - } - ] } ], "groups": [ @@ -63481,30 +63878,29 @@ "title": "Constructors", "kind": 512, "children": [ - 2902 + 2923 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2918, - 2919 + 2933, + 2934 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2908, - 2912 + 2929 ] } ], "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 7, + "line": 8, "character": 17 } ], @@ -63530,15 +63926,15 @@ 142, 323, 348, - 2870, + 2895, 363, 813, - 2879, + 2904, 2832, 819, - 2892, + 2913, 2697, - 2901 + 2922 ] } ], From 41a3a290a7c3ae2c4755a59da7eade4251b8fe69 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 28 Jul 2021 15:09:03 +0530 Subject: [PATCH 49/79] feat(tests): added some minor tests --- tests/clientuser.test.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index 0ac9636..68f4355 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -12,6 +12,9 @@ export default function (client: Client, getRandom: any) { }); it("change user's bio to a random value", (done) => { client.user?.setBio(getRandom()).then(() => done()); + client.user?.setBio( + "This is a test account for testing GmBodhi/github-api" + ); }); it("change user's location to a random value", (done) => { client.user?.setLocation(getRandom()).then(() => done()); @@ -19,6 +22,10 @@ export default function (client: Client, getRandom: any) { it("change user's twitter username to a random value", (done) => { client.user?.setTwitterUsername(getRandom()).then(() => done()); }); + it("change user's blog url", (done) => { + client.user?.setBlog("http://eximstudio.com").then(() => done()); + client.user?.setBlog("http://github.com/GmBodhi/github-api"); + }); }); }); } From 55b5015aaa52e97009fef7f150dbdb6cec2a3802 Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 07:34:37 +0530 Subject: [PATCH 50/79] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0578ee7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Gm + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 72deaffb23777a98597e1271978a4cdf98d3e119 Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 07:39:56 +0530 Subject: [PATCH 51/79] Create CODE_OF_CONDUCT.md --- CODE_OF_CONDUCT.md | 128 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 CODE_OF_CONDUCT.md diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..ee1e774 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,128 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +[Gm#1000 (Discord)](https://discord.com/users/830394727684898856) or at contact@eximstudio.com. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. From 01328fde64fa87bc6475bb991abb76a9a03603c3 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Thu, 29 Jul 2021 07:43:28 +0530 Subject: [PATCH 52/79] fix(tests): minor --- tests/clientuser.test.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index 68f4355..cdbc0d4 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -11,10 +11,10 @@ export default function (client: Client, getRandom: any) { client.user?.setName(getRandom()).then(() => done()); }); it("change user's bio to a random value", (done) => { - client.user?.setBio(getRandom()).then(() => done()); - client.user?.setBio( - "This is a test account for testing GmBodhi/github-api" - ); + client.user?.setBio(getRandom()); + client.user + ?.setBio("This is a test account for testing GmBodhi/github-api") + .then(() => done()); }); it("change user's location to a random value", (done) => { client.user?.setLocation(getRandom()).then(() => done()); @@ -23,8 +23,10 @@ export default function (client: Client, getRandom: any) { client.user?.setTwitterUsername(getRandom()).then(() => done()); }); it("change user's blog url", (done) => { - client.user?.setBlog("http://eximstudio.com").then(() => done()); - client.user?.setBlog("http://github.com/GmBodhi/github-api"); + client.user?.setBlog("http://eximstudio.com"); + client.user + ?.setBlog("http://github.com/GmBodhi/github-api") + .then(() => done()); }); }); }); From 27c3514c0f49385742d36d085ba6f10adefc902c Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 08:54:27 +0530 Subject: [PATCH 53/79] Create CONTRIBUTING.md --- CONTRIBUTING.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..3903a13 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,32 @@ +# Contributing Guide + +Thank you for considering contributing to this repository! + +Please note that by participating, you are expected to uphold the [Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md). + +## Setting up local environment + +#### fork the repo +#### clone + ```shell + git clone https://github.com/yourusername/github-api.git + ``` +#### install dependencies + ```shell + yarn + ``` + or + ```shell + npm i + ``` +#### IDE + We recommend using the ESLint and Prettier extensions with VSCode (or alternative editor of your preference) \ + In case if your system is unresponsive (disable ESLint) + +## Making PR + You'll have to pass [Lint](https://github.com/GmBodhi/github-api/actions/workflows/lint.yml) \ + Run `yarn lint` after making changes to know whether it'll break or not + +# Guidelines + +- We're looking forward in, covering all the available endpoints... From e819aa8c0e27c7e316f86dac736f7d473f1eab67 Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 13:03:19 +0530 Subject: [PATCH 54/79] Update CONTRIBUTING.md --- CONTRIBUTING.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3903a13..d5a55c1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,9 @@ Thank you for considering contributing to this repository! Please note that by participating, you are expected to uphold the [Contributor Covenant Code of Conduct](./CODE_OF_CONDUCT.md). +We're currently interested in covering all the available endpoints. + + ## Setting up local environment #### fork the repo @@ -26,7 +29,3 @@ Please note that by participating, you are expected to uphold the [Contributor C ## Making PR You'll have to pass [Lint](https://github.com/GmBodhi/github-api/actions/workflows/lint.yml) \ Run `yarn lint` after making changes to know whether it'll break or not - -# Guidelines - -- We're looking forward in, covering all the available endpoints... From 439727fe7f3cfe2cc479b6841ccfd2262827f49b Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 13:06:04 +0530 Subject: [PATCH 55/79] Update CONTRIBUTING.md --- CONTRIBUTING.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d5a55c1..2feeae8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,12 @@ We're currently interested in covering all the available endpoints. #### IDE We recommend using the ESLint and Prettier extensions with VSCode (or alternative editor of your preference) \ In case if your system is unresponsive (disable ESLint) + +#### Commiting + We encourage you to follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0-beta.4/). ## Making PR You'll have to pass [Lint](https://github.com/GmBodhi/github-api/actions/workflows/lint.yml) \ Run `yarn lint` after making changes to know whether it'll break or not + +Chears..! From a1b10e0549958c47f094348310efb9303d1d62e6 Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 13:06:40 +0530 Subject: [PATCH 56/79] Update CONTRIBUTING.md --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2feeae8..c8e1236 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,7 +26,7 @@ We're currently interested in covering all the available endpoints. We recommend using the ESLint and Prettier extensions with VSCode (or alternative editor of your preference) \ In case if your system is unresponsive (disable ESLint) -#### Commiting +#### Committing We encourage you to follow [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0-beta.4/). ## Making PR From 253cf704576b356a1a2a8867eb4a8be210013e7f Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 13:09:21 +0530 Subject: [PATCH 57/79] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 3c81347..40c31a3 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,6 @@ Fast as hell
Join our [Discord server](https://discord.gg/U8c8H3sRZW)!

Documentation coming soon! Check progress [here](https://github.com/GmBodhi/github-api/issues/8) - Crispy + +## Contributing +Please refer [Contributing Guide](./CONTRIBUTING.md) From 75098abfad0e117cb0a122958679402f15f3d370 Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 29 Jul 2021 13:12:22 +0530 Subject: [PATCH 58/79] DELETE(CodeQL): I don't know why I added this even --- .github/workflows/codeql-analysis.yml | 71 --------------------------- 1 file changed, 71 deletions(-) delete mode 100644 .github/workflows/codeql-analysis.yml diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml deleted file mode 100644 index f7a1e71..0000000 --- a/.github/workflows/codeql-analysis.yml +++ /dev/null @@ -1,71 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -# -# ******** NOTE ******** -# We have attempted to detect the languages in your repository. Please check -# the `language` matrix defined below to confirm you have the correct set of -# supported CodeQL languages. -# -name: "CodeQL" - -on: - push: - branches: [master] - pull_request: - # The branches below must be a subset of the branches above - branches: [master] - schedule: - - cron: "16 15 * * 6" - -jobs: - analyze: - name: Analyze - runs-on: ubuntu-latest - permissions: - actions: read - contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: ["javascript"] - # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] - # Learn more: - # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v1 - - # ℹ️ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - #- run: | - # make bootstrap - # make release - - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 From aaab6eb5456a66952f0a73cd708e3d2d552a8adb Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Thu, 29 Jul 2021 17:27:28 +0530 Subject: [PATCH 59/79] feat: added ._patch method --- src/structures/user.ts | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/structures/user.ts b/src/structures/user.ts index 43e85c5..05bbe29 100644 --- a/src/structures/user.ts +++ b/src/structures/user.ts @@ -1,4 +1,4 @@ -import { UserData } from "../utils/rawdata"; +import { ClientUserData, UserData } from "../utils/rawdata"; import Client from "./client"; /** @@ -76,6 +76,25 @@ class User { this.createdAt = data.created_at; this.updatedAt = data.updated_at; } + + public _patch( + data: UserData | ClientUserData | Record + ): this { + const processedData: unknown = Object.fromEntries( + // I'm not destructuring `val` cuz to prevent ESLint errors and assignment unexpected behaviour... + (Object.entries(data) as [string, unknown][]).filter((val) => { + val[0] = val[0].replace( + /_(\w)/gi, + (_: unknown, param: string): string => param.toUpperCase() + ); + return val[1] !== undefined || val[1] !== null; + }) + ); + + Object.assign(this, processedData); + + return this; + } } export default User; From 1df67a9d5dc7e03456256a50bc05ed7467f5be2b Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Thu, 29 Jul 2021 11:58:08 +0000 Subject: [PATCH 60/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 15388 ++++++++++++++++++++++++++++++---------------- 1 file changed, 9928 insertions(+), 5460 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 9517107..03f2c5b 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -138,7 +138,7 @@ ], "type": { "type": "reference", - "id": 2841, + "id": 3039, "name": "ArtifactsManager" } }, @@ -238,28 +238,28 @@ ] }, { - "id": 2841, + "id": 3039, "name": "ArtifactsManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2842, + "id": 3040, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2843, + "id": 3041, "name": "new ArtifactsManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2844, + "id": 3042, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -267,14 +267,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2845, + "id": 3043, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2846, + "id": 3044, "name": "client", "kind": 1024, "kindString": "Property", @@ -298,7 +298,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2846 + 3044 ] } ] @@ -306,7 +306,7 @@ } }, { - "id": 2847, + "id": 3045, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -314,14 +314,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2848, + "id": 3046, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2849, + "id": 3047, "name": "owner", "kind": 1024, "kindString": "Property", @@ -339,7 +339,7 @@ } }, { - "id": 2850, + "id": 3048, "name": "repo", "kind": 1024, "kindString": "Property", @@ -362,8 +362,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2849, - 2850 + 3047, + 3048 ] } ] @@ -373,24 +373,24 @@ ], "type": { "type": "reference", - "id": 2841, + "id": 3039, "name": "ArtifactsManager" }, "overwrites": { "type": "reference", - "id": 2834, + "id": 3032, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2833, + "id": 3031, "name": "Manager.constructor" } }, { - "id": 2893, + "id": 3091, "name": "client", "kind": 1024, "kindString": "Property", @@ -409,12 +409,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 3037, "name": "Manager.client" } }, { - "id": 2851, + "id": 3049, "name": "owner", "kind": 1024, "kindString": "Property", @@ -432,7 +432,7 @@ } }, { - "id": 2852, + "id": 3050, "name": "repo", "kind": 1024, "kindString": "Property", @@ -450,7 +450,7 @@ } }, { - "id": 2894, + "id": 3092, "name": "url", "kind": 1024, "kindString": "Property", @@ -470,12 +470,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 3038, "name": "Manager.url" } }, { - "id": 2887, + "id": 3085, "name": "delete", "kind": 2048, "kindString": "Method", @@ -489,14 +489,14 @@ ], "signatures": [ { - "id": 2888, + "id": 3086, "name": "delete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2889, + "id": 3087, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -521,7 +521,7 @@ ] }, { - "id": 2890, + "id": 3088, "name": "download", "kind": 2048, "kindString": "Method", @@ -535,14 +535,14 @@ ], "signatures": [ { - "id": 2891, + "id": 3089, "name": "download", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2892, + "id": 3090, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -567,7 +567,7 @@ ] }, { - "id": 2873, + "id": 3071, "name": "get", "kind": 2048, "kindString": "Method", @@ -581,14 +581,14 @@ ], "signatures": [ { - "id": 2874, + "id": 3072, "name": "get", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2875, + "id": 3073, "name": "artifactId", "kind": 32768, "kindString": "Parameter", @@ -605,14 +605,14 @@ { "type": "reflection", "declaration": { - "id": 2876, + "id": 3074, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2882, + "id": 3080, "name": "archive_download_url", "kind": 1024, "kindString": "Property", @@ -632,7 +632,7 @@ } }, { - "id": 2884, + "id": 3082, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -661,7 +661,7 @@ } }, { - "id": 2883, + "id": 3081, "name": "expired", "kind": 1024, "kindString": "Property", @@ -684,7 +684,7 @@ } }, { - "id": 2885, + "id": 3083, "name": "expires_at", "kind": 1024, "kindString": "Property", @@ -713,7 +713,7 @@ } }, { - "id": 2877, + "id": 3075, "name": "id", "kind": 1024, "kindString": "Property", @@ -733,7 +733,7 @@ } }, { - "id": 2879, + "id": 3077, "name": "name", "kind": 1024, "kindString": "Property", @@ -756,7 +756,7 @@ } }, { - "id": 2878, + "id": 3076, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -776,7 +776,7 @@ } }, { - "id": 2880, + "id": 3078, "name": "size_in_bytes", "kind": 1024, "kindString": "Property", @@ -799,7 +799,7 @@ } }, { - "id": 2886, + "id": 3084, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -828,7 +828,7 @@ } }, { - "id": 2881, + "id": 3079, "name": "url", "kind": 1024, "kindString": "Property", @@ -853,16 +853,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2882, - 2884, - 2883, - 2885, - 2877, - 2879, - 2878, - 2880, - 2886, - 2881 + 3080, + 3082, + 3081, + 3083, + 3075, + 3077, + 3076, + 3078, + 3084, + 3079 ] } ] @@ -875,7 +875,7 @@ ] }, { - "id": 2853, + "id": 3051, "name": "list", "kind": 2048, "kindString": "Method", @@ -889,14 +889,14 @@ ], "signatures": [ { - "id": 2854, + "id": 3052, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2855, + "id": 3053, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -904,14 +904,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2856, + "id": 3054, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2857, + "id": 3055, "name": "page", "kind": 1024, "kindString": "Property", @@ -931,7 +931,7 @@ } }, { - "id": 2858, + "id": 3056, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -956,8 +956,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2857, - 2858 + 3055, + 3056 ] } ] @@ -971,14 +971,14 @@ { "type": "reflection", "declaration": { - "id": 2859, + "id": 3057, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2861, + "id": 3059, "name": "artifacts", "kind": 1024, "kindString": "Property", @@ -997,14 +997,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 2862, + "id": 3060, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2868, + "id": 3066, "name": "archive_download_url", "kind": 1024, "kindString": "Property", @@ -1024,7 +1024,7 @@ } }, { - "id": 2870, + "id": 3068, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -1053,7 +1053,7 @@ } }, { - "id": 2869, + "id": 3067, "name": "expired", "kind": 1024, "kindString": "Property", @@ -1076,7 +1076,7 @@ } }, { - "id": 2871, + "id": 3069, "name": "expires_at", "kind": 1024, "kindString": "Property", @@ -1105,7 +1105,7 @@ } }, { - "id": 2863, + "id": 3061, "name": "id", "kind": 1024, "kindString": "Property", @@ -1125,7 +1125,7 @@ } }, { - "id": 2865, + "id": 3063, "name": "name", "kind": 1024, "kindString": "Property", @@ -1148,7 +1148,7 @@ } }, { - "id": 2864, + "id": 3062, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -1168,7 +1168,7 @@ } }, { - "id": 2866, + "id": 3064, "name": "size_in_bytes", "kind": 1024, "kindString": "Property", @@ -1191,7 +1191,7 @@ } }, { - "id": 2872, + "id": 3070, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -1220,7 +1220,7 @@ } }, { - "id": 2867, + "id": 3065, "name": "url", "kind": 1024, "kindString": "Property", @@ -1245,16 +1245,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2868, - 2870, - 2869, - 2871, - 2863, - 2865, - 2864, - 2866, - 2872, - 2867 + 3066, + 3068, + 3067, + 3069, + 3061, + 3063, + 3062, + 3064, + 3070, + 3065 ] } ] @@ -1263,7 +1263,7 @@ } }, { - "id": 2860, + "id": 3058, "name": "total_count", "kind": 1024, "kindString": "Property", @@ -1288,8 +1288,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2861, - 2860 + 3059, + 3058 ] } ] @@ -1307,27 +1307,27 @@ "title": "Constructors", "kind": 512, "children": [ - 2842 + 3040 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2893, - 2851, - 2852, - 2894 + 3091, + 3049, + 3050, + 3092 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2887, - 2890, - 2873, - 2853 + 3085, + 3088, + 3071, + 3051 ] } ], @@ -1341,7 +1341,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2832, + "id": 3030, "name": "Manager" } ] @@ -1444,17 +1444,17 @@ }, { "type": "reference", - "id": 323, + "id": 422, "name": "Emails" }, { "type": "reference", - "id": 363, + "id": 462, "name": "Gist" }, { "type": "reference", - "id": 819, + "id": 918, "name": "Repo" } ] @@ -1654,7 +1654,7 @@ "type": "array", "elementType": { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } } @@ -1953,7 +1953,7 @@ ], "type": { "type": "reference", - "id": 2922, + "id": 3120, "name": "UserManager" } }, @@ -6007,14 +6007,14 @@ }, "overwrites": { "type": "reference", - "id": 2699, + "id": 2798, "name": "User.constructor" } } ], "overwrites": { "type": "reference", - "id": 2698, + "id": 2797, "name": "User.constructor" } }, @@ -6037,7 +6037,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2804, + "id": 2903, "name": "User.avatarUrl" } }, @@ -6062,7 +6062,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2824, + "id": 2923, "name": "User.bio" } }, @@ -6106,7 +6106,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2820, + "id": 2919, "name": "User.blog" } }, @@ -6144,7 +6144,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2800, + "id": 2899, "name": "User.client" } }, @@ -6189,7 +6189,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2819, + "id": 2918, "name": "User.company" } }, @@ -6214,7 +6214,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2830, + "id": 2929, "name": "User.createdAt" } }, @@ -6268,7 +6268,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2822, + "id": 2921, "name": "User.email" } }, @@ -6287,7 +6287,7 @@ ], "type": { "type": "reference", - "id": 323, + "id": 422, "name": "Emails" } }, @@ -6312,7 +6312,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2815, + "id": 2914, "name": "User.eventsUrl" } }, @@ -6337,7 +6337,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2828, + "id": 2927, "name": "User.followers" } }, @@ -6362,7 +6362,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2809, + "id": 2908, "name": "User.followersUrl" } }, @@ -6387,7 +6387,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2829, + "id": 2928, "name": "User.following" } }, @@ -6412,7 +6412,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2808, + "id": 2907, "name": "User.followingUrl" } }, @@ -6437,7 +6437,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2810, + "id": 2909, "name": "User.gistsUrl" } }, @@ -6460,7 +6460,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2805, + "id": 2904, "name": "User.gravatarId" } }, @@ -6494,7 +6494,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2823, + "id": 2922, "name": "User.hireable" } }, @@ -6517,7 +6517,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2807, + "id": 2906, "name": "User.htmlUrl" } }, @@ -6540,7 +6540,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2802, + "id": 2901, "name": "User.id" } }, @@ -6565,7 +6565,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2821, + "id": 2920, "name": "User.location" } }, @@ -6588,7 +6588,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2801, + "id": 2900, "name": "User.login" } }, @@ -6611,7 +6611,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2803, + "id": 2902, "name": "User.nodeId" } }, @@ -6636,7 +6636,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2813, + "id": 2912, "name": "User.organizationsUrl" } }, @@ -6819,7 +6819,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2827, + "id": 2926, "name": "User.publicGists" } }, @@ -6844,7 +6844,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2826, + "id": 2925, "name": "User.publicRepos" } }, @@ -6869,7 +6869,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2816, + "id": 2915, "name": "User.receivedEventsUrl" } }, @@ -6894,7 +6894,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2814, + "id": 2913, "name": "User.reposUrl" } }, @@ -6919,7 +6919,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2818, + "id": 2917, "name": "User.siteAdmin" } }, @@ -6944,7 +6944,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2811, + "id": 2910, "name": "User.starredUrl" } }, @@ -6969,7 +6969,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2812, + "id": 2911, "name": "User.subscriptionsUrl" } }, @@ -7023,7 +7023,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2825, + "id": 2924, "name": "User.twitterUsername" } }, @@ -7048,7 +7048,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2817, + "id": 2916, "name": "User.type" } }, @@ -7073,7 +7073,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2831, + "id": 2930, "name": "User.updatedAt" } }, @@ -7096,380 +7096,2615 @@ }, "inheritedFrom": { "type": "reference", - "id": 2806, + "id": 2905, "name": "User.url" } }, { - "id": 279, - "name": "setAll", + "id": 323, + "name": "_patch", "kind": 2048, "kindString": "Method", - "flags": {}, + "flags": { + "isPublic": true + }, "sources": [ { - "fileName": "src/structures/clientuser.ts", - "line": 86, - "character": 14 + "fileName": "src/structures/user.ts", + "line": 80, + "character": 15 } ], "signatures": [ { - "id": 280, - "name": "setAll", + "id": 324, + "name": "_patch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 281, - "name": "options", + "id": 325, + "name": "data", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reflection", - "declaration": { - "id": 282, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 290, - "name": "bio", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 326, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ { - "fileName": "src/structures/clientuser.ts", - "line": 94, - "character": 7 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 285, - "name": "blog", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 330, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10671, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 89, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 287, - "name": "company", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 351, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10692, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 91, - "character": 11 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 283, - "name": "email", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 347, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10688, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 87, - "character": 9 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 289, - "name": "hireable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 372, + "name": "business_plus", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10713, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 93, - "character": 12 - } - ], - "type": { - "type": "intrinsic", - "name": "boolean" - } - }, - { - "id": 288, - "name": "location", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 363, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10704, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 92, - "character": 12 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 284, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 346, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10687, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 88, - "character": 8 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 286, - "name": "twitterUsername", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ + "id": 357, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10698, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, { - "fileName": "src/structures/clientuser.ts", - "line": 90, - "character": 19 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 290, - 285, - 287, - 283, - 289, - 288, - 284, - 286 - ] - } - ] - } - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "id": 2697, - "name": "User" - } - ], - "name": "Promise" - } - } - ] - }, - { - "id": 276, - "name": "setBio", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/clientuser.ts", - "line": 82, - "character": 14 - } - ], - "signatures": [ - { - "id": 277, - "name": "setBio", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 278, - "name": "bio", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "id": 2697, - "name": "User" - } - ], - "name": "Promise" - } - } - ] - }, - { - "id": 261, - "name": "setBlog", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/clientuser.ts", - "line": 62, - "character": 15 - } - ], - "signatures": [ - { - "id": 262, - "name": "setBlog", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "returns": "- returns the updated user\n" - }, - "parameters": [ - { - "id": 263, - "name": "blog", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "A string that you want to set as Blog" - }, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ - { - "type": "reference", - "id": 2697, - "name": "User" - } - ], - "name": "Promise" - } - } - ] - }, - { - "id": 267, - "name": "setCompany", - "kind": 2048, - "kindString": "Method", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/clientuser.ts", - "line": 70, - "character": 18 - } - ], - "signatures": [ - { - "id": 268, - "name": "setCompany", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 269, - "name": "company", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "intrinsic", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "typeArguments": [ + "id": 362, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 349, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10690, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 341, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10682, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 355, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10696, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 334, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10675, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 356, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10697, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 335, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10676, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 336, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 331, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10672, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 350, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10691, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 333, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 328, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10669, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 373, + "name": "ldap_dn", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10714, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 348, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10689, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 327, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10668, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 345, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10686, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 329, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10670, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 339, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10680, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 361, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10702, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 365, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10706, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 366, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 367, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10707, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 368, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10708, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 370, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10710, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 369, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10709, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 367, + 368, + 370, + 369 + ] + } + ] + } + } + }, + { + "id": 359, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10700, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 354, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10695, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 353, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 342, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10683, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 340, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10681, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 344, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10685, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 337, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10678, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 338, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10679, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 371, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10712, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 360, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10701, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 352, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10693, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 364, + "name": "two_factor_authentication", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10705, + "character": 31 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 343, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10684, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 358, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10699, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 332, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10673, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 330, + 351, + 347, + 372, + 363, + 346, + 357, + 362, + 349, + 341, + 355, + 334, + 356, + 335, + 336, + 331, + 350, + 333, + 328, + 373, + 348, + 327, + 345, + 329, + 339, + 361, + 365, + 359, + 354, + 353, + 342, + 340, + 344, + 337, + 338, + 371, + 360, + 352, + 364, + 343, + 358, + 332 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 374, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 378, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6227, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 399, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6248, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 395, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6244, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 418, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6267, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 394, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6243, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 405, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6254, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 417, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6266, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 397, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6246, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 389, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6238, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 403, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6252, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 382, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6231, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 404, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6253, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 383, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6232, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 384, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6233, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 379, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6228, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 398, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6247, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 381, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6230, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 376, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6225, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 396, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6245, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 375, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6224, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 393, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6242, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 377, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6226, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 387, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6236, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 416, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6265, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 407, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6256, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 408, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 409, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6257, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 410, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6258, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 412, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6260, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 411, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6259, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 409, + 410, + 412, + 411 + ] + } + ] + } + } + }, + { + "id": 414, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6263, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 402, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6251, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 401, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6250, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 390, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6239, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 388, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6237, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 392, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6241, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 385, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6234, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 386, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6235, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 413, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6262, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 415, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6264, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 400, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6249, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 391, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6240, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 406, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6255, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 380, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6229, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 378, + 399, + 395, + 418, + 394, + 405, + 417, + 397, + 389, + 403, + 382, + 404, + 383, + 384, + 379, + 398, + 381, + 376, + 396, + 375, + 393, + 377, + 387, + 416, + 407, + 414, + 402, + 401, + 390, + 388, + 392, + 385, + 386, + 413, + 415, + 400, + 391, + 406, + 380 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 419, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 420, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 421, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + }, + { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record" + } + ] + } + } + ], + "type": { + "type": "reference", + "id": 142, + "name": "ClientUser" + }, + "inheritedFrom": { + "type": "reference", + "id": 2932, + "name": "User._patch" + } + } + ], + "inheritedFrom": { + "type": "reference", + "id": 2931, + "name": "User._patch" + } + }, + { + "id": 279, + "name": "setAll", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 86, + "character": 14 + } + ], + "signatures": [ + { + "id": 280, + "name": "setAll", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 281, + "name": "options", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reflection", + "declaration": { + "id": 282, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 290, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 94, + "character": 7 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 285, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 89, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 287, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 91, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 283, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 87, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 289, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 93, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 288, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 92, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 284, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 88, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 286, + "name": "twitterUsername", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 90, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 290, + 285, + 287, + 283, + 289, + 288, + 284, + 286 + ] + } + ] + } + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 2796, + "name": "User" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 276, + "name": "setBio", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 82, + "character": 14 + } + ], + "signatures": [ + { + "id": 277, + "name": "setBio", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 278, + "name": "bio", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 2796, + "name": "User" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 261, + "name": "setBlog", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 62, + "character": 15 + } + ], + "signatures": [ + { + "id": 262, + "name": "setBlog", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "returns": "- returns the updated user\n" + }, + "parameters": [ + { + "id": 263, + "name": "blog", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "comment": { + "text": "A string that you want to set as Blog" + }, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ + { + "type": "reference", + "id": 2796, + "name": "User" + } + ], + "name": "Promise" + } + } + ] + }, + { + "id": 267, + "name": "setCompany", + "kind": 2048, + "kindString": "Method", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/clientuser.ts", + "line": 70, + "character": 18 + } + ], + "signatures": [ + { + "id": 268, + "name": "setCompany", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 269, + "name": "company", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -7523,7 +9758,7 @@ "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -7570,7 +9805,7 @@ "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -7617,7 +9852,7 @@ "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -7671,7 +9906,7 @@ "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -7718,7 +9953,7 @@ "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -7786,6 +10021,7 @@ "title": "Methods", "kind": 2048, "children": [ + 323, 279, 276, 261, @@ -7808,34 +10044,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ] }, { - "id": 323, + "id": 422, "name": "Emails", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 324, + "id": 423, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 325, + "id": 424, "name": "new Emails", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 326, + "id": 425, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -7849,7 +10085,7 @@ ], "type": { "type": "reference", - "id": 323, + "id": 422, "name": "Emails" }, "overwrites": { @@ -7866,7 +10102,7 @@ } }, { - "id": 347, + "id": 446, "name": "client", "kind": 1024, "kindString": "Property", @@ -7890,7 +10126,7 @@ } }, { - "id": 337, + "id": 436, "name": "add", "kind": 2048, "kindString": "Method", @@ -7904,14 +10140,14 @@ ], "signatures": [ { - "id": 338, + "id": 437, "name": "add", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 339, + "id": 438, "name": "emails", "kind": 32768, "kindString": "Parameter", @@ -7944,7 +10180,7 @@ ] }, { - "id": 331, + "id": 430, "name": "list", "kind": 2048, "kindString": "Method", @@ -7958,14 +10194,14 @@ ], "signatures": [ { - "id": 332, + "id": 431, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 333, + "id": 432, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -7973,14 +10209,14 @@ "type": { "type": "reflection", "declaration": { - "id": 334, + "id": 433, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 335, + "id": 434, "name": "page", "kind": 1024, "kindString": "Property", @@ -8000,7 +10236,7 @@ } }, { - "id": 336, + "id": 435, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -8025,8 +10261,8 @@ "title": "Properties", "kind": 1024, "children": [ - 335, - 336 + 434, + 435 ] } ] @@ -8052,7 +10288,7 @@ ] }, { - "id": 343, + "id": 442, "name": "listPublic", "kind": 2048, "kindString": "Method", @@ -8066,14 +10302,14 @@ ], "signatures": [ { - "id": 344, + "id": 443, "name": "listPublic", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 345, + "id": 444, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -8081,7 +10317,7 @@ "type": { "type": "reflection", "declaration": { - "id": 346, + "id": 445, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -8108,7 +10344,7 @@ ] }, { - "id": 340, + "id": 439, "name": "remove", "kind": 2048, "kindString": "Method", @@ -8122,14 +10358,14 @@ ], "signatures": [ { - "id": 341, + "id": 440, "name": "remove", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 342, + "id": 441, "name": "emails", "kind": 32768, "kindString": "Parameter", @@ -8162,7 +10398,7 @@ ] }, { - "id": 327, + "id": 426, "name": "setPrimaryVisibility", "kind": 2048, "kindString": "Method", @@ -8176,14 +10412,14 @@ ], "signatures": [ { - "id": 328, + "id": 427, "name": "setPrimaryVisibility", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 329, + "id": 428, "name": "visibility", "kind": 32768, "kindString": "Parameter", @@ -8194,7 +10430,7 @@ } }, { - "id": 330, + "id": 429, "name": "email", "kind": 32768, "kindString": "Parameter", @@ -8226,25 +10462,25 @@ "title": "Constructors", "kind": 512, "children": [ - 324 + 423 ] }, { "title": "Properties", "kind": 1024, "children": [ - 347 + 446 ] }, { "title": "Methods", "kind": 2048, "children": [ - 337, - 331, - 343, - 340, - 327 + 436, + 430, + 442, + 439, + 426 ] } ], @@ -8264,28 +10500,28 @@ ] }, { - "id": 348, + "id": 447, "name": "Follows", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 349, + "id": 448, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 350, + "id": 449, "name": "new Follows", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 351, + "id": 450, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -8297,7 +10533,7 @@ } }, { - "id": 352, + "id": 451, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -8305,14 +10541,14 @@ "type": { "type": "reflection", "declaration": { - "id": 353, + "id": 452, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 354, + "id": 453, "name": "username", "kind": 1024, "kindString": "Property", @@ -8335,7 +10571,7 @@ "title": "Properties", "kind": 1024, "children": [ - 354 + 453 ] } ] @@ -8345,14 +10581,14 @@ ], "type": { "type": "reference", - "id": 348, + "id": 447, "name": "Follows" } } ] }, { - "id": 355, + "id": 454, "name": "client", "kind": 1024, "kindString": "Property", @@ -8371,7 +10607,7 @@ } }, { - "id": 356, + "id": 455, "name": "username", "kind": 1024, "kindString": "Property", @@ -8389,7 +10625,7 @@ } }, { - "id": 357, + "id": 456, "name": "list", "kind": 2048, "kindString": "Method", @@ -8403,14 +10639,14 @@ ], "signatures": [ { - "id": 358, + "id": 457, "name": "list", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 359, + "id": 458, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -8418,14 +10654,14 @@ "type": { "type": "reflection", "declaration": { - "id": 360, + "id": 459, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 361, + "id": 460, "name": "page", "kind": 1024, "kindString": "Property", @@ -8445,7 +10681,7 @@ } }, { - "id": 362, + "id": 461, "name": "perPage", "kind": 1024, "kindString": "Property", @@ -8470,8 +10706,8 @@ "title": "Properties", "kind": 1024, "children": [ - 361, - 362 + 460, + 461 ] } ] @@ -8501,22 +10737,22 @@ "title": "Constructors", "kind": 512, "children": [ - 349 + 448 ] }, { "title": "Properties", "kind": 1024, "children": [ - 355, - 356 + 454, + 455 ] }, { "title": "Methods", "kind": 2048, "children": [ - 357 + 456 ] } ], @@ -8529,28 +10765,28 @@ ] }, { - "id": 2895, + "id": 3093, "name": "ForkManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2896, + "id": 3094, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2897, + "id": 3095, "name": "new ForkManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2898, + "id": 3096, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -8562,7 +10798,7 @@ } }, { - "id": 2899, + "id": 3097, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -8570,14 +10806,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2900, + "id": 3098, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2901, + "id": 3099, "name": "url", "kind": 1024, "kindString": "Property", @@ -8602,7 +10838,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2901 + 3099 ] } ] @@ -8612,24 +10848,24 @@ ], "type": { "type": "reference", - "id": 2895, + "id": 3093, "name": "ForkManager" }, "overwrites": { "type": "reference", - "id": 2834, + "id": 3032, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2833, + "id": 3031, "name": "Manager.constructor" } }, { - "id": 2902, + "id": 3100, "name": "client", "kind": 1024, "kindString": "Property", @@ -8648,12 +10884,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 3037, "name": "Manager.client" } }, { - "id": 2903, + "id": 3101, "name": "url", "kind": 1024, "kindString": "Property", @@ -8673,7 +10909,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 3038, "name": "Manager.url" } } @@ -8683,15 +10919,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2896 + 3094 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2902, - 2903 + 3100, + 3101 ] } ], @@ -8705,34 +10941,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2832, + "id": 3030, "name": "Manager" } ] }, { - "id": 363, + "id": 462, "name": "Gist", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 364, + "id": 463, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 365, + "id": 464, "name": "new Gist", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 366, + "id": 465, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -8740,14 +10976,14 @@ "type": { "type": "reflection", "declaration": { - "id": 367, + "id": 466, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 558, + "id": 657, "name": "comments", "kind": 1024, "kindString": "Property", @@ -8768,7 +11004,7 @@ } }, { - "id": 560, + "id": 659, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -8789,7 +11025,7 @@ } }, { - "id": 536, + "id": 635, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -8810,7 +11046,7 @@ } }, { - "id": 555, + "id": 654, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -8831,7 +11067,7 @@ } }, { - "id": 557, + "id": 656, "name": "description", "kind": 1024, "kindString": "Property", @@ -8861,7 +11097,7 @@ } }, { - "id": 542, + "id": 641, "name": "files", "kind": 1024, "kindString": "Property", @@ -8879,20 +11115,20 @@ "type": { "type": "reflection", "declaration": { - "id": 543, + "id": 642, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 544, + "id": 643, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 545, + "id": 644, "name": "key", "kind": 32768, "flags": {}, @@ -8908,14 +11144,14 @@ { "type": "reflection", "declaration": { - "id": 546, + "id": 645, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 553, + "id": 652, "name": "content", "kind": 1024, "kindString": "Property", @@ -8936,7 +11172,7 @@ } }, { - "id": 547, + "id": 646, "name": "filename", "kind": 1024, "kindString": "Property", @@ -8957,7 +11193,7 @@ } }, { - "id": 549, + "id": 648, "name": "language", "kind": 1024, "kindString": "Property", @@ -8978,7 +11214,7 @@ } }, { - "id": 550, + "id": 649, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -8999,7 +11235,7 @@ } }, { - "id": 551, + "id": 650, "name": "size", "kind": 1024, "kindString": "Property", @@ -9020,7 +11256,7 @@ } }, { - "id": 552, + "id": 651, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -9041,7 +11277,7 @@ } }, { - "id": 548, + "id": 647, "name": "type", "kind": 1024, "kindString": "Property", @@ -9067,13 +11303,13 @@ "title": "Properties", "kind": 1024, "children": [ - 553, - 547, - 549, - 550, - 551, - 552, - 548 + 652, + 646, + 648, + 649, + 650, + 651, + 647 ] } ], @@ -9097,7 +11333,7 @@ } }, { - "id": 453, + "id": 552, "name": "fork_of", "kind": 1024, "kindString": "Property", @@ -9125,14 +11361,14 @@ { "type": "reflection", "declaration": { - "id": 454, + "id": 553, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 477, + "id": 576, "name": "comments", "kind": 1024, "kindString": "Property", @@ -9152,7 +11388,7 @@ } }, { - "id": 501, + "id": 600, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -9172,7 +11408,7 @@ } }, { - "id": 457, + "id": 556, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -9192,7 +11428,7 @@ } }, { - "id": 474, + "id": 573, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -9212,7 +11448,7 @@ } }, { - "id": 476, + "id": 575, "name": "description", "kind": 1024, "kindString": "Property", @@ -9241,7 +11477,7 @@ } }, { - "id": 463, + "id": 562, "name": "files", "kind": 1024, "kindString": "Property", @@ -9258,20 +11494,20 @@ "type": { "type": "reflection", "declaration": { - "id": 464, + "id": 563, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 465, + "id": 564, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 466, + "id": 565, "name": "key", "kind": 32768, "flags": {}, @@ -9284,14 +11520,14 @@ "type": { "type": "reflection", "declaration": { - "id": 467, + "id": 566, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 468, + "id": 567, "name": "filename", "kind": 1024, "kindString": "Property", @@ -9312,7 +11548,7 @@ } }, { - "id": 470, + "id": 569, "name": "language", "kind": 1024, "kindString": "Property", @@ -9333,7 +11569,7 @@ } }, { - "id": 471, + "id": 570, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -9354,7 +11590,7 @@ } }, { - "id": 472, + "id": 571, "name": "size", "kind": 1024, "kindString": "Property", @@ -9375,7 +11611,7 @@ } }, { - "id": 469, + "id": 568, "name": "type", "kind": 1024, "kindString": "Property", @@ -9401,11 +11637,11 @@ "title": "Properties", "kind": 1024, "children": [ - 468, - 470, - 471, - 472, - 469 + 567, + 569, + 570, + 571, + 568 ] } ], @@ -9423,7 +11659,7 @@ } }, { - "id": 526, + "id": 625, "name": "forks", "kind": 1024, "kindString": "Property", @@ -9443,20 +11679,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 527, + "id": 626, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 528, + "id": 627, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 529, + "id": 628, "name": "key", "kind": 32768, "flags": {}, @@ -9476,7 +11712,7 @@ } }, { - "id": 456, + "id": 555, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -9496,7 +11732,7 @@ } }, { - "id": 460, + "id": 559, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -9516,7 +11752,7 @@ } }, { - "id": 461, + "id": 560, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -9536,7 +11772,7 @@ } }, { - "id": 530, + "id": 629, "name": "history", "kind": 1024, "kindString": "Property", @@ -9556,20 +11792,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 531, + "id": 630, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 532, + "id": 631, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 533, + "id": 632, "name": "key", "kind": 32768, "flags": {}, @@ -9589,7 +11825,7 @@ } }, { - "id": 462, + "id": 561, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9609,7 +11845,7 @@ } }, { - "id": 458, + "id": 557, "name": "id", "kind": 1024, "kindString": "Property", @@ -9629,7 +11865,7 @@ } }, { - "id": 459, + "id": 558, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -9649,7 +11885,7 @@ } }, { - "id": 502, + "id": 601, "name": "owner", "kind": 1024, "kindString": "Property", @@ -9674,14 +11910,14 @@ { "type": "reflection", "declaration": { - "id": 503, + "id": 602, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 509, + "id": 608, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -9701,7 +11937,7 @@ } }, { - "id": 505, + "id": 604, "name": "email", "kind": 1024, "kindString": "Property", @@ -9731,7 +11967,7 @@ } }, { - "id": 520, + "id": 619, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -9751,7 +11987,7 @@ } }, { - "id": 513, + "id": 612, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -9771,7 +12007,7 @@ } }, { - "id": 514, + "id": 613, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -9791,7 +12027,7 @@ } }, { - "id": 515, + "id": 614, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -9811,7 +12047,7 @@ } }, { - "id": 510, + "id": 609, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -9840,7 +12076,7 @@ } }, { - "id": 512, + "id": 611, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -9860,7 +12096,7 @@ } }, { - "id": 507, + "id": 606, "name": "id", "kind": 1024, "kindString": "Property", @@ -9880,7 +12116,7 @@ } }, { - "id": 506, + "id": 605, "name": "login", "kind": 1024, "kindString": "Property", @@ -9900,7 +12136,7 @@ } }, { - "id": 504, + "id": 603, "name": "name", "kind": 1024, "kindString": "Property", @@ -9930,7 +12166,7 @@ } }, { - "id": 508, + "id": 607, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -9950,7 +12186,7 @@ } }, { - "id": 518, + "id": 617, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -9970,7 +12206,7 @@ } }, { - "id": 521, + "id": 620, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -9990,7 +12226,7 @@ } }, { - "id": 519, + "id": 618, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -10010,7 +12246,7 @@ } }, { - "id": 523, + "id": 622, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -10030,7 +12266,7 @@ } }, { - "id": 524, + "id": 623, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -10051,7 +12287,7 @@ } }, { - "id": 516, + "id": 615, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -10071,7 +12307,7 @@ } }, { - "id": 517, + "id": 616, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -10091,7 +12327,7 @@ } }, { - "id": 522, + "id": 621, "name": "type", "kind": 1024, "kindString": "Property", @@ -10111,7 +12347,7 @@ } }, { - "id": 511, + "id": 610, "name": "url", "kind": 1024, "kindString": "Property", @@ -10136,27 +12372,27 @@ "title": "Properties", "kind": 1024, "children": [ - 509, - 505, - 520, - 513, - 514, - 515, - 510, - 512, - 507, - 506, - 504, - 508, - 518, - 521, - 519, - 523, - 524, - 516, - 517, - 522, - 511 + 608, + 604, + 619, + 612, + 613, + 614, + 609, + 611, + 606, + 605, + 603, + 607, + 617, + 620, + 618, + 622, + 623, + 615, + 616, + 621, + 610 ] } ] @@ -10166,7 +12402,7 @@ } }, { - "id": 473, + "id": 572, "name": "public", "kind": 1024, "kindString": "Property", @@ -10186,7 +12422,7 @@ } }, { - "id": 525, + "id": 624, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -10207,7 +12443,7 @@ } }, { - "id": 475, + "id": 574, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -10227,7 +12463,7 @@ } }, { - "id": 455, + "id": 554, "name": "url", "kind": 1024, "kindString": "Property", @@ -10247,7 +12483,7 @@ } }, { - "id": 478, + "id": 577, "name": "user", "kind": 1024, "kindString": "Property", @@ -10271,14 +12507,14 @@ { "type": "reflection", "declaration": { - "id": 479, + "id": 578, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 485, + "id": 584, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -10298,7 +12534,7 @@ } }, { - "id": 481, + "id": 580, "name": "email", "kind": 1024, "kindString": "Property", @@ -10328,7 +12564,7 @@ } }, { - "id": 496, + "id": 595, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -10348,7 +12584,7 @@ } }, { - "id": 489, + "id": 588, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -10368,7 +12604,7 @@ } }, { - "id": 490, + "id": 589, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -10388,7 +12624,7 @@ } }, { - "id": 491, + "id": 590, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -10408,7 +12644,7 @@ } }, { - "id": 486, + "id": 585, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -10437,7 +12673,7 @@ } }, { - "id": 488, + "id": 587, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -10457,7 +12693,7 @@ } }, { - "id": 483, + "id": 582, "name": "id", "kind": 1024, "kindString": "Property", @@ -10477,7 +12713,7 @@ } }, { - "id": 482, + "id": 581, "name": "login", "kind": 1024, "kindString": "Property", @@ -10497,7 +12733,7 @@ } }, { - "id": 480, + "id": 579, "name": "name", "kind": 1024, "kindString": "Property", @@ -10527,7 +12763,7 @@ } }, { - "id": 484, + "id": 583, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -10547,7 +12783,7 @@ } }, { - "id": 494, + "id": 593, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -10567,7 +12803,7 @@ } }, { - "id": 497, + "id": 596, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -10587,7 +12823,7 @@ } }, { - "id": 495, + "id": 594, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -10607,7 +12843,7 @@ } }, { - "id": 499, + "id": 598, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -10627,7 +12863,7 @@ } }, { - "id": 500, + "id": 599, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -10648,7 +12884,7 @@ } }, { - "id": 492, + "id": 591, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -10668,7 +12904,7 @@ } }, { - "id": 493, + "id": 592, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -10688,7 +12924,7 @@ } }, { - "id": 498, + "id": 597, "name": "type", "kind": 1024, "kindString": "Property", @@ -10708,7 +12944,7 @@ } }, { - "id": 487, + "id": 586, "name": "url", "kind": 1024, "kindString": "Property", @@ -10733,27 +12969,27 @@ "title": "Properties", "kind": 1024, "children": [ - 485, - 481, - 496, - 489, - 490, - 491, - 486, - 488, - 483, - 482, - 480, - 484, - 494, - 497, - 495, - 499, - 500, - 492, - 493, - 498, - 487 + 584, + 580, + 595, + 588, + 589, + 590, + 585, + 587, + 582, + 581, + 579, + 583, + 593, + 596, + 594, + 598, + 599, + 591, + 592, + 597, + 586 ] } ] @@ -10768,26 +13004,26 @@ "title": "Properties", "kind": 1024, "children": [ - 477, - 501, - 457, - 474, - 476, - 463, - 526, - 456, - 460, - 461, - 530, - 462, - 458, - 459, - 502, - 473, - 525, - 475, - 455, - 478 + 576, + 600, + 556, + 573, + 575, + 562, + 625, + 555, + 559, + 560, + 629, + 561, + 557, + 558, + 601, + 572, + 624, + 574, + 554, + 577 ] } ] @@ -10797,7 +13033,7 @@ } }, { - "id": 368, + "id": 467, "name": "forks", "kind": 1024, "kindString": "Property", @@ -10824,14 +13060,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 369, + "id": 468, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 418, + "id": 517, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -10852,7 +13088,7 @@ } }, { - "id": 370, + "id": 469, "name": "id", "kind": 1024, "kindString": "Property", @@ -10873,7 +13109,7 @@ } }, { - "id": 419, + "id": 518, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -10894,7 +13130,7 @@ } }, { - "id": 371, + "id": 470, "name": "url", "kind": 1024, "kindString": "Property", @@ -10915,7 +13151,7 @@ } }, { - "id": 372, + "id": 471, "name": "user", "kind": 1024, "kindString": "Property", @@ -10933,14 +13169,14 @@ "type": { "type": "reflection", "declaration": { - "id": 373, + "id": 472, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 377, + "id": 476, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -10960,7 +13196,7 @@ } }, { - "id": 398, + "id": 497, "name": "bio", "kind": 1024, "kindString": "Property", @@ -10989,7 +13225,7 @@ } }, { - "id": 394, + "id": 493, "name": "blog", "kind": 1024, "kindString": "Property", @@ -11018,7 +13254,7 @@ } }, { - "id": 417, + "id": 516, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -11039,7 +13275,7 @@ } }, { - "id": 393, + "id": 492, "name": "company", "kind": 1024, "kindString": "Property", @@ -11068,7 +13304,7 @@ } }, { - "id": 404, + "id": 503, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -11088,7 +13324,7 @@ } }, { - "id": 416, + "id": 515, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -11109,7 +13345,7 @@ } }, { - "id": 396, + "id": 495, "name": "email", "kind": 1024, "kindString": "Property", @@ -11138,7 +13374,7 @@ } }, { - "id": 388, + "id": 487, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -11158,7 +13394,7 @@ } }, { - "id": 402, + "id": 501, "name": "followers", "kind": 1024, "kindString": "Property", @@ -11178,7 +13414,7 @@ } }, { - "id": 381, + "id": 480, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -11198,7 +13434,7 @@ } }, { - "id": 403, + "id": 502, "name": "following", "kind": 1024, "kindString": "Property", @@ -11218,7 +13454,7 @@ } }, { - "id": 382, + "id": 481, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -11238,7 +13474,7 @@ } }, { - "id": 383, + "id": 482, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -11258,7 +13494,7 @@ } }, { - "id": 378, + "id": 477, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -11287,7 +13523,7 @@ } }, { - "id": 397, + "id": 496, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -11316,7 +13552,7 @@ } }, { - "id": 380, + "id": 479, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -11336,7 +13572,7 @@ } }, { - "id": 375, + "id": 474, "name": "id", "kind": 1024, "kindString": "Property", @@ -11356,7 +13592,7 @@ } }, { - "id": 395, + "id": 494, "name": "location", "kind": 1024, "kindString": "Property", @@ -11385,7 +13621,7 @@ } }, { - "id": 374, + "id": 473, "name": "login", "kind": 1024, "kindString": "Property", @@ -11405,7 +13641,7 @@ } }, { - "id": 392, + "id": 491, "name": "name", "kind": 1024, "kindString": "Property", @@ -11434,7 +13670,7 @@ } }, { - "id": 376, + "id": 475, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -11454,7 +13690,7 @@ } }, { - "id": 386, + "id": 485, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -11474,7 +13710,7 @@ } }, { - "id": 415, + "id": 514, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -11495,7 +13731,7 @@ } }, { - "id": 406, + "id": 505, "name": "plan", "kind": 1024, "kindString": "Property", @@ -11513,14 +13749,14 @@ "type": { "type": "reflection", "declaration": { - "id": 407, + "id": 506, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 408, + "id": 507, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -11540,7 +13776,7 @@ } }, { - "id": 409, + "id": 508, "name": "name", "kind": 1024, "kindString": "Property", @@ -11560,7 +13796,7 @@ } }, { - "id": 411, + "id": 510, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -11580,7 +13816,7 @@ } }, { - "id": 410, + "id": 509, "name": "space", "kind": 1024, "kindString": "Property", @@ -11605,10 +13841,10 @@ "title": "Properties", "kind": 1024, "children": [ - 408, - 409, - 411, - 410 + 507, + 508, + 510, + 509 ] } ] @@ -11616,7 +13852,7 @@ } }, { - "id": 413, + "id": 512, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -11637,7 +13873,7 @@ } }, { - "id": 401, + "id": 500, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -11657,7 +13893,7 @@ } }, { - "id": 400, + "id": 499, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -11677,7 +13913,7 @@ } }, { - "id": 389, + "id": 488, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -11697,7 +13933,7 @@ } }, { - "id": 387, + "id": 486, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -11717,7 +13953,7 @@ } }, { - "id": 391, + "id": 490, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -11737,7 +13973,7 @@ } }, { - "id": 384, + "id": 483, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -11757,7 +13993,7 @@ } }, { - "id": 385, + "id": 484, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -11777,7 +14013,7 @@ } }, { - "id": 412, + "id": 511, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -11807,7 +14043,7 @@ } }, { - "id": 414, + "id": 513, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -11828,7 +14064,7 @@ } }, { - "id": 399, + "id": 498, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -11858,7 +14094,7 @@ } }, { - "id": 390, + "id": 489, "name": "type", "kind": 1024, "kindString": "Property", @@ -11878,7 +14114,7 @@ } }, { - "id": 405, + "id": 504, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -11898,7 +14134,7 @@ } }, { - "id": 379, + "id": 478, "name": "url", "kind": 1024, "kindString": "Property", @@ -11923,45 +14159,45 @@ "title": "Properties", "kind": 1024, "children": [ - 377, - 398, - 394, - 417, - 393, - 404, - 416, - 396, - 388, - 402, - 381, - 403, - 382, - 383, - 378, - 397, - 380, - 375, - 395, - 374, - 392, - 376, - 386, - 415, - 406, - 413, - 401, - 400, - 389, - 387, - 391, - 384, - 385, - 412, - 414, - 399, - 390, - 405, - 379 + 476, + 497, + 493, + 516, + 492, + 503, + 515, + 495, + 487, + 501, + 480, + 502, + 481, + 482, + 477, + 496, + 479, + 474, + 494, + 473, + 491, + 475, + 485, + 514, + 505, + 512, + 500, + 499, + 488, + 486, + 490, + 483, + 484, + 511, + 513, + 498, + 489, + 504, + 478 ] } ] @@ -11974,11 +14210,11 @@ "title": "Properties", "kind": 1024, "children": [ - 418, - 370, - 419, - 371, - 372 + 517, + 469, + 518, + 470, + 471 ] } ] @@ -11989,7 +14225,7 @@ } }, { - "id": 535, + "id": 634, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -12010,7 +14246,7 @@ } }, { - "id": 539, + "id": 638, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -12031,7 +14267,7 @@ } }, { - "id": 540, + "id": 639, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -12052,7 +14288,7 @@ } }, { - "id": 420, + "id": 519, "name": "history", "kind": 1024, "kindString": "Property", @@ -12079,14 +14315,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 421, + "id": 520, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 447, + "id": 546, "name": "change_status", "kind": 1024, "kindString": "Property", @@ -12104,14 +14340,14 @@ "type": { "type": "reflection", "declaration": { - "id": 448, + "id": 547, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 450, + "id": 549, "name": "additions", "kind": 1024, "kindString": "Property", @@ -12132,7 +14368,7 @@ } }, { - "id": 451, + "id": 550, "name": "deletions", "kind": 1024, "kindString": "Property", @@ -12153,7 +14389,7 @@ } }, { - "id": 449, + "id": 548, "name": "total", "kind": 1024, "kindString": "Property", @@ -12179,9 +14415,9 @@ "title": "Properties", "kind": 1024, "children": [ - 450, - 451, - 449 + 549, + 550, + 548 ] } ] @@ -12189,7 +14425,7 @@ } }, { - "id": 446, + "id": 545, "name": "committed_at", "kind": 1024, "kindString": "Property", @@ -12210,7 +14446,7 @@ } }, { - "id": 452, + "id": 551, "name": "url", "kind": 1024, "kindString": "Property", @@ -12231,7 +14467,7 @@ } }, { - "id": 422, + "id": 521, "name": "user", "kind": 1024, "kindString": "Property", @@ -12256,14 +14492,14 @@ { "type": "reflection", "declaration": { - "id": 423, + "id": 522, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 429, + "id": 528, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -12283,7 +14519,7 @@ } }, { - "id": 425, + "id": 524, "name": "email", "kind": 1024, "kindString": "Property", @@ -12313,7 +14549,7 @@ } }, { - "id": 440, + "id": 539, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -12333,7 +14569,7 @@ } }, { - "id": 433, + "id": 532, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -12353,7 +14589,7 @@ } }, { - "id": 434, + "id": 533, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -12373,7 +14609,7 @@ } }, { - "id": 435, + "id": 534, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -12393,7 +14629,7 @@ } }, { - "id": 430, + "id": 529, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -12422,7 +14658,7 @@ } }, { - "id": 432, + "id": 531, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12442,7 +14678,7 @@ } }, { - "id": 427, + "id": 526, "name": "id", "kind": 1024, "kindString": "Property", @@ -12462,7 +14698,7 @@ } }, { - "id": 426, + "id": 525, "name": "login", "kind": 1024, "kindString": "Property", @@ -12482,7 +14718,7 @@ } }, { - "id": 424, + "id": 523, "name": "name", "kind": 1024, "kindString": "Property", @@ -12512,7 +14748,7 @@ } }, { - "id": 428, + "id": 527, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12532,7 +14768,7 @@ } }, { - "id": 438, + "id": 537, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -12552,7 +14788,7 @@ } }, { - "id": 441, + "id": 540, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -12572,7 +14808,7 @@ } }, { - "id": 439, + "id": 538, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -12592,7 +14828,7 @@ } }, { - "id": 443, + "id": 542, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -12612,7 +14848,7 @@ } }, { - "id": 444, + "id": 543, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -12633,7 +14869,7 @@ } }, { - "id": 436, + "id": 535, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -12653,7 +14889,7 @@ } }, { - "id": 437, + "id": 536, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -12673,7 +14909,7 @@ } }, { - "id": 442, + "id": 541, "name": "type", "kind": 1024, "kindString": "Property", @@ -12693,7 +14929,7 @@ } }, { - "id": 431, + "id": 530, "name": "url", "kind": 1024, "kindString": "Property", @@ -12718,27 +14954,27 @@ "title": "Properties", "kind": 1024, "children": [ - 429, - 425, - 440, - 433, - 434, - 435, - 430, - 432, - 427, - 426, - 424, - 428, - 438, - 441, - 439, - 443, - 444, - 436, - 437, - 442, - 431 + 528, + 524, + 539, + 532, + 533, + 534, + 529, + 531, + 526, + 525, + 523, + 527, + 537, + 540, + 538, + 542, + 543, + 535, + 536, + 541, + 530 ] } ] @@ -12748,7 +14984,7 @@ } }, { - "id": 445, + "id": 544, "name": "version", "kind": 1024, "kindString": "Property", @@ -12774,11 +15010,11 @@ "title": "Properties", "kind": 1024, "children": [ - 447, - 446, - 452, - 422, - 445 + 546, + 545, + 551, + 521, + 544 ] } ] @@ -12789,7 +15025,7 @@ } }, { - "id": 541, + "id": 640, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -12810,7 +15046,7 @@ } }, { - "id": 537, + "id": 636, "name": "id", "kind": 1024, "kindString": "Property", @@ -12831,7 +15067,7 @@ } }, { - "id": 538, + "id": 637, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -12852,7 +15088,7 @@ } }, { - "id": 561, + "id": 660, "name": "owner", "kind": 1024, "kindString": "Property", @@ -12877,14 +15113,14 @@ { "type": "reflection", "declaration": { - "id": 562, + "id": 661, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 568, + "id": 667, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -12904,7 +15140,7 @@ } }, { - "id": 564, + "id": 663, "name": "email", "kind": 1024, "kindString": "Property", @@ -12934,7 +15170,7 @@ } }, { - "id": 579, + "id": 678, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -12954,7 +15190,7 @@ } }, { - "id": 572, + "id": 671, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -12974,7 +15210,7 @@ } }, { - "id": 573, + "id": 672, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -12994,7 +15230,7 @@ } }, { - "id": 574, + "id": 673, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -13014,7 +15250,7 @@ } }, { - "id": 569, + "id": 668, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -13043,7 +15279,7 @@ } }, { - "id": 571, + "id": 670, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -13063,7 +15299,7 @@ } }, { - "id": 566, + "id": 665, "name": "id", "kind": 1024, "kindString": "Property", @@ -13083,7 +15319,7 @@ } }, { - "id": 565, + "id": 664, "name": "login", "kind": 1024, "kindString": "Property", @@ -13103,7 +15339,7 @@ } }, { - "id": 563, + "id": 662, "name": "name", "kind": 1024, "kindString": "Property", @@ -13133,7 +15369,7 @@ } }, { - "id": 567, + "id": 666, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -13153,7 +15389,7 @@ } }, { - "id": 577, + "id": 676, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -13173,7 +15409,7 @@ } }, { - "id": 580, + "id": 679, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -13193,7 +15429,7 @@ } }, { - "id": 578, + "id": 677, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -13213,7 +15449,7 @@ } }, { - "id": 582, + "id": 681, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -13233,7 +15469,7 @@ } }, { - "id": 583, + "id": 682, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -13254,7 +15490,7 @@ } }, { - "id": 575, + "id": 674, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -13274,7 +15510,7 @@ } }, { - "id": 576, + "id": 675, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -13294,7 +15530,7 @@ } }, { - "id": 581, + "id": 680, "name": "type", "kind": 1024, "kindString": "Property", @@ -13314,7 +15550,7 @@ } }, { - "id": 570, + "id": 669, "name": "url", "kind": 1024, "kindString": "Property", @@ -13339,27 +15575,27 @@ "title": "Properties", "kind": 1024, "children": [ - 568, - 564, - 579, - 572, - 573, - 574, - 569, - 571, - 566, - 565, - 563, - 567, - 577, - 580, - 578, - 582, - 583, - 575, - 576, - 581, - 570 + 667, + 663, + 678, + 671, + 672, + 673, + 668, + 670, + 665, + 664, + 662, + 666, + 676, + 679, + 677, + 681, + 682, + 674, + 675, + 680, + 669 ] } ] @@ -13369,7 +15605,7 @@ } }, { - "id": 554, + "id": 653, "name": "public", "kind": 1024, "kindString": "Property", @@ -13390,7 +15626,7 @@ } }, { - "id": 584, + "id": 683, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -13411,7 +15647,7 @@ } }, { - "id": 556, + "id": 655, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -13432,7 +15668,7 @@ } }, { - "id": 534, + "id": 633, "name": "url", "kind": 1024, "kindString": "Property", @@ -13453,7 +15689,7 @@ } }, { - "id": 559, + "id": 658, "name": "user", "kind": 1024, "kindString": "Property", @@ -13488,27 +15724,27 @@ "title": "Properties", "kind": 1024, "children": [ - 558, - 560, - 536, - 555, - 557, - 542, - 453, - 368, - 535, - 539, - 540, - 420, - 541, - 537, - 538, - 561, - 554, - 584, - 556, - 534, - 559 + 657, + 659, + 635, + 654, + 656, + 641, + 552, + 467, + 634, + 638, + 639, + 519, + 640, + 636, + 637, + 660, + 653, + 683, + 655, + 633, + 658 ] } ] @@ -13516,7 +15752,7 @@ } }, { - "id": 585, + "id": 684, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -13524,14 +15760,14 @@ "type": { "type": "reflection", "declaration": { - "id": 586, + "id": 685, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 587, + "id": 686, "name": "client", "kind": 1024, "kindString": "Property", @@ -13555,7 +15791,7 @@ "title": "Properties", "kind": 1024, "children": [ - 587 + 686 ] } ] @@ -13565,7 +15801,7 @@ ], "type": { "type": "reference", - "id": 363, + "id": 462, "name": "Gist" }, "overwrites": { @@ -13582,7 +15818,7 @@ } }, { - "id": 812, + "id": 911, "name": "client", "kind": 1024, "kindString": "Property", @@ -13606,7 +15842,7 @@ } }, { - "id": 588, + "id": 687, "name": "data", "kind": 1024, "kindString": "Property", @@ -13624,14 +15860,14 @@ "type": { "type": "reflection", "declaration": { - "id": 589, + "id": 688, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 780, + "id": 879, "name": "comments", "kind": 1024, "kindString": "Property", @@ -13652,7 +15888,7 @@ } }, { - "id": 782, + "id": 881, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -13673,7 +15909,7 @@ } }, { - "id": 758, + "id": 857, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -13694,7 +15930,7 @@ } }, { - "id": 777, + "id": 876, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -13715,7 +15951,7 @@ } }, { - "id": 779, + "id": 878, "name": "description", "kind": 1024, "kindString": "Property", @@ -13745,7 +15981,7 @@ } }, { - "id": 764, + "id": 863, "name": "files", "kind": 1024, "kindString": "Property", @@ -13763,20 +15999,20 @@ "type": { "type": "reflection", "declaration": { - "id": 765, + "id": 864, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 766, + "id": 865, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 767, + "id": 866, "name": "key", "kind": 32768, "flags": {}, @@ -13792,14 +16028,14 @@ { "type": "reflection", "declaration": { - "id": 768, + "id": 867, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 775, + "id": 874, "name": "content", "kind": 1024, "kindString": "Property", @@ -13820,7 +16056,7 @@ } }, { - "id": 769, + "id": 868, "name": "filename", "kind": 1024, "kindString": "Property", @@ -13841,7 +16077,7 @@ } }, { - "id": 771, + "id": 870, "name": "language", "kind": 1024, "kindString": "Property", @@ -13862,7 +16098,7 @@ } }, { - "id": 772, + "id": 871, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -13883,7 +16119,7 @@ } }, { - "id": 773, + "id": 872, "name": "size", "kind": 1024, "kindString": "Property", @@ -13904,7 +16140,7 @@ } }, { - "id": 774, + "id": 873, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -13925,7 +16161,7 @@ } }, { - "id": 770, + "id": 869, "name": "type", "kind": 1024, "kindString": "Property", @@ -13951,13 +16187,13 @@ "title": "Properties", "kind": 1024, "children": [ - 775, - 769, - 771, - 772, - 773, - 774, - 770 + 874, + 868, + 870, + 871, + 872, + 873, + 869 ] } ], @@ -13981,7 +16217,7 @@ } }, { - "id": 675, + "id": 774, "name": "fork_of", "kind": 1024, "kindString": "Property", @@ -14009,14 +16245,14 @@ { "type": "reflection", "declaration": { - "id": 676, + "id": 775, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 699, + "id": 798, "name": "comments", "kind": 1024, "kindString": "Property", @@ -14036,7 +16272,7 @@ } }, { - "id": 723, + "id": 822, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -14056,7 +16292,7 @@ } }, { - "id": 679, + "id": 778, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -14076,7 +16312,7 @@ } }, { - "id": 696, + "id": 795, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -14096,7 +16332,7 @@ } }, { - "id": 698, + "id": 797, "name": "description", "kind": 1024, "kindString": "Property", @@ -14125,7 +16361,7 @@ } }, { - "id": 685, + "id": 784, "name": "files", "kind": 1024, "kindString": "Property", @@ -14142,20 +16378,20 @@ "type": { "type": "reflection", "declaration": { - "id": 686, + "id": 785, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 687, + "id": 786, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 688, + "id": 787, "name": "key", "kind": 32768, "flags": {}, @@ -14168,14 +16404,14 @@ "type": { "type": "reflection", "declaration": { - "id": 689, + "id": 788, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 690, + "id": 789, "name": "filename", "kind": 1024, "kindString": "Property", @@ -14196,7 +16432,7 @@ } }, { - "id": 692, + "id": 791, "name": "language", "kind": 1024, "kindString": "Property", @@ -14217,7 +16453,7 @@ } }, { - "id": 693, + "id": 792, "name": "raw_url", "kind": 1024, "kindString": "Property", @@ -14238,7 +16474,7 @@ } }, { - "id": 694, + "id": 793, "name": "size", "kind": 1024, "kindString": "Property", @@ -14259,7 +16495,7 @@ } }, { - "id": 691, + "id": 790, "name": "type", "kind": 1024, "kindString": "Property", @@ -14285,11 +16521,11 @@ "title": "Properties", "kind": 1024, "children": [ - 690, - 692, - 693, - 694, - 691 + 789, + 791, + 792, + 793, + 790 ] } ], @@ -14307,7 +16543,7 @@ } }, { - "id": 748, + "id": 847, "name": "forks", "kind": 1024, "kindString": "Property", @@ -14327,20 +16563,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 749, + "id": 848, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 750, + "id": 849, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 751, + "id": 850, "name": "key", "kind": 32768, "flags": {}, @@ -14360,7 +16596,7 @@ } }, { - "id": 678, + "id": 777, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -14380,7 +16616,7 @@ } }, { - "id": 682, + "id": 781, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -14400,7 +16636,7 @@ } }, { - "id": 683, + "id": 782, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -14420,7 +16656,7 @@ } }, { - "id": 752, + "id": 851, "name": "history", "kind": 1024, "kindString": "Property", @@ -14440,20 +16676,20 @@ "elementType": { "type": "reflection", "declaration": { - "id": 753, + "id": 852, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 754, + "id": 853, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 755, + "id": 854, "name": "key", "kind": 32768, "flags": {}, @@ -14473,7 +16709,7 @@ } }, { - "id": 684, + "id": 783, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -14493,7 +16729,7 @@ } }, { - "id": 680, + "id": 779, "name": "id", "kind": 1024, "kindString": "Property", @@ -14513,7 +16749,7 @@ } }, { - "id": 681, + "id": 780, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14533,7 +16769,7 @@ } }, { - "id": 724, + "id": 823, "name": "owner", "kind": 1024, "kindString": "Property", @@ -14558,14 +16794,14 @@ { "type": "reflection", "declaration": { - "id": 725, + "id": 824, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 731, + "id": 830, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -14585,7 +16821,7 @@ } }, { - "id": 727, + "id": 826, "name": "email", "kind": 1024, "kindString": "Property", @@ -14615,7 +16851,7 @@ } }, { - "id": 742, + "id": 841, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -14635,7 +16871,7 @@ } }, { - "id": 735, + "id": 834, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -14655,7 +16891,7 @@ } }, { - "id": 736, + "id": 835, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -14675,7 +16911,7 @@ } }, { - "id": 737, + "id": 836, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -14695,7 +16931,7 @@ } }, { - "id": 732, + "id": 831, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -14724,7 +16960,7 @@ } }, { - "id": 734, + "id": 833, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -14744,7 +16980,7 @@ } }, { - "id": 729, + "id": 828, "name": "id", "kind": 1024, "kindString": "Property", @@ -14764,7 +17000,7 @@ } }, { - "id": 728, + "id": 827, "name": "login", "kind": 1024, "kindString": "Property", @@ -14784,7 +17020,7 @@ } }, { - "id": 726, + "id": 825, "name": "name", "kind": 1024, "kindString": "Property", @@ -14814,7 +17050,7 @@ } }, { - "id": 730, + "id": 829, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -14834,7 +17070,7 @@ } }, { - "id": 740, + "id": 839, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -14854,7 +17090,7 @@ } }, { - "id": 743, + "id": 842, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -14874,7 +17110,7 @@ } }, { - "id": 741, + "id": 840, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -14894,7 +17130,7 @@ } }, { - "id": 745, + "id": 844, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -14914,7 +17150,7 @@ } }, { - "id": 746, + "id": 845, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -14935,7 +17171,7 @@ } }, { - "id": 738, + "id": 837, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -14955,7 +17191,7 @@ } }, { - "id": 739, + "id": 838, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -14975,7 +17211,7 @@ } }, { - "id": 744, + "id": 843, "name": "type", "kind": 1024, "kindString": "Property", @@ -14995,7 +17231,7 @@ } }, { - "id": 733, + "id": 832, "name": "url", "kind": 1024, "kindString": "Property", @@ -15020,27 +17256,27 @@ "title": "Properties", "kind": 1024, "children": [ - 731, - 727, - 742, - 735, - 736, - 737, - 732, - 734, - 729, - 728, - 726, - 730, - 740, - 743, - 741, - 745, - 746, - 738, - 739, - 744, - 733 + 830, + 826, + 841, + 834, + 835, + 836, + 831, + 833, + 828, + 827, + 825, + 829, + 839, + 842, + 840, + 844, + 845, + 837, + 838, + 843, + 832 ] } ] @@ -15050,7 +17286,7 @@ } }, { - "id": 695, + "id": 794, "name": "public", "kind": 1024, "kindString": "Property", @@ -15070,7 +17306,7 @@ } }, { - "id": 747, + "id": 846, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -15091,7 +17327,7 @@ } }, { - "id": 697, + "id": 796, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -15111,7 +17347,7 @@ } }, { - "id": 677, + "id": 776, "name": "url", "kind": 1024, "kindString": "Property", @@ -15131,7 +17367,7 @@ } }, { - "id": 700, + "id": 799, "name": "user", "kind": 1024, "kindString": "Property", @@ -15155,14 +17391,14 @@ { "type": "reflection", "declaration": { - "id": 701, + "id": 800, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 707, + "id": 806, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -15182,7 +17418,7 @@ } }, { - "id": 703, + "id": 802, "name": "email", "kind": 1024, "kindString": "Property", @@ -15212,7 +17448,7 @@ } }, { - "id": 718, + "id": 817, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -15232,7 +17468,7 @@ } }, { - "id": 711, + "id": 810, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -15252,7 +17488,7 @@ } }, { - "id": 712, + "id": 811, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -15272,7 +17508,7 @@ } }, { - "id": 713, + "id": 812, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -15292,7 +17528,7 @@ } }, { - "id": 708, + "id": 807, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -15321,7 +17557,7 @@ } }, { - "id": 710, + "id": 809, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -15341,7 +17577,7 @@ } }, { - "id": 705, + "id": 804, "name": "id", "kind": 1024, "kindString": "Property", @@ -15361,7 +17597,7 @@ } }, { - "id": 704, + "id": 803, "name": "login", "kind": 1024, "kindString": "Property", @@ -15381,7 +17617,7 @@ } }, { - "id": 702, + "id": 801, "name": "name", "kind": 1024, "kindString": "Property", @@ -15411,7 +17647,7 @@ } }, { - "id": 706, + "id": 805, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -15431,7 +17667,7 @@ } }, { - "id": 716, + "id": 815, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -15451,7 +17687,7 @@ } }, { - "id": 719, + "id": 818, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -15471,7 +17707,7 @@ } }, { - "id": 717, + "id": 816, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -15491,7 +17727,7 @@ } }, { - "id": 721, + "id": 820, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -15511,7 +17747,7 @@ } }, { - "id": 722, + "id": 821, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -15532,7 +17768,7 @@ } }, { - "id": 714, + "id": 813, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -15552,7 +17788,7 @@ } }, { - "id": 715, + "id": 814, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -15572,7 +17808,7 @@ } }, { - "id": 720, + "id": 819, "name": "type", "kind": 1024, "kindString": "Property", @@ -15592,7 +17828,7 @@ } }, { - "id": 709, + "id": 808, "name": "url", "kind": 1024, "kindString": "Property", @@ -15617,27 +17853,27 @@ "title": "Properties", "kind": 1024, "children": [ - 707, - 703, - 718, - 711, - 712, - 713, - 708, - 710, - 705, - 704, - 702, - 706, - 716, - 719, - 717, - 721, - 722, - 714, - 715, - 720, - 709 + 806, + 802, + 817, + 810, + 811, + 812, + 807, + 809, + 804, + 803, + 801, + 805, + 815, + 818, + 816, + 820, + 821, + 813, + 814, + 819, + 808 ] } ] @@ -15652,26 +17888,26 @@ "title": "Properties", "kind": 1024, "children": [ - 699, - 723, - 679, - 696, - 698, - 685, - 748, - 678, - 682, - 683, - 752, - 684, - 680, - 681, - 724, - 695, - 747, - 697, - 677, - 700 + 798, + 822, + 778, + 795, + 797, + 784, + 847, + 777, + 781, + 782, + 851, + 783, + 779, + 780, + 823, + 794, + 846, + 796, + 776, + 799 ] } ] @@ -15681,7 +17917,7 @@ } }, { - "id": 590, + "id": 689, "name": "forks", "kind": 1024, "kindString": "Property", @@ -15708,14 +17944,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 591, + "id": 690, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 640, + "id": 739, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15736,7 +17972,7 @@ } }, { - "id": 592, + "id": 691, "name": "id", "kind": 1024, "kindString": "Property", @@ -15757,7 +17993,7 @@ } }, { - "id": 641, + "id": 740, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -15778,7 +18014,7 @@ } }, { - "id": 593, + "id": 692, "name": "url", "kind": 1024, "kindString": "Property", @@ -15799,7 +18035,7 @@ } }, { - "id": 594, + "id": 693, "name": "user", "kind": 1024, "kindString": "Property", @@ -15817,14 +18053,14 @@ "type": { "type": "reflection", "declaration": { - "id": 595, + "id": 694, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 599, + "id": 698, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -15844,7 +18080,7 @@ } }, { - "id": 620, + "id": 719, "name": "bio", "kind": 1024, "kindString": "Property", @@ -15873,7 +18109,7 @@ } }, { - "id": 616, + "id": 715, "name": "blog", "kind": 1024, "kindString": "Property", @@ -15902,7 +18138,7 @@ } }, { - "id": 639, + "id": 738, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -15923,7 +18159,7 @@ } }, { - "id": 615, + "id": 714, "name": "company", "kind": 1024, "kindString": "Property", @@ -15952,7 +18188,7 @@ } }, { - "id": 626, + "id": 725, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -15972,7 +18208,7 @@ } }, { - "id": 638, + "id": 737, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -15993,7 +18229,7 @@ } }, { - "id": 618, + "id": 717, "name": "email", "kind": 1024, "kindString": "Property", @@ -16022,7 +18258,7 @@ } }, { - "id": 610, + "id": 709, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -16042,7 +18278,7 @@ } }, { - "id": 624, + "id": 723, "name": "followers", "kind": 1024, "kindString": "Property", @@ -16062,7 +18298,7 @@ } }, { - "id": 603, + "id": 702, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -16082,7 +18318,7 @@ } }, { - "id": 625, + "id": 724, "name": "following", "kind": 1024, "kindString": "Property", @@ -16102,7 +18338,7 @@ } }, { - "id": 604, + "id": 703, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -16122,7 +18358,7 @@ } }, { - "id": 605, + "id": 704, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -16142,7 +18378,7 @@ } }, { - "id": 600, + "id": 699, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -16171,7 +18407,7 @@ } }, { - "id": 619, + "id": 718, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -16200,7 +18436,7 @@ } }, { - "id": 602, + "id": 701, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -16220,7 +18456,7 @@ } }, { - "id": 597, + "id": 696, "name": "id", "kind": 1024, "kindString": "Property", @@ -16240,7 +18476,7 @@ } }, { - "id": 617, + "id": 716, "name": "location", "kind": 1024, "kindString": "Property", @@ -16269,7 +18505,7 @@ } }, { - "id": 596, + "id": 695, "name": "login", "kind": 1024, "kindString": "Property", @@ -16289,7 +18525,7 @@ } }, { - "id": 614, + "id": 713, "name": "name", "kind": 1024, "kindString": "Property", @@ -16318,7 +18554,7 @@ } }, { - "id": 598, + "id": 697, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -16338,7 +18574,7 @@ } }, { - "id": 608, + "id": 707, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -16358,7 +18594,7 @@ } }, { - "id": 637, + "id": 736, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -16379,7 +18615,7 @@ } }, { - "id": 628, + "id": 727, "name": "plan", "kind": 1024, "kindString": "Property", @@ -16397,14 +18633,14 @@ "type": { "type": "reflection", "declaration": { - "id": 629, + "id": 728, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 630, + "id": 729, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -16424,7 +18660,7 @@ } }, { - "id": 631, + "id": 730, "name": "name", "kind": 1024, "kindString": "Property", @@ -16444,7 +18680,7 @@ } }, { - "id": 633, + "id": 732, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -16464,7 +18700,7 @@ } }, { - "id": 632, + "id": 731, "name": "space", "kind": 1024, "kindString": "Property", @@ -16489,10 +18725,10 @@ "title": "Properties", "kind": 1024, "children": [ - 630, - 631, - 633, - 632 + 729, + 730, + 732, + 731 ] } ] @@ -16500,7 +18736,7 @@ } }, { - "id": 635, + "id": 734, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -16521,7 +18757,7 @@ } }, { - "id": 623, + "id": 722, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -16541,7 +18777,7 @@ } }, { - "id": 622, + "id": 721, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -16561,7 +18797,7 @@ } }, { - "id": 611, + "id": 710, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -16581,7 +18817,7 @@ } }, { - "id": 609, + "id": 708, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -16601,7 +18837,7 @@ } }, { - "id": 613, + "id": 712, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -16621,7 +18857,7 @@ } }, { - "id": 606, + "id": 705, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -16641,7 +18877,7 @@ } }, { - "id": 607, + "id": 706, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -16661,7 +18897,7 @@ } }, { - "id": 634, + "id": 733, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -16691,7 +18927,7 @@ } }, { - "id": 636, + "id": 735, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -16712,7 +18948,7 @@ } }, { - "id": 621, + "id": 720, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -16742,7 +18978,7 @@ } }, { - "id": 612, + "id": 711, "name": "type", "kind": 1024, "kindString": "Property", @@ -16762,7 +18998,7 @@ } }, { - "id": 627, + "id": 726, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -16782,7 +19018,7 @@ } }, { - "id": 601, + "id": 700, "name": "url", "kind": 1024, "kindString": "Property", @@ -16807,45 +19043,45 @@ "title": "Properties", "kind": 1024, "children": [ - 599, - 620, - 616, - 639, - 615, - 626, - 638, - 618, - 610, - 624, - 603, - 625, - 604, - 605, - 600, - 619, - 602, - 597, - 617, - 596, - 614, - 598, - 608, - 637, - 628, - 635, - 623, - 622, - 611, - 609, - 613, - 606, - 607, - 634, - 636, - 621, - 612, - 627, - 601 + 698, + 719, + 715, + 738, + 714, + 725, + 737, + 717, + 709, + 723, + 702, + 724, + 703, + 704, + 699, + 718, + 701, + 696, + 716, + 695, + 713, + 697, + 707, + 736, + 727, + 734, + 722, + 721, + 710, + 708, + 712, + 705, + 706, + 733, + 735, + 720, + 711, + 726, + 700 ] } ] @@ -16858,11 +19094,11 @@ "title": "Properties", "kind": 1024, "children": [ - 640, - 592, - 641, - 593, - 594 + 739, + 691, + 740, + 692, + 693 ] } ] @@ -16873,7 +19109,7 @@ } }, { - "id": 757, + "id": 856, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -16894,7 +19130,7 @@ } }, { - "id": 761, + "id": 860, "name": "git_pull_url", "kind": 1024, "kindString": "Property", @@ -16915,7 +19151,7 @@ } }, { - "id": 762, + "id": 861, "name": "git_push_url", "kind": 1024, "kindString": "Property", @@ -16936,7 +19172,7 @@ } }, { - "id": 642, + "id": 741, "name": "history", "kind": 1024, "kindString": "Property", @@ -16963,14 +19199,14 @@ "elementType": { "type": "reflection", "declaration": { - "id": 643, + "id": 742, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 669, + "id": 768, "name": "change_status", "kind": 1024, "kindString": "Property", @@ -16988,14 +19224,14 @@ "type": { "type": "reflection", "declaration": { - "id": 670, + "id": 769, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 672, + "id": 771, "name": "additions", "kind": 1024, "kindString": "Property", @@ -17016,7 +19252,7 @@ } }, { - "id": 673, + "id": 772, "name": "deletions", "kind": 1024, "kindString": "Property", @@ -17037,7 +19273,7 @@ } }, { - "id": 671, + "id": 770, "name": "total", "kind": 1024, "kindString": "Property", @@ -17063,9 +19299,9 @@ "title": "Properties", "kind": 1024, "children": [ - 672, - 673, - 671 + 771, + 772, + 770 ] } ] @@ -17073,7 +19309,7 @@ } }, { - "id": 668, + "id": 767, "name": "committed_at", "kind": 1024, "kindString": "Property", @@ -17094,7 +19330,7 @@ } }, { - "id": 674, + "id": 773, "name": "url", "kind": 1024, "kindString": "Property", @@ -17115,7 +19351,7 @@ } }, { - "id": 644, + "id": 743, "name": "user", "kind": 1024, "kindString": "Property", @@ -17140,14 +19376,14 @@ { "type": "reflection", "declaration": { - "id": 645, + "id": 744, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 651, + "id": 750, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -17167,7 +19403,7 @@ } }, { - "id": 647, + "id": 746, "name": "email", "kind": 1024, "kindString": "Property", @@ -17197,7 +19433,7 @@ } }, { - "id": 662, + "id": 761, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -17217,7 +19453,7 @@ } }, { - "id": 655, + "id": 754, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -17237,7 +19473,7 @@ } }, { - "id": 656, + "id": 755, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -17257,7 +19493,7 @@ } }, { - "id": 657, + "id": 756, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -17277,7 +19513,7 @@ } }, { - "id": 652, + "id": 751, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -17306,7 +19542,7 @@ } }, { - "id": 654, + "id": 753, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17326,7 +19562,7 @@ } }, { - "id": 649, + "id": 748, "name": "id", "kind": 1024, "kindString": "Property", @@ -17346,7 +19582,7 @@ } }, { - "id": 648, + "id": 747, "name": "login", "kind": 1024, "kindString": "Property", @@ -17366,7 +19602,7 @@ } }, { - "id": 646, + "id": 745, "name": "name", "kind": 1024, "kindString": "Property", @@ -17396,7 +19632,7 @@ } }, { - "id": 650, + "id": 749, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17416,7 +19652,7 @@ } }, { - "id": 660, + "id": 759, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -17436,7 +19672,7 @@ } }, { - "id": 663, + "id": 762, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -17456,7 +19692,7 @@ } }, { - "id": 661, + "id": 760, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -17476,7 +19712,7 @@ } }, { - "id": 665, + "id": 764, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -17496,7 +19732,7 @@ } }, { - "id": 666, + "id": 765, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -17517,7 +19753,7 @@ } }, { - "id": 658, + "id": 757, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -17537,7 +19773,7 @@ } }, { - "id": 659, + "id": 758, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -17557,7 +19793,7 @@ } }, { - "id": 664, + "id": 763, "name": "type", "kind": 1024, "kindString": "Property", @@ -17577,7 +19813,7 @@ } }, { - "id": 653, + "id": 752, "name": "url", "kind": 1024, "kindString": "Property", @@ -17602,27 +19838,27 @@ "title": "Properties", "kind": 1024, "children": [ - 651, - 647, - 662, - 655, - 656, - 657, - 652, - 654, - 649, - 648, - 646, - 650, - 660, - 663, - 661, - 665, - 666, - 658, - 659, - 664, - 653 + 750, + 746, + 761, + 754, + 755, + 756, + 751, + 753, + 748, + 747, + 745, + 749, + 759, + 762, + 760, + 764, + 765, + 757, + 758, + 763, + 752 ] } ] @@ -17632,7 +19868,7 @@ } }, { - "id": 667, + "id": 766, "name": "version", "kind": 1024, "kindString": "Property", @@ -17658,11 +19894,11 @@ "title": "Properties", "kind": 1024, "children": [ - 669, - 668, - 674, - 644, - 667 + 768, + 767, + 773, + 743, + 766 ] } ] @@ -17673,7 +19909,7 @@ } }, { - "id": 763, + "id": 862, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17694,7 +19930,7 @@ } }, { - "id": 759, + "id": 858, "name": "id", "kind": 1024, "kindString": "Property", @@ -17715,7 +19951,7 @@ } }, { - "id": 760, + "id": 859, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -17736,7 +19972,7 @@ } }, { - "id": 783, + "id": 882, "name": "owner", "kind": 1024, "kindString": "Property", @@ -17761,14 +19997,14 @@ { "type": "reflection", "declaration": { - "id": 784, + "id": 883, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 790, + "id": 889, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -17788,7 +20024,7 @@ } }, { - "id": 786, + "id": 885, "name": "email", "kind": 1024, "kindString": "Property", @@ -17818,7 +20054,7 @@ } }, { - "id": 801, + "id": 900, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -17838,7 +20074,7 @@ } }, { - "id": 794, + "id": 893, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -17858,7 +20094,7 @@ } }, { - "id": 795, + "id": 894, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -17878,7 +20114,7 @@ } }, { - "id": 796, + "id": 895, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -17898,7 +20134,7 @@ } }, { - "id": 791, + "id": 890, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -17927,7 +20163,7 @@ } }, { - "id": 793, + "id": 892, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -17947,7 +20183,7 @@ } }, { - "id": 788, + "id": 887, "name": "id", "kind": 1024, "kindString": "Property", @@ -17967,7 +20203,7 @@ } }, { - "id": 787, + "id": 886, "name": "login", "kind": 1024, "kindString": "Property", @@ -17987,7 +20223,7 @@ } }, { - "id": 785, + "id": 884, "name": "name", "kind": 1024, "kindString": "Property", @@ -18017,7 +20253,7 @@ } }, { - "id": 789, + "id": 888, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -18037,7 +20273,7 @@ } }, { - "id": 799, + "id": 898, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -18057,7 +20293,7 @@ } }, { - "id": 802, + "id": 901, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -18077,7 +20313,7 @@ } }, { - "id": 800, + "id": 899, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -18097,7 +20333,7 @@ } }, { - "id": 804, + "id": 903, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -18117,7 +20353,7 @@ } }, { - "id": 805, + "id": 904, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -18138,7 +20374,7 @@ } }, { - "id": 797, + "id": 896, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -18158,7 +20394,7 @@ } }, { - "id": 798, + "id": 897, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -18178,7 +20414,7 @@ } }, { - "id": 803, + "id": 902, "name": "type", "kind": 1024, "kindString": "Property", @@ -18198,7 +20434,7 @@ } }, { - "id": 792, + "id": 891, "name": "url", "kind": 1024, "kindString": "Property", @@ -18223,27 +20459,27 @@ "title": "Properties", "kind": 1024, "children": [ - 790, - 786, - 801, - 794, - 795, - 796, - 791, - 793, - 788, - 787, - 785, - 789, - 799, - 802, - 800, - 804, - 805, - 797, - 798, - 803, - 792 + 889, + 885, + 900, + 893, + 894, + 895, + 890, + 892, + 887, + 886, + 884, + 888, + 898, + 901, + 899, + 903, + 904, + 896, + 897, + 902, + 891 ] } ] @@ -18253,7 +20489,7 @@ } }, { - "id": 776, + "id": 875, "name": "public", "kind": 1024, "kindString": "Property", @@ -18274,7 +20510,7 @@ } }, { - "id": 806, + "id": 905, "name": "truncated", "kind": 1024, "kindString": "Property", @@ -18295,7 +20531,7 @@ } }, { - "id": 778, + "id": 877, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -18316,7 +20552,7 @@ } }, { - "id": 756, + "id": 855, "name": "url", "kind": 1024, "kindString": "Property", @@ -18337,7 +20573,7 @@ } }, { - "id": 781, + "id": 880, "name": "user", "kind": 1024, "kindString": "Property", @@ -18372,27 +20608,27 @@ "title": "Properties", "kind": 1024, "children": [ - 780, - 782, - 758, - 777, - 779, - 764, - 675, - 590, - 757, - 761, - 762, - 642, - 763, - 759, - 760, - 783, - 776, - 806, - 778, - 756, - 781 + 879, + 881, + 857, + 876, + 878, + 863, + 774, + 689, + 856, + 860, + 861, + 741, + 862, + 858, + 859, + 882, + 875, + 905, + 877, + 855, + 880 ] } ] @@ -18400,7 +20636,7 @@ } }, { - "id": 807, + "id": 906, "name": "forks", "kind": 1024, "kindString": "Property", @@ -18417,12 +20653,12 @@ ], "type": { "type": "reference", - "id": 2895, + "id": 3093, "name": "ForkManager" } }, { - "id": 810, + "id": 909, "name": "htmlUrl", "kind": 262144, "kindString": "Accessor", @@ -18436,7 +20672,7 @@ ], "getSignature": [ { - "id": 811, + "id": 910, "name": "htmlUrl", "kind": 524288, "kindString": "Get signature", @@ -18458,7 +20694,7 @@ ] }, { - "id": 808, + "id": 907, "name": "url", "kind": 262144, "kindString": "Accessor", @@ -18472,7 +20708,7 @@ ], "getSignature": [ { - "id": 809, + "id": 908, "name": "url", "kind": 524288, "kindString": "Get signature", @@ -18499,24 +20735,24 @@ "title": "Constructors", "kind": 512, "children": [ - 364 + 463 ] }, { "title": "Properties", "kind": 1024, "children": [ - 812, - 588, - 807 + 911, + 687, + 906 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 810, - 808 + 909, + 907 ] } ], @@ -18536,28 +20772,28 @@ ] }, { - "id": 813, + "id": 912, "name": "Issue", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 814, + "id": 913, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 815, + "id": 914, "name": "new Issue", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 816, + "id": 915, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -18582,7 +20818,7 @@ } }, { - "id": 817, + "id": 916, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -18596,14 +20832,14 @@ ], "type": { "type": "reference", - "id": 813, + "id": 912, "name": "Issue" } } ] }, { - "id": 818, + "id": 917, "name": "client", "kind": 1024, "kindString": "Property", @@ -18627,14 +20863,14 @@ "title": "Constructors", "kind": 512, "children": [ - 814 + 913 ] }, { "title": "Properties", "kind": 1024, "children": [ - 818 + 917 ] } ], @@ -18647,28 +20883,28 @@ ] }, { - "id": 2904, + "id": 3102, "name": "IssueManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2905, + "id": 3103, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2906, + "id": 3104, "name": "new IssueManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2907, + "id": 3105, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18676,14 +20912,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2908, + "id": 3106, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2909, + "id": 3107, "name": "client", "kind": 1024, "kindString": "Property", @@ -18702,7 +20938,7 @@ } }, { - "id": 2910, + "id": 3108, "name": "url", "kind": 1024, "kindString": "Property", @@ -18725,8 +20961,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2909, - 2910 + 3107, + 3108 ] } ] @@ -18736,24 +20972,24 @@ ], "type": { "type": "reference", - "id": 2904, + "id": 3102, "name": "IssueManager" }, "overwrites": { "type": "reference", - "id": 2834, + "id": 3032, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2833, + "id": 3031, "name": "Manager.constructor" } }, { - "id": 2911, + "id": 3109, "name": "client", "kind": 1024, "kindString": "Property", @@ -18772,12 +21008,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 3037, "name": "Manager.client" } }, { - "id": 2912, + "id": 3110, "name": "url", "kind": 1024, "kindString": "Property", @@ -18797,7 +21033,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 3038, "name": "Manager.url" } } @@ -18807,15 +21043,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2905 + 3103 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2911, - 2912 + 3109, + 3110 ] } ], @@ -18829,34 +21065,34 @@ "extendedTypes": [ { "type": "reference", - "id": 2832, + "id": 3030, "name": "Manager" } ] }, { - "id": 2832, + "id": 3030, "name": "Manager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2833, + "id": 3031, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2834, + "id": 3032, "name": "new Manager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2835, + "id": 3033, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -18864,14 +21100,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2836, + "id": 3034, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2837, + "id": 3035, "name": "client", "kind": 1024, "kindString": "Property", @@ -18890,7 +21126,7 @@ } }, { - "id": 2838, + "id": 3036, "name": "url", "kind": 1024, "kindString": "Property", @@ -18915,8 +21151,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2837, - 2838 + 3035, + 3036 ] } ] @@ -18926,14 +21162,14 @@ ], "type": { "type": "reference", - "id": 2832, + "id": 3030, "name": "BaseManager" } } ] }, { - "id": 2839, + "id": 3037, "name": "client", "kind": 1024, "kindString": "Property", @@ -18952,7 +21188,7 @@ } }, { - "id": 2840, + "id": 3038, "name": "url", "kind": 1024, "kindString": "Property", @@ -18977,15 +21213,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2833 + 3031 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2839, - 2840 + 3037, + 3038 ] } ], @@ -18999,54 +21235,54 @@ "extendedBy": [ { "type": "reference", - "id": 2841, + "id": 3039, "name": "ArtifactsManager" }, { "type": "reference", - "id": 2895, + "id": 3093, "name": "ForkManager" }, { "type": "reference", - "id": 2904, + "id": 3102, "name": "IssueManager" }, { "type": "reference", - "id": 2913, + "id": 3111, "name": "RepoManager" }, { "type": "reference", - "id": 2922, + "id": 3120, "name": "UserManager" } ] }, { - "id": 819, + "id": 918, "name": "Repo", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 820, + "id": 919, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 821, + "id": 920, "name": "new Repo", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 822, + "id": 921, "name": "client", "kind": 32768, "kindString": "Parameter", @@ -19058,7 +21294,7 @@ } }, { - "id": 823, + "id": 922, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -19066,14 +21302,14 @@ "type": { "type": "reflection", "declaration": { - "id": 824, + "id": 923, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1179, + "id": 1278, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -19094,7 +21330,7 @@ } }, { - "id": 924, + "id": 1023, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -19115,7 +21351,7 @@ } }, { - "id": 1177, + "id": 1276, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -19136,7 +21372,7 @@ } }, { - "id": 1719, + "id": 1818, "name": "anonymous_access_enabled", "kind": 1024, "kindString": "Property", @@ -19160,7 +21396,7 @@ } }, { - "id": 857, + "id": 956, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -19180,7 +21416,7 @@ } }, { - "id": 913, + "id": 1012, "name": "archived", "kind": 1024, "kindString": "Property", @@ -19200,7 +21436,7 @@ } }, { - "id": 858, + "id": 957, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -19220,7 +21456,7 @@ } }, { - "id": 859, + "id": 958, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -19240,7 +21476,7 @@ } }, { - "id": 860, + "id": 959, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -19260,7 +21496,7 @@ } }, { - "id": 894, + "id": 993, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -19280,7 +21516,7 @@ } }, { - "id": 1720, + "id": 1819, "name": "code_of_conduct", "kind": 1024, "kindString": "Property", @@ -19298,14 +21534,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1721, + "id": 1820, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1725, + "id": 1824, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -19334,7 +21570,7 @@ } }, { - "id": 1723, + "id": 1822, "name": "key", "kind": 1024, "kindString": "Property", @@ -19354,7 +21590,7 @@ } }, { - "id": 1724, + "id": 1823, "name": "name", "kind": 1024, "kindString": "Property", @@ -19374,7 +21610,7 @@ } }, { - "id": 1722, + "id": 1821, "name": "url", "kind": 1024, "kindString": "Property", @@ -19399,10 +21635,10 @@ "title": "Properties", "kind": 1024, "children": [ - 1725, - 1723, - 1724, - 1722 + 1824, + 1822, + 1823, + 1821 ] } ] @@ -19410,7 +21646,7 @@ } }, { - "id": 861, + "id": 960, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -19430,7 +21666,7 @@ } }, { - "id": 862, + "id": 961, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -19450,7 +21686,7 @@ } }, { - "id": 863, + "id": 962, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -19470,7 +21706,7 @@ } }, { - "id": 864, + "id": 963, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -19490,7 +21726,7 @@ } }, { - "id": 865, + "id": 964, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -19510,7 +21746,7 @@ } }, { - "id": 866, + "id": 965, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -19530,7 +21766,7 @@ } }, { - "id": 917, + "id": 1016, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -19550,7 +21786,7 @@ } }, { - "id": 904, + "id": 1003, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -19570,7 +21806,7 @@ } }, { - "id": 1178, + "id": 1277, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -19591,7 +21827,7 @@ } }, { - "id": 867, + "id": 966, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -19611,7 +21847,7 @@ } }, { - "id": 854, + "id": 953, "name": "description", "kind": 1024, "kindString": "Property", @@ -19640,7 +21876,7 @@ } }, { - "id": 914, + "id": 1013, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -19663,7 +21899,7 @@ } }, { - "id": 868, + "id": 967, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -19683,7 +21919,7 @@ } }, { - "id": 869, + "id": 968, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -19703,7 +21939,7 @@ } }, { - "id": 855, + "id": 954, "name": "fork", "kind": 1024, "kindString": "Property", @@ -19723,7 +21959,7 @@ } }, { - "id": 1715, + "id": 1814, "name": "forks", "kind": 1024, "kindString": "Property", @@ -19743,7 +21979,7 @@ } }, { - "id": 900, + "id": 999, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -19763,7 +21999,7 @@ } }, { - "id": 870, + "id": 969, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -19783,7 +22019,7 @@ } }, { - "id": 828, + "id": 927, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -19803,7 +22039,7 @@ } }, { - "id": 871, + "id": 970, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -19823,7 +22059,7 @@ } }, { - "id": 872, + "id": 971, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -19843,7 +22079,7 @@ } }, { - "id": 873, + "id": 972, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -19863,7 +22099,7 @@ } }, { - "id": 874, + "id": 973, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -19883,7 +22119,7 @@ } }, { - "id": 912, + "id": 1011, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -19903,7 +22139,7 @@ } }, { - "id": 908, + "id": 1007, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -19923,7 +22159,7 @@ } }, { - "id": 911, + "id": 1010, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -19943,7 +22179,7 @@ } }, { - "id": 909, + "id": 1008, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -19963,7 +22199,7 @@ } }, { - "id": 910, + "id": 1009, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -19983,7 +22219,7 @@ } }, { - "id": 898, + "id": 997, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -20012,7 +22248,7 @@ } }, { - "id": 896, + "id": 995, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -20032,7 +22268,7 @@ } }, { - "id": 853, + "id": 952, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20052,7 +22288,7 @@ } }, { - "id": 825, + "id": 924, "name": "id", "kind": 1024, "kindString": "Property", @@ -20072,7 +22308,7 @@ } }, { - "id": 906, + "id": 1005, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -20093,7 +22329,7 @@ } }, { - "id": 875, + "id": 974, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -20113,7 +22349,7 @@ } }, { - "id": 876, + "id": 975, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -20133,7 +22369,7 @@ } }, { - "id": 877, + "id": 976, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -20153,7 +22389,7 @@ } }, { - "id": 878, + "id": 977, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -20173,7 +22409,7 @@ } }, { - "id": 879, + "id": 978, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -20193,7 +22429,7 @@ } }, { - "id": 899, + "id": 998, "name": "language", "kind": 1024, "kindString": "Property", @@ -20222,7 +22458,7 @@ } }, { - "id": 880, + "id": 979, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -20242,7 +22478,7 @@ } }, { - "id": 1182, + "id": 1281, "name": "license", "kind": 1024, "kindString": "Property", @@ -20266,14 +22502,14 @@ { "type": "reflection", "declaration": { - "id": 1183, + "id": 1282, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1189, + "id": 1288, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20294,7 +22530,7 @@ } }, { - "id": 1184, + "id": 1283, "name": "key", "kind": 1024, "kindString": "Property", @@ -20314,7 +22550,7 @@ } }, { - "id": 1185, + "id": 1284, "name": "name", "kind": 1024, "kindString": "Property", @@ -20334,7 +22570,7 @@ } }, { - "id": 1188, + "id": 1287, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20354,7 +22590,7 @@ } }, { - "id": 1187, + "id": 1286, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -20383,7 +22619,7 @@ } }, { - "id": 1186, + "id": 1285, "name": "url", "kind": 1024, "kindString": "Property", @@ -20417,12 +22653,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1189, - 1184, - 1185, - 1188, - 1187, - 1186 + 1288, + 1283, + 1284, + 1287, + 1286, + 1285 ] } ] @@ -20432,7 +22668,7 @@ } }, { - "id": 1716, + "id": 1815, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -20453,7 +22689,7 @@ } }, { - "id": 881, + "id": 980, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -20473,7 +22709,7 @@ } }, { - "id": 882, + "id": 981, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -20493,7 +22729,7 @@ } }, { - "id": 895, + "id": 994, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -20522,7 +22758,7 @@ } }, { - "id": 827, + "id": 926, "name": "name", "kind": 1024, "kindString": "Property", @@ -20542,7 +22778,7 @@ } }, { - "id": 1181, + "id": 1280, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -20562,7 +22798,7 @@ } }, { - "id": 826, + "id": 925, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20582,7 +22818,7 @@ } }, { - "id": 883, + "id": 982, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -20602,7 +22838,7 @@ } }, { - "id": 1717, + "id": 1816, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -20622,7 +22858,7 @@ } }, { - "id": 905, + "id": 1004, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -20642,7 +22878,7 @@ } }, { - "id": 1190, + "id": 1289, "name": "organization", "kind": 1024, "kindString": "Property", @@ -20667,14 +22903,14 @@ { "type": "reflection", "declaration": { - "id": 1191, + "id": 1290, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1197, + "id": 1296, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -20694,7 +22930,7 @@ } }, { - "id": 1193, + "id": 1292, "name": "email", "kind": 1024, "kindString": "Property", @@ -20724,7 +22960,7 @@ } }, { - "id": 1208, + "id": 1307, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -20744,7 +22980,7 @@ } }, { - "id": 1201, + "id": 1300, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -20764,7 +23000,7 @@ } }, { - "id": 1202, + "id": 1301, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -20784,7 +23020,7 @@ } }, { - "id": 1203, + "id": 1302, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -20804,7 +23040,7 @@ } }, { - "id": 1198, + "id": 1297, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -20833,7 +23069,7 @@ } }, { - "id": 1200, + "id": 1299, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -20853,7 +23089,7 @@ } }, { - "id": 1195, + "id": 1294, "name": "id", "kind": 1024, "kindString": "Property", @@ -20873,7 +23109,7 @@ } }, { - "id": 1194, + "id": 1293, "name": "login", "kind": 1024, "kindString": "Property", @@ -20893,7 +23129,7 @@ } }, { - "id": 1192, + "id": 1291, "name": "name", "kind": 1024, "kindString": "Property", @@ -20923,7 +23159,7 @@ } }, { - "id": 1196, + "id": 1295, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -20943,7 +23179,7 @@ } }, { - "id": 1206, + "id": 1305, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -20963,7 +23199,7 @@ } }, { - "id": 1209, + "id": 1308, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -20983,7 +23219,7 @@ } }, { - "id": 1207, + "id": 1306, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -21003,7 +23239,7 @@ } }, { - "id": 1211, + "id": 1310, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -21023,7 +23259,7 @@ } }, { - "id": 1212, + "id": 1311, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -21044,7 +23280,7 @@ } }, { - "id": 1204, + "id": 1303, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -21064,7 +23300,7 @@ } }, { - "id": 1205, + "id": 1304, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -21084,7 +23320,7 @@ } }, { - "id": 1210, + "id": 1309, "name": "type", "kind": 1024, "kindString": "Property", @@ -21104,7 +23340,7 @@ } }, { - "id": 1199, + "id": 1298, "name": "url", "kind": 1024, "kindString": "Property", @@ -21129,27 +23365,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1197, - 1193, - 1208, - 1201, - 1202, - 1203, - 1198, - 1200, - 1195, - 1194, - 1192, - 1196, - 1206, - 1209, - 1207, - 1211, - 1212, - 1204, - 1205, - 1210, - 1199 + 1296, + 1292, + 1307, + 1300, + 1301, + 1302, + 1297, + 1299, + 1294, + 1293, + 1291, + 1295, + 1305, + 1308, + 1306, + 1310, + 1311, + 1303, + 1304, + 1309, + 1298 ] } ] @@ -21159,7 +23395,7 @@ } }, { - "id": 829, + "id": 928, "name": "owner", "kind": 1024, "kindString": "Property", @@ -21183,14 +23419,14 @@ { "type": "reflection", "declaration": { - "id": 830, + "id": 929, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 836, + "id": 935, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -21210,7 +23446,7 @@ } }, { - "id": 832, + "id": 931, "name": "email", "kind": 1024, "kindString": "Property", @@ -21240,7 +23476,7 @@ } }, { - "id": 847, + "id": 946, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -21260,7 +23496,7 @@ } }, { - "id": 840, + "id": 939, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -21280,7 +23516,7 @@ } }, { - "id": 841, + "id": 940, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -21300,7 +23536,7 @@ } }, { - "id": 842, + "id": 941, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -21320,7 +23556,7 @@ } }, { - "id": 837, + "id": 936, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -21349,7 +23585,7 @@ } }, { - "id": 839, + "id": 938, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -21369,7 +23605,7 @@ } }, { - "id": 834, + "id": 933, "name": "id", "kind": 1024, "kindString": "Property", @@ -21389,7 +23625,7 @@ } }, { - "id": 833, + "id": 932, "name": "login", "kind": 1024, "kindString": "Property", @@ -21409,7 +23645,7 @@ } }, { - "id": 831, + "id": 930, "name": "name", "kind": 1024, "kindString": "Property", @@ -21439,7 +23675,7 @@ } }, { - "id": 835, + "id": 934, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -21459,7 +23695,7 @@ } }, { - "id": 845, + "id": 944, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -21479,7 +23715,7 @@ } }, { - "id": 848, + "id": 947, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -21499,7 +23735,7 @@ } }, { - "id": 846, + "id": 945, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -21519,7 +23755,7 @@ } }, { - "id": 850, + "id": 949, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -21539,7 +23775,7 @@ } }, { - "id": 851, + "id": 950, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -21560,7 +23796,7 @@ } }, { - "id": 843, + "id": 942, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -21580,7 +23816,7 @@ } }, { - "id": 844, + "id": 943, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -21600,7 +23836,7 @@ } }, { - "id": 849, + "id": 948, "name": "type", "kind": 1024, "kindString": "Property", @@ -21620,7 +23856,7 @@ } }, { - "id": 838, + "id": 937, "name": "url", "kind": 1024, "kindString": "Property", @@ -21645,27 +23881,27 @@ "title": "Properties", "kind": 1024, "children": [ - 836, - 832, - 847, - 840, - 841, - 842, - 837, - 839, - 834, - 833, - 831, - 835, - 845, - 848, - 846, - 850, - 851, - 843, - 844, - 849, - 838 + 935, + 931, + 946, + 939, + 940, + 941, + 936, + 938, + 933, + 932, + 930, + 934, + 944, + 947, + 945, + 949, + 950, + 942, + 943, + 948, + 937 ] } ] @@ -21675,7 +23911,7 @@ } }, { - "id": 1213, + "id": 1312, "name": "parent", "kind": 1024, "kindString": "Property", @@ -21693,14 +23929,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1214, + "id": 1313, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1457, + "id": 1556, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -21724,7 +23960,7 @@ } }, { - "id": 1348, + "id": 1447, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -21748,7 +23984,7 @@ } }, { - "id": 1455, + "id": 1554, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -21772,7 +24008,7 @@ } }, { - "id": 1286, + "id": 1385, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -21792,7 +24028,7 @@ } }, { - "id": 1342, + "id": 1441, "name": "archived", "kind": 1024, "kindString": "Property", @@ -21815,7 +24051,7 @@ } }, { - "id": 1287, + "id": 1386, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -21835,7 +24071,7 @@ } }, { - "id": 1288, + "id": 1387, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -21855,7 +24091,7 @@ } }, { - "id": 1289, + "id": 1388, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -21875,7 +24111,7 @@ } }, { - "id": 1323, + "id": 1422, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -21895,7 +24131,7 @@ } }, { - "id": 1290, + "id": 1389, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -21915,7 +24151,7 @@ } }, { - "id": 1291, + "id": 1390, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -21935,7 +24171,7 @@ } }, { - "id": 1292, + "id": 1391, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -21955,7 +24191,7 @@ } }, { - "id": 1293, + "id": 1392, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -21975,7 +24211,7 @@ } }, { - "id": 1294, + "id": 1393, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -21995,7 +24231,7 @@ } }, { - "id": 1295, + "id": 1394, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -22015,7 +24251,7 @@ } }, { - "id": 1346, + "id": 1445, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -22044,7 +24280,7 @@ } }, { - "id": 1333, + "id": 1432, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -22067,7 +24303,7 @@ } }, { - "id": 1456, + "id": 1555, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -22091,7 +24327,7 @@ } }, { - "id": 1296, + "id": 1395, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -22111,7 +24347,7 @@ } }, { - "id": 1283, + "id": 1382, "name": "description", "kind": 1024, "kindString": "Property", @@ -22140,7 +24376,7 @@ } }, { - "id": 1343, + "id": 1442, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -22163,7 +24399,7 @@ } }, { - "id": 1297, + "id": 1396, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -22183,7 +24419,7 @@ } }, { - "id": 1298, + "id": 1397, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -22203,7 +24439,7 @@ } }, { - "id": 1284, + "id": 1383, "name": "fork", "kind": 1024, "kindString": "Property", @@ -22223,7 +24459,7 @@ } }, { - "id": 1250, + "id": 1349, "name": "forks", "kind": 1024, "kindString": "Property", @@ -22243,7 +24479,7 @@ } }, { - "id": 1329, + "id": 1428, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -22263,7 +24499,7 @@ } }, { - "id": 1299, + "id": 1398, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -22283,7 +24519,7 @@ } }, { - "id": 1218, + "id": 1317, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -22303,7 +24539,7 @@ } }, { - "id": 1300, + "id": 1399, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -22323,7 +24559,7 @@ } }, { - "id": 1301, + "id": 1400, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -22343,7 +24579,7 @@ } }, { - "id": 1302, + "id": 1401, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -22363,7 +24599,7 @@ } }, { - "id": 1303, + "id": 1402, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -22383,7 +24619,7 @@ } }, { - "id": 1341, + "id": 1440, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -22406,7 +24642,7 @@ } }, { - "id": 1337, + "id": 1436, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -22429,7 +24665,7 @@ } }, { - "id": 1340, + "id": 1439, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -22449,7 +24685,7 @@ } }, { - "id": 1338, + "id": 1437, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -22472,7 +24708,7 @@ } }, { - "id": 1339, + "id": 1438, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -22495,7 +24731,7 @@ } }, { - "id": 1327, + "id": 1426, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -22524,7 +24760,7 @@ } }, { - "id": 1325, + "id": 1424, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -22544,7 +24780,7 @@ } }, { - "id": 1282, + "id": 1381, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22564,7 +24800,7 @@ } }, { - "id": 1215, + "id": 1314, "name": "id", "kind": 1024, "kindString": "Property", @@ -22587,7 +24823,7 @@ } }, { - "id": 1335, + "id": 1434, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -22611,7 +24847,7 @@ } }, { - "id": 1304, + "id": 1403, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -22631,7 +24867,7 @@ } }, { - "id": 1305, + "id": 1404, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -22651,7 +24887,7 @@ } }, { - "id": 1306, + "id": 1405, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -22671,7 +24907,7 @@ } }, { - "id": 1307, + "id": 1406, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -22691,7 +24927,7 @@ } }, { - "id": 1308, + "id": 1407, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -22711,7 +24947,7 @@ } }, { - "id": 1328, + "id": 1427, "name": "language", "kind": 1024, "kindString": "Property", @@ -22740,7 +24976,7 @@ } }, { - "id": 1309, + "id": 1408, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -22760,7 +24996,7 @@ } }, { - "id": 1219, + "id": 1318, "name": "license", "kind": 1024, "kindString": "Property", @@ -22784,14 +25020,14 @@ { "type": "reflection", "declaration": { - "id": 1220, + "id": 1319, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1226, + "id": 1325, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -22812,7 +25048,7 @@ } }, { - "id": 1221, + "id": 1320, "name": "key", "kind": 1024, "kindString": "Property", @@ -22832,7 +25068,7 @@ } }, { - "id": 1222, + "id": 1321, "name": "name", "kind": 1024, "kindString": "Property", @@ -22852,7 +25088,7 @@ } }, { - "id": 1225, + "id": 1324, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -22872,7 +25108,7 @@ } }, { - "id": 1224, + "id": 1323, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -22901,7 +25137,7 @@ } }, { - "id": 1223, + "id": 1322, "name": "url", "kind": 1024, "kindString": "Property", @@ -22935,12 +25171,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1226, - 1221, - 1222, - 1225, - 1224, - 1223 + 1325, + 1320, + 1321, + 1324, + 1323, + 1322 ] } ] @@ -22950,7 +25186,7 @@ } }, { - "id": 1462, + "id": 1561, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -22971,7 +25207,7 @@ } }, { - "id": 1310, + "id": 1409, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -22991,7 +25227,7 @@ } }, { - "id": 1311, + "id": 1410, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -23011,7 +25247,7 @@ } }, { - "id": 1324, + "id": 1423, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -23040,7 +25276,7 @@ } }, { - "id": 1217, + "id": 1316, "name": "name", "kind": 1024, "kindString": "Property", @@ -23063,7 +25299,7 @@ } }, { - "id": 1459, + "id": 1558, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -23084,7 +25320,7 @@ } }, { - "id": 1216, + "id": 1315, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23104,7 +25340,7 @@ } }, { - "id": 1312, + "id": 1411, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -23124,7 +25360,7 @@ } }, { - "id": 1460, + "id": 1559, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -23144,7 +25380,7 @@ } }, { - "id": 1334, + "id": 1433, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -23164,7 +25400,7 @@ } }, { - "id": 1227, + "id": 1326, "name": "organization", "kind": 1024, "kindString": "Property", @@ -23189,14 +25425,14 @@ { "type": "reflection", "declaration": { - "id": 1228, + "id": 1327, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1234, + "id": 1333, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -23216,7 +25452,7 @@ } }, { - "id": 1230, + "id": 1329, "name": "email", "kind": 1024, "kindString": "Property", @@ -23246,7 +25482,7 @@ } }, { - "id": 1245, + "id": 1344, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -23266,7 +25502,7 @@ } }, { - "id": 1238, + "id": 1337, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -23286,7 +25522,7 @@ } }, { - "id": 1239, + "id": 1338, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -23306,7 +25542,7 @@ } }, { - "id": 1240, + "id": 1339, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -23326,7 +25562,7 @@ } }, { - "id": 1235, + "id": 1334, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -23355,7 +25591,7 @@ } }, { - "id": 1237, + "id": 1336, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -23375,7 +25611,7 @@ } }, { - "id": 1232, + "id": 1331, "name": "id", "kind": 1024, "kindString": "Property", @@ -23395,7 +25631,7 @@ } }, { - "id": 1231, + "id": 1330, "name": "login", "kind": 1024, "kindString": "Property", @@ -23415,7 +25651,7 @@ } }, { - "id": 1229, + "id": 1328, "name": "name", "kind": 1024, "kindString": "Property", @@ -23445,7 +25681,7 @@ } }, { - "id": 1233, + "id": 1332, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23465,7 +25701,7 @@ } }, { - "id": 1243, + "id": 1342, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -23485,7 +25721,7 @@ } }, { - "id": 1246, + "id": 1345, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -23505,7 +25741,7 @@ } }, { - "id": 1244, + "id": 1343, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -23525,7 +25761,7 @@ } }, { - "id": 1248, + "id": 1347, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -23545,7 +25781,7 @@ } }, { - "id": 1249, + "id": 1348, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -23566,7 +25802,7 @@ } }, { - "id": 1241, + "id": 1340, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -23586,7 +25822,7 @@ } }, { - "id": 1242, + "id": 1341, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -23606,7 +25842,7 @@ } }, { - "id": 1247, + "id": 1346, "name": "type", "kind": 1024, "kindString": "Property", @@ -23626,7 +25862,7 @@ } }, { - "id": 1236, + "id": 1335, "name": "url", "kind": 1024, "kindString": "Property", @@ -23651,27 +25887,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1234, - 1230, - 1245, - 1238, - 1239, - 1240, - 1235, - 1237, - 1232, - 1231, - 1229, - 1233, - 1243, - 1246, - 1244, - 1248, - 1249, - 1241, - 1242, - 1247, - 1236 + 1333, + 1329, + 1344, + 1337, + 1338, + 1339, + 1334, + 1336, + 1331, + 1330, + 1328, + 1332, + 1342, + 1345, + 1343, + 1347, + 1348, + 1340, + 1341, + 1346, + 1335 ] } ] @@ -23681,7 +25917,7 @@ } }, { - "id": 1258, + "id": 1357, "name": "owner", "kind": 1024, "kindString": "Property", @@ -23705,14 +25941,14 @@ { "type": "reflection", "declaration": { - "id": 1259, + "id": 1358, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1265, + "id": 1364, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -23732,7 +25968,7 @@ } }, { - "id": 1261, + "id": 1360, "name": "email", "kind": 1024, "kindString": "Property", @@ -23762,7 +25998,7 @@ } }, { - "id": 1276, + "id": 1375, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -23782,7 +26018,7 @@ } }, { - "id": 1269, + "id": 1368, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -23802,7 +26038,7 @@ } }, { - "id": 1270, + "id": 1369, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -23822,7 +26058,7 @@ } }, { - "id": 1271, + "id": 1370, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -23842,7 +26078,7 @@ } }, { - "id": 1266, + "id": 1365, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -23871,7 +26107,7 @@ } }, { - "id": 1268, + "id": 1367, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -23891,7 +26127,7 @@ } }, { - "id": 1263, + "id": 1362, "name": "id", "kind": 1024, "kindString": "Property", @@ -23911,7 +26147,7 @@ } }, { - "id": 1262, + "id": 1361, "name": "login", "kind": 1024, "kindString": "Property", @@ -23931,7 +26167,7 @@ } }, { - "id": 1260, + "id": 1359, "name": "name", "kind": 1024, "kindString": "Property", @@ -23961,7 +26197,7 @@ } }, { - "id": 1264, + "id": 1363, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -23981,7 +26217,7 @@ } }, { - "id": 1274, + "id": 1373, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -24001,7 +26237,7 @@ } }, { - "id": 1277, + "id": 1376, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -24021,7 +26257,7 @@ } }, { - "id": 1275, + "id": 1374, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -24041,7 +26277,7 @@ } }, { - "id": 1279, + "id": 1378, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -24061,7 +26297,7 @@ } }, { - "id": 1280, + "id": 1379, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -24082,7 +26318,7 @@ } }, { - "id": 1272, + "id": 1371, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -24102,7 +26338,7 @@ } }, { - "id": 1273, + "id": 1372, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -24122,7 +26358,7 @@ } }, { - "id": 1278, + "id": 1377, "name": "type", "kind": 1024, "kindString": "Property", @@ -24142,7 +26378,7 @@ } }, { - "id": 1267, + "id": 1366, "name": "url", "kind": 1024, "kindString": "Property", @@ -24167,27 +26403,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1265, - 1261, - 1276, - 1269, - 1270, - 1271, - 1266, - 1268, - 1263, - 1262, - 1260, - 1264, - 1274, - 1277, - 1275, - 1279, - 1280, - 1272, - 1273, - 1278, - 1267 + 1364, + 1360, + 1375, + 1368, + 1369, + 1370, + 1365, + 1367, + 1362, + 1361, + 1359, + 1363, + 1373, + 1376, + 1374, + 1378, + 1379, + 1371, + 1372, + 1377, + 1366 ] } ] @@ -24197,7 +26433,7 @@ } }, { - "id": 1251, + "id": 1350, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -24215,14 +26451,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1252, + "id": 1351, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1253, + "id": 1352, "name": "admin", "kind": 1024, "kindString": "Property", @@ -24242,7 +26478,7 @@ } }, { - "id": 1257, + "id": 1356, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -24263,7 +26499,7 @@ } }, { - "id": 1254, + "id": 1353, "name": "pull", "kind": 1024, "kindString": "Property", @@ -24283,7 +26519,7 @@ } }, { - "id": 1256, + "id": 1355, "name": "push", "kind": 1024, "kindString": "Property", @@ -24303,7 +26539,7 @@ } }, { - "id": 1255, + "id": 1354, "name": "triage", "kind": 1024, "kindString": "Property", @@ -24329,11 +26565,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1253, - 1257, - 1254, - 1256, - 1255 + 1352, + 1356, + 1353, + 1355, + 1354 ] } ] @@ -24341,7 +26577,7 @@ } }, { - "id": 1281, + "id": 1380, "name": "private", "kind": 1024, "kindString": "Property", @@ -24364,7 +26600,7 @@ } }, { - "id": 1313, + "id": 1412, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -24384,7 +26620,7 @@ } }, { - "id": 1345, + "id": 1444, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -24413,7 +26649,7 @@ } }, { - "id": 1314, + "id": 1413, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -24433,7 +26669,7 @@ } }, { - "id": 1332, + "id": 1431, "name": "size", "kind": 1024, "kindString": "Property", @@ -24453,7 +26689,7 @@ } }, { - "id": 1315, + "id": 1414, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -24473,7 +26709,7 @@ } }, { - "id": 1330, + "id": 1429, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -24493,7 +26729,7 @@ } }, { - "id": 1316, + "id": 1415, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -24513,7 +26749,7 @@ } }, { - "id": 1463, + "id": 1562, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -24534,7 +26770,7 @@ } }, { - "id": 1317, + "id": 1416, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -24554,7 +26790,7 @@ } }, { - "id": 1458, + "id": 1557, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -24575,7 +26811,7 @@ } }, { - "id": 1318, + "id": 1417, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -24595,7 +26831,7 @@ } }, { - "id": 1319, + "id": 1418, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -24615,7 +26851,7 @@ } }, { - "id": 1326, + "id": 1425, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -24635,7 +26871,7 @@ } }, { - "id": 1320, + "id": 1419, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -24655,7 +26891,7 @@ } }, { - "id": 1321, + "id": 1420, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -24675,7 +26911,7 @@ } }, { - "id": 1454, + "id": 1553, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -24696,7 +26932,7 @@ } }, { - "id": 1349, + "id": 1448, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -24721,14 +26957,14 @@ { "type": "reflection", "declaration": { - "id": 1350, + "id": 1449, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1451, + "id": 1550, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -24749,7 +26985,7 @@ } }, { - "id": 1447, + "id": 1546, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -24770,7 +27006,7 @@ } }, { - "id": 1449, + "id": 1548, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -24791,7 +27027,7 @@ } }, { - "id": 1380, + "id": 1479, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -24812,7 +27048,7 @@ } }, { - "id": 1436, + "id": 1535, "name": "archived", "kind": 1024, "kindString": "Property", @@ -24833,7 +27069,7 @@ } }, { - "id": 1381, + "id": 1480, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -24854,7 +27090,7 @@ } }, { - "id": 1382, + "id": 1481, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -24875,7 +27111,7 @@ } }, { - "id": 1383, + "id": 1482, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -24896,7 +27132,7 @@ } }, { - "id": 1417, + "id": 1516, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -24917,7 +27153,7 @@ } }, { - "id": 1384, + "id": 1483, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -24938,7 +27174,7 @@ } }, { - "id": 1385, + "id": 1484, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -24959,7 +27195,7 @@ } }, { - "id": 1386, + "id": 1485, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -24980,7 +27216,7 @@ } }, { - "id": 1387, + "id": 1486, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -25001,7 +27237,7 @@ } }, { - "id": 1388, + "id": 1487, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -25022,7 +27258,7 @@ } }, { - "id": 1389, + "id": 1488, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -25043,7 +27279,7 @@ } }, { - "id": 1440, + "id": 1539, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -25064,7 +27300,7 @@ } }, { - "id": 1427, + "id": 1526, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -25085,7 +27321,7 @@ } }, { - "id": 1450, + "id": 1549, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -25106,7 +27342,7 @@ } }, { - "id": 1390, + "id": 1489, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -25127,7 +27363,7 @@ } }, { - "id": 1377, + "id": 1476, "name": "description", "kind": 1024, "kindString": "Property", @@ -25148,7 +27384,7 @@ } }, { - "id": 1437, + "id": 1536, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -25169,7 +27405,7 @@ } }, { - "id": 1391, + "id": 1490, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -25190,7 +27426,7 @@ } }, { - "id": 1392, + "id": 1491, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -25211,7 +27447,7 @@ } }, { - "id": 1378, + "id": 1477, "name": "fork", "kind": 1024, "kindString": "Property", @@ -25232,7 +27468,7 @@ } }, { - "id": 1423, + "id": 1522, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -25253,7 +27489,7 @@ } }, { - "id": 1393, + "id": 1492, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -25274,7 +27510,7 @@ } }, { - "id": 1354, + "id": 1453, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -25295,7 +27531,7 @@ } }, { - "id": 1394, + "id": 1493, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -25316,7 +27552,7 @@ } }, { - "id": 1395, + "id": 1494, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -25337,7 +27573,7 @@ } }, { - "id": 1396, + "id": 1495, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -25358,7 +27594,7 @@ } }, { - "id": 1397, + "id": 1496, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -25379,7 +27615,7 @@ } }, { - "id": 1435, + "id": 1534, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -25400,7 +27636,7 @@ } }, { - "id": 1431, + "id": 1530, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -25421,7 +27657,7 @@ } }, { - "id": 1434, + "id": 1533, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -25442,7 +27678,7 @@ } }, { - "id": 1432, + "id": 1531, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -25463,7 +27699,7 @@ } }, { - "id": 1433, + "id": 1532, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -25484,7 +27720,7 @@ } }, { - "id": 1421, + "id": 1520, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -25505,7 +27741,7 @@ } }, { - "id": 1419, + "id": 1518, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -25526,7 +27762,7 @@ } }, { - "id": 1376, + "id": 1475, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -25547,7 +27783,7 @@ } }, { - "id": 1351, + "id": 1450, "name": "id", "kind": 1024, "kindString": "Property", @@ -25568,7 +27804,7 @@ } }, { - "id": 1429, + "id": 1528, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -25589,7 +27825,7 @@ } }, { - "id": 1398, + "id": 1497, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -25610,7 +27846,7 @@ } }, { - "id": 1399, + "id": 1498, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -25631,7 +27867,7 @@ } }, { - "id": 1400, + "id": 1499, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -25652,7 +27888,7 @@ } }, { - "id": 1401, + "id": 1500, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -25673,7 +27909,7 @@ } }, { - "id": 1402, + "id": 1501, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -25694,7 +27930,7 @@ } }, { - "id": 1422, + "id": 1521, "name": "language", "kind": 1024, "kindString": "Property", @@ -25715,7 +27951,7 @@ } }, { - "id": 1403, + "id": 1502, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -25736,7 +27972,7 @@ } }, { - "id": 1404, + "id": 1503, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -25757,7 +27993,7 @@ } }, { - "id": 1405, + "id": 1504, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -25778,7 +28014,7 @@ } }, { - "id": 1418, + "id": 1517, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -25799,7 +28035,7 @@ } }, { - "id": 1353, + "id": 1452, "name": "name", "kind": 1024, "kindString": "Property", @@ -25820,7 +28056,7 @@ } }, { - "id": 1453, + "id": 1552, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -25841,7 +28077,7 @@ } }, { - "id": 1352, + "id": 1451, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -25862,7 +28098,7 @@ } }, { - "id": 1406, + "id": 1505, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -25883,7 +28119,7 @@ } }, { - "id": 1428, + "id": 1527, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -25904,7 +28140,7 @@ } }, { - "id": 1355, + "id": 1454, "name": "owner", "kind": 1024, "kindString": "Property", @@ -25922,14 +28158,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1356, + "id": 1455, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1360, + "id": 1459, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -25950,7 +28186,7 @@ } }, { - "id": 1371, + "id": 1470, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -25971,7 +28207,7 @@ } }, { - "id": 1364, + "id": 1463, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -25992,7 +28228,7 @@ } }, { - "id": 1365, + "id": 1464, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -26013,7 +28249,7 @@ } }, { - "id": 1366, + "id": 1465, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -26034,7 +28270,7 @@ } }, { - "id": 1361, + "id": 1460, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -26055,7 +28291,7 @@ } }, { - "id": 1363, + "id": 1462, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -26076,7 +28312,7 @@ } }, { - "id": 1358, + "id": 1457, "name": "id", "kind": 1024, "kindString": "Property", @@ -26097,7 +28333,7 @@ } }, { - "id": 1357, + "id": 1456, "name": "login", "kind": 1024, "kindString": "Property", @@ -26118,7 +28354,7 @@ } }, { - "id": 1359, + "id": 1458, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -26139,7 +28375,7 @@ } }, { - "id": 1369, + "id": 1468, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -26160,7 +28396,7 @@ } }, { - "id": 1372, + "id": 1471, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -26181,7 +28417,7 @@ } }, { - "id": 1370, + "id": 1469, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -26202,7 +28438,7 @@ } }, { - "id": 1374, + "id": 1473, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -26223,7 +28459,7 @@ } }, { - "id": 1367, + "id": 1466, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -26244,7 +28480,7 @@ } }, { - "id": 1368, + "id": 1467, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -26265,7 +28501,7 @@ } }, { - "id": 1373, + "id": 1472, "name": "type", "kind": 1024, "kindString": "Property", @@ -26286,7 +28522,7 @@ } }, { - "id": 1362, + "id": 1461, "name": "url", "kind": 1024, "kindString": "Property", @@ -26312,24 +28548,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1360, - 1371, - 1364, - 1365, - 1366, - 1361, - 1363, - 1358, - 1357, - 1359, - 1369, - 1372, - 1370, - 1374, - 1367, - 1368, - 1373, - 1362 + 1459, + 1470, + 1463, + 1464, + 1465, + 1460, + 1462, + 1457, + 1456, + 1458, + 1468, + 1471, + 1469, + 1473, + 1466, + 1467, + 1472, + 1461 ] } ] @@ -26337,7 +28573,7 @@ } }, { - "id": 1442, + "id": 1541, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -26355,14 +28591,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1443, + "id": 1542, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1444, + "id": 1543, "name": "admin", "kind": 1024, "kindString": "Property", @@ -26383,7 +28619,7 @@ } }, { - "id": 1446, + "id": 1545, "name": "pull", "kind": 1024, "kindString": "Property", @@ -26404,7 +28640,7 @@ } }, { - "id": 1445, + "id": 1544, "name": "push", "kind": 1024, "kindString": "Property", @@ -26430,9 +28666,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1444, - 1446, - 1445 + 1543, + 1545, + 1544 ] } ] @@ -26440,7 +28676,7 @@ } }, { - "id": 1375, + "id": 1474, "name": "private", "kind": 1024, "kindString": "Property", @@ -26461,7 +28697,7 @@ } }, { - "id": 1407, + "id": 1506, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -26482,7 +28718,7 @@ } }, { - "id": 1439, + "id": 1538, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -26503,7 +28739,7 @@ } }, { - "id": 1408, + "id": 1507, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -26524,7 +28760,7 @@ } }, { - "id": 1426, + "id": 1525, "name": "size", "kind": 1024, "kindString": "Property", @@ -26545,7 +28781,7 @@ } }, { - "id": 1409, + "id": 1508, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -26566,7 +28802,7 @@ } }, { - "id": 1424, + "id": 1523, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -26587,7 +28823,7 @@ } }, { - "id": 1410, + "id": 1509, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -26608,7 +28844,7 @@ } }, { - "id": 1411, + "id": 1510, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -26629,7 +28865,7 @@ } }, { - "id": 1452, + "id": 1551, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -26650,7 +28886,7 @@ } }, { - "id": 1412, + "id": 1511, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -26671,7 +28907,7 @@ } }, { - "id": 1413, + "id": 1512, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -26692,7 +28928,7 @@ } }, { - "id": 1420, + "id": 1519, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -26713,7 +28949,7 @@ } }, { - "id": 1414, + "id": 1513, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -26734,7 +28970,7 @@ } }, { - "id": 1415, + "id": 1514, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -26755,7 +28991,7 @@ } }, { - "id": 1448, + "id": 1547, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -26776,7 +29012,7 @@ } }, { - "id": 1430, + "id": 1529, "name": "topics", "kind": 1024, "kindString": "Property", @@ -26800,7 +29036,7 @@ } }, { - "id": 1416, + "id": 1515, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -26821,7 +29057,7 @@ } }, { - "id": 1441, + "id": 1540, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -26842,7 +29078,7 @@ } }, { - "id": 1379, + "id": 1478, "name": "url", "kind": 1024, "kindString": "Property", @@ -26863,7 +29099,7 @@ } }, { - "id": 1438, + "id": 1537, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -26884,7 +29120,7 @@ } }, { - "id": 1425, + "id": 1524, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -26910,86 +29146,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1451, - 1447, - 1449, - 1380, - 1436, - 1381, - 1382, - 1383, - 1417, - 1384, - 1385, - 1386, - 1387, - 1388, - 1389, - 1440, - 1427, - 1450, - 1390, - 1377, - 1437, - 1391, - 1392, - 1378, - 1423, - 1393, - 1354, - 1394, - 1395, - 1396, - 1397, - 1435, - 1431, - 1434, - 1432, - 1433, - 1421, - 1419, - 1376, - 1351, - 1429, - 1398, - 1399, - 1400, - 1401, - 1402, - 1422, - 1403, - 1404, - 1405, - 1418, - 1353, + 1550, + 1546, + 1548, + 1479, + 1535, + 1480, + 1481, + 1482, + 1516, + 1483, + 1484, + 1485, + 1486, + 1487, + 1488, + 1539, + 1526, + 1549, + 1489, + 1476, + 1536, + 1490, + 1491, + 1477, + 1522, + 1492, 1453, - 1352, - 1406, - 1428, - 1355, - 1442, - 1375, - 1407, - 1439, - 1408, - 1426, - 1409, - 1424, - 1410, - 1411, + 1493, + 1494, + 1495, + 1496, + 1534, + 1530, + 1533, + 1531, + 1532, + 1520, + 1518, + 1475, + 1450, + 1528, + 1497, + 1498, + 1499, + 1500, + 1501, + 1521, + 1502, + 1503, + 1504, + 1517, 1452, - 1412, - 1413, - 1420, - 1414, - 1415, - 1448, - 1430, - 1416, - 1441, - 1379, - 1438, - 1425 + 1552, + 1451, + 1505, + 1527, + 1454, + 1541, + 1474, + 1506, + 1538, + 1507, + 1525, + 1508, + 1523, + 1509, + 1510, + 1551, + 1511, + 1512, + 1519, + 1513, + 1514, + 1547, + 1529, + 1515, + 1540, + 1478, + 1537, + 1524 ] } ] @@ -26999,7 +29235,7 @@ } }, { - "id": 1336, + "id": 1435, "name": "topics", "kind": 1024, "kindString": "Property", @@ -27023,7 +29259,7 @@ } }, { - "id": 1322, + "id": 1421, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -27043,7 +29279,7 @@ } }, { - "id": 1347, + "id": 1446, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -27072,7 +29308,7 @@ } }, { - "id": 1285, + "id": 1384, "name": "url", "kind": 1024, "kindString": "Property", @@ -27092,7 +29328,7 @@ } }, { - "id": 1344, + "id": 1443, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -27116,7 +29352,7 @@ } }, { - "id": 1461, + "id": 1560, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -27136,7 +29372,7 @@ } }, { - "id": 1331, + "id": 1430, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -27161,94 +29397,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1457, - 1348, - 1455, - 1286, - 1342, - 1287, - 1288, - 1289, - 1323, - 1290, - 1291, - 1292, - 1293, - 1294, - 1295, - 1346, - 1333, - 1456, - 1296, - 1283, - 1343, - 1297, - 1298, - 1284, - 1250, - 1329, - 1299, - 1218, - 1300, - 1301, - 1302, - 1303, - 1341, - 1337, - 1340, - 1338, - 1339, - 1327, - 1325, - 1282, - 1215, - 1335, - 1304, - 1305, - 1306, - 1307, - 1308, - 1328, - 1309, - 1219, - 1462, - 1310, - 1311, - 1324, - 1217, - 1459, - 1216, - 1312, - 1460, - 1334, - 1227, - 1258, - 1251, - 1281, - 1313, - 1345, - 1314, - 1332, - 1315, - 1330, - 1316, - 1463, + 1556, + 1447, + 1554, + 1385, + 1441, + 1386, + 1387, + 1388, + 1422, + 1389, + 1390, + 1391, + 1392, + 1393, + 1394, + 1445, + 1432, + 1555, + 1395, + 1382, + 1442, + 1396, + 1397, + 1383, + 1349, + 1428, + 1398, 1317, - 1458, + 1399, + 1400, + 1401, + 1402, + 1440, + 1436, + 1439, + 1437, + 1438, + 1426, + 1424, + 1381, + 1314, + 1434, + 1403, + 1404, + 1405, + 1406, + 1407, + 1427, + 1408, 1318, - 1319, + 1561, + 1409, + 1410, + 1423, + 1316, + 1558, + 1315, + 1411, + 1559, + 1433, 1326, - 1320, - 1321, - 1454, - 1349, - 1336, - 1322, - 1347, - 1285, - 1344, - 1461, - 1331 + 1357, + 1350, + 1380, + 1412, + 1444, + 1413, + 1431, + 1414, + 1429, + 1415, + 1562, + 1416, + 1557, + 1417, + 1418, + 1425, + 1419, + 1420, + 1553, + 1448, + 1435, + 1421, + 1446, + 1384, + 1443, + 1560, + 1430 ] } ] @@ -27256,7 +29492,7 @@ } }, { - "id": 919, + "id": 1018, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -27274,14 +29510,14 @@ "type": { "type": "reflection", "declaration": { - "id": 920, + "id": 1019, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 921, + "id": 1020, "name": "admin", "kind": 1024, "kindString": "Property", @@ -27301,7 +29537,7 @@ } }, { - "id": 922, + "id": 1021, "name": "pull", "kind": 1024, "kindString": "Property", @@ -27321,7 +29557,7 @@ } }, { - "id": 923, + "id": 1022, "name": "push", "kind": 1024, "kindString": "Property", @@ -27346,9 +29582,9 @@ "title": "Properties", "kind": 1024, "children": [ - 921, - 922, - 923 + 1020, + 1021, + 1022 ] } ] @@ -27356,7 +29592,7 @@ } }, { - "id": 852, + "id": 951, "name": "private", "kind": 1024, "kindString": "Property", @@ -27376,7 +29612,7 @@ } }, { - "id": 884, + "id": 983, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -27396,7 +29632,7 @@ } }, { - "id": 916, + "id": 1015, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -27416,7 +29652,7 @@ } }, { - "id": 885, + "id": 984, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -27436,7 +29672,7 @@ } }, { - "id": 1726, + "id": 1825, "name": "security_and_analysis", "kind": 1024, "kindString": "Property", @@ -27461,14 +29697,14 @@ { "type": "reflection", "declaration": { - "id": 1727, + "id": 1826, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1728, + "id": 1827, "name": "advanced_security", "kind": 1024, "kindString": "Property", @@ -27486,14 +29722,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1729, + "id": 1828, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1730, + "id": 1829, "name": "status", "kind": 1024, "kindString": "Property", @@ -27528,7 +29764,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1730 + 1829 ] } ] @@ -27536,7 +29772,7 @@ } }, { - "id": 1731, + "id": 1830, "name": "secret_scanning", "kind": 1024, "kindString": "Property", @@ -27554,14 +29790,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1732, + "id": 1831, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1733, + "id": 1832, "name": "status", "kind": 1024, "kindString": "Property", @@ -27596,7 +29832,7 @@ "title": "Properties", "kind": 1024, "children": [ - 1733 + 1832 ] } ] @@ -27609,8 +29845,8 @@ "title": "Properties", "kind": 1024, "children": [ - 1728, - 1731 + 1827, + 1830 ] } ] @@ -27620,7 +29856,7 @@ } }, { - "id": 903, + "id": 1002, "name": "size", "kind": 1024, "kindString": "Property", @@ -27640,7 +29876,7 @@ } }, { - "id": 1464, + "id": 1563, "name": "source", "kind": 1024, "kindString": "Property", @@ -27658,14 +29894,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1465, + "id": 1564, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1708, + "id": 1807, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -27689,7 +29925,7 @@ } }, { - "id": 1599, + "id": 1698, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -27713,7 +29949,7 @@ } }, { - "id": 1706, + "id": 1805, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -27737,7 +29973,7 @@ } }, { - "id": 1537, + "id": 1636, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -27757,7 +29993,7 @@ } }, { - "id": 1593, + "id": 1692, "name": "archived", "kind": 1024, "kindString": "Property", @@ -27780,7 +30016,7 @@ } }, { - "id": 1538, + "id": 1637, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -27800,7 +30036,7 @@ } }, { - "id": 1539, + "id": 1638, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -27820,7 +30056,7 @@ } }, { - "id": 1540, + "id": 1639, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -27840,7 +30076,7 @@ } }, { - "id": 1574, + "id": 1673, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -27860,7 +30096,7 @@ } }, { - "id": 1541, + "id": 1640, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -27880,7 +30116,7 @@ } }, { - "id": 1542, + "id": 1641, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -27900,7 +30136,7 @@ } }, { - "id": 1543, + "id": 1642, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -27920,7 +30156,7 @@ } }, { - "id": 1544, + "id": 1643, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -27940,7 +30176,7 @@ } }, { - "id": 1545, + "id": 1644, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -27960,7 +30196,7 @@ } }, { - "id": 1546, + "id": 1645, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -27980,7 +30216,7 @@ } }, { - "id": 1597, + "id": 1696, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -28009,7 +30245,7 @@ } }, { - "id": 1584, + "id": 1683, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -28032,7 +30268,7 @@ } }, { - "id": 1707, + "id": 1806, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -28056,7 +30292,7 @@ } }, { - "id": 1547, + "id": 1646, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -28076,7 +30312,7 @@ } }, { - "id": 1534, + "id": 1633, "name": "description", "kind": 1024, "kindString": "Property", @@ -28105,7 +30341,7 @@ } }, { - "id": 1594, + "id": 1693, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -28128,7 +30364,7 @@ } }, { - "id": 1548, + "id": 1647, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -28148,7 +30384,7 @@ } }, { - "id": 1549, + "id": 1648, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -28168,7 +30404,7 @@ } }, { - "id": 1535, + "id": 1634, "name": "fork", "kind": 1024, "kindString": "Property", @@ -28188,7 +30424,7 @@ } }, { - "id": 1501, + "id": 1600, "name": "forks", "kind": 1024, "kindString": "Property", @@ -28208,7 +30444,7 @@ } }, { - "id": 1580, + "id": 1679, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -28228,7 +30464,7 @@ } }, { - "id": 1550, + "id": 1649, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -28248,7 +30484,7 @@ } }, { - "id": 1469, + "id": 1568, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -28268,7 +30504,7 @@ } }, { - "id": 1551, + "id": 1650, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -28288,7 +30524,7 @@ } }, { - "id": 1552, + "id": 1651, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -28308,7 +30544,7 @@ } }, { - "id": 1553, + "id": 1652, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -28328,7 +30564,7 @@ } }, { - "id": 1554, + "id": 1653, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -28348,7 +30584,7 @@ } }, { - "id": 1592, + "id": 1691, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -28371,7 +30607,7 @@ } }, { - "id": 1588, + "id": 1687, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -28394,7 +30630,7 @@ } }, { - "id": 1591, + "id": 1690, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -28414,7 +30650,7 @@ } }, { - "id": 1589, + "id": 1688, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -28437,7 +30673,7 @@ } }, { - "id": 1590, + "id": 1689, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -28460,7 +30696,7 @@ } }, { - "id": 1578, + "id": 1677, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -28489,7 +30725,7 @@ } }, { - "id": 1576, + "id": 1675, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -28509,7 +30745,7 @@ } }, { - "id": 1533, + "id": 1632, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28529,7 +30765,7 @@ } }, { - "id": 1466, + "id": 1565, "name": "id", "kind": 1024, "kindString": "Property", @@ -28552,7 +30788,7 @@ } }, { - "id": 1586, + "id": 1685, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -28576,7 +30812,7 @@ } }, { - "id": 1555, + "id": 1654, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -28596,7 +30832,7 @@ } }, { - "id": 1556, + "id": 1655, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -28616,7 +30852,7 @@ } }, { - "id": 1557, + "id": 1656, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -28636,7 +30872,7 @@ } }, { - "id": 1558, + "id": 1657, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -28656,7 +30892,7 @@ } }, { - "id": 1559, + "id": 1658, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -28676,7 +30912,7 @@ } }, { - "id": 1579, + "id": 1678, "name": "language", "kind": 1024, "kindString": "Property", @@ -28705,7 +30941,7 @@ } }, { - "id": 1560, + "id": 1659, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -28725,7 +30961,7 @@ } }, { - "id": 1470, + "id": 1569, "name": "license", "kind": 1024, "kindString": "Property", @@ -28749,14 +30985,14 @@ { "type": "reflection", "declaration": { - "id": 1471, + "id": 1570, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1477, + "id": 1576, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -28777,7 +31013,7 @@ } }, { - "id": 1472, + "id": 1571, "name": "key", "kind": 1024, "kindString": "Property", @@ -28797,7 +31033,7 @@ } }, { - "id": 1473, + "id": 1572, "name": "name", "kind": 1024, "kindString": "Property", @@ -28817,7 +31053,7 @@ } }, { - "id": 1476, + "id": 1575, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -28837,7 +31073,7 @@ } }, { - "id": 1475, + "id": 1574, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -28866,7 +31102,7 @@ } }, { - "id": 1474, + "id": 1573, "name": "url", "kind": 1024, "kindString": "Property", @@ -28900,12 +31136,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1477, - 1472, - 1473, - 1476, - 1475, - 1474 + 1576, + 1571, + 1572, + 1575, + 1574, + 1573 ] } ] @@ -28915,7 +31151,7 @@ } }, { - "id": 1713, + "id": 1812, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -28936,7 +31172,7 @@ } }, { - "id": 1561, + "id": 1660, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -28956,7 +31192,7 @@ } }, { - "id": 1562, + "id": 1661, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -28976,7 +31212,7 @@ } }, { - "id": 1575, + "id": 1674, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -29005,7 +31241,7 @@ } }, { - "id": 1468, + "id": 1567, "name": "name", "kind": 1024, "kindString": "Property", @@ -29028,7 +31264,7 @@ } }, { - "id": 1710, + "id": 1809, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -29049,7 +31285,7 @@ } }, { - "id": 1467, + "id": 1566, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -29069,7 +31305,7 @@ } }, { - "id": 1563, + "id": 1662, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -29089,7 +31325,7 @@ } }, { - "id": 1711, + "id": 1810, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -29109,7 +31345,7 @@ } }, { - "id": 1585, + "id": 1684, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -29129,7 +31365,7 @@ } }, { - "id": 1478, + "id": 1577, "name": "organization", "kind": 1024, "kindString": "Property", @@ -29154,14 +31390,14 @@ { "type": "reflection", "declaration": { - "id": 1479, + "id": 1578, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1485, + "id": 1584, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -29181,7 +31417,7 @@ } }, { - "id": 1481, + "id": 1580, "name": "email", "kind": 1024, "kindString": "Property", @@ -29211,7 +31447,7 @@ } }, { - "id": 1496, + "id": 1595, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -29231,7 +31467,7 @@ } }, { - "id": 1489, + "id": 1588, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -29251,7 +31487,7 @@ } }, { - "id": 1490, + "id": 1589, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -29271,7 +31507,7 @@ } }, { - "id": 1491, + "id": 1590, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -29291,7 +31527,7 @@ } }, { - "id": 1486, + "id": 1585, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -29320,7 +31556,7 @@ } }, { - "id": 1488, + "id": 1587, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -29340,7 +31576,7 @@ } }, { - "id": 1483, + "id": 1582, "name": "id", "kind": 1024, "kindString": "Property", @@ -29360,7 +31596,7 @@ } }, { - "id": 1482, + "id": 1581, "name": "login", "kind": 1024, "kindString": "Property", @@ -29380,7 +31616,7 @@ } }, { - "id": 1480, + "id": 1579, "name": "name", "kind": 1024, "kindString": "Property", @@ -29410,7 +31646,7 @@ } }, { - "id": 1484, + "id": 1583, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -29430,7 +31666,7 @@ } }, { - "id": 1494, + "id": 1593, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -29450,7 +31686,7 @@ } }, { - "id": 1497, + "id": 1596, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -29470,7 +31706,7 @@ } }, { - "id": 1495, + "id": 1594, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -29490,7 +31726,7 @@ } }, { - "id": 1499, + "id": 1598, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -29510,7 +31746,7 @@ } }, { - "id": 1500, + "id": 1599, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -29531,7 +31767,7 @@ } }, { - "id": 1492, + "id": 1591, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -29551,7 +31787,7 @@ } }, { - "id": 1493, + "id": 1592, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -29571,7 +31807,7 @@ } }, { - "id": 1498, + "id": 1597, "name": "type", "kind": 1024, "kindString": "Property", @@ -29591,7 +31827,7 @@ } }, { - "id": 1487, + "id": 1586, "name": "url", "kind": 1024, "kindString": "Property", @@ -29616,27 +31852,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1485, - 1481, - 1496, - 1489, - 1490, - 1491, - 1486, - 1488, - 1483, - 1482, - 1480, - 1484, - 1494, - 1497, - 1495, - 1499, - 1500, - 1492, - 1493, - 1498, - 1487 + 1584, + 1580, + 1595, + 1588, + 1589, + 1590, + 1585, + 1587, + 1582, + 1581, + 1579, + 1583, + 1593, + 1596, + 1594, + 1598, + 1599, + 1591, + 1592, + 1597, + 1586 ] } ] @@ -29646,7 +31882,7 @@ } }, { - "id": 1509, + "id": 1608, "name": "owner", "kind": 1024, "kindString": "Property", @@ -29670,14 +31906,14 @@ { "type": "reflection", "declaration": { - "id": 1510, + "id": 1609, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1516, + "id": 1615, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -29697,7 +31933,7 @@ } }, { - "id": 1512, + "id": 1611, "name": "email", "kind": 1024, "kindString": "Property", @@ -29727,7 +31963,7 @@ } }, { - "id": 1527, + "id": 1626, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -29747,7 +31983,7 @@ } }, { - "id": 1520, + "id": 1619, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -29767,7 +32003,7 @@ } }, { - "id": 1521, + "id": 1620, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -29787,7 +32023,7 @@ } }, { - "id": 1522, + "id": 1621, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -29807,7 +32043,7 @@ } }, { - "id": 1517, + "id": 1616, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -29836,7 +32072,7 @@ } }, { - "id": 1519, + "id": 1618, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -29856,7 +32092,7 @@ } }, { - "id": 1514, + "id": 1613, "name": "id", "kind": 1024, "kindString": "Property", @@ -29876,7 +32112,7 @@ } }, { - "id": 1513, + "id": 1612, "name": "login", "kind": 1024, "kindString": "Property", @@ -29896,7 +32132,7 @@ } }, { - "id": 1511, + "id": 1610, "name": "name", "kind": 1024, "kindString": "Property", @@ -29926,7 +32162,7 @@ } }, { - "id": 1515, + "id": 1614, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -29946,7 +32182,7 @@ } }, { - "id": 1525, + "id": 1624, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -29966,7 +32202,7 @@ } }, { - "id": 1528, + "id": 1627, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -29986,7 +32222,7 @@ } }, { - "id": 1526, + "id": 1625, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -30006,7 +32242,7 @@ } }, { - "id": 1530, + "id": 1629, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -30026,7 +32262,7 @@ } }, { - "id": 1531, + "id": 1630, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -30047,7 +32283,7 @@ } }, { - "id": 1523, + "id": 1622, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -30067,7 +32303,7 @@ } }, { - "id": 1524, + "id": 1623, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -30087,7 +32323,7 @@ } }, { - "id": 1529, + "id": 1628, "name": "type", "kind": 1024, "kindString": "Property", @@ -30107,7 +32343,7 @@ } }, { - "id": 1518, + "id": 1617, "name": "url", "kind": 1024, "kindString": "Property", @@ -30132,27 +32368,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1516, - 1512, - 1527, - 1520, - 1521, - 1522, - 1517, - 1519, - 1514, - 1513, - 1511, - 1515, - 1525, - 1528, - 1526, - 1530, - 1531, - 1523, - 1524, - 1529, - 1518 + 1615, + 1611, + 1626, + 1619, + 1620, + 1621, + 1616, + 1618, + 1613, + 1612, + 1610, + 1614, + 1624, + 1627, + 1625, + 1629, + 1630, + 1622, + 1623, + 1628, + 1617 ] } ] @@ -30162,7 +32398,7 @@ } }, { - "id": 1502, + "id": 1601, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -30180,14 +32416,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1503, + "id": 1602, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1504, + "id": 1603, "name": "admin", "kind": 1024, "kindString": "Property", @@ -30207,7 +32443,7 @@ } }, { - "id": 1508, + "id": 1607, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -30228,7 +32464,7 @@ } }, { - "id": 1505, + "id": 1604, "name": "pull", "kind": 1024, "kindString": "Property", @@ -30248,7 +32484,7 @@ } }, { - "id": 1507, + "id": 1606, "name": "push", "kind": 1024, "kindString": "Property", @@ -30268,7 +32504,7 @@ } }, { - "id": 1506, + "id": 1605, "name": "triage", "kind": 1024, "kindString": "Property", @@ -30294,11 +32530,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1504, - 1508, - 1505, - 1507, - 1506 + 1603, + 1607, + 1604, + 1606, + 1605 ] } ] @@ -30306,7 +32542,7 @@ } }, { - "id": 1532, + "id": 1631, "name": "private", "kind": 1024, "kindString": "Property", @@ -30329,7 +32565,7 @@ } }, { - "id": 1564, + "id": 1663, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -30349,7 +32585,7 @@ } }, { - "id": 1596, + "id": 1695, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -30378,7 +32614,7 @@ } }, { - "id": 1565, + "id": 1664, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -30398,7 +32634,7 @@ } }, { - "id": 1583, + "id": 1682, "name": "size", "kind": 1024, "kindString": "Property", @@ -30418,7 +32654,7 @@ } }, { - "id": 1566, + "id": 1665, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -30438,7 +32674,7 @@ } }, { - "id": 1581, + "id": 1680, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -30458,7 +32694,7 @@ } }, { - "id": 1567, + "id": 1666, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -30478,7 +32714,7 @@ } }, { - "id": 1714, + "id": 1813, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -30499,7 +32735,7 @@ } }, { - "id": 1568, + "id": 1667, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -30519,7 +32755,7 @@ } }, { - "id": 1709, + "id": 1808, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -30540,7 +32776,7 @@ } }, { - "id": 1569, + "id": 1668, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -30560,7 +32796,7 @@ } }, { - "id": 1570, + "id": 1669, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -30580,7 +32816,7 @@ } }, { - "id": 1577, + "id": 1676, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -30600,7 +32836,7 @@ } }, { - "id": 1571, + "id": 1670, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -30620,7 +32856,7 @@ } }, { - "id": 1572, + "id": 1671, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -30640,7 +32876,7 @@ } }, { - "id": 1705, + "id": 1804, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -30661,7 +32897,7 @@ } }, { - "id": 1600, + "id": 1699, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -30686,14 +32922,14 @@ { "type": "reflection", "declaration": { - "id": 1601, + "id": 1700, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1702, + "id": 1801, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -30714,7 +32950,7 @@ } }, { - "id": 1698, + "id": 1797, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -30735,7 +32971,7 @@ } }, { - "id": 1700, + "id": 1799, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -30756,7 +32992,7 @@ } }, { - "id": 1631, + "id": 1730, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -30777,7 +33013,7 @@ } }, { - "id": 1687, + "id": 1786, "name": "archived", "kind": 1024, "kindString": "Property", @@ -30798,7 +33034,7 @@ } }, { - "id": 1632, + "id": 1731, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -30819,7 +33055,7 @@ } }, { - "id": 1633, + "id": 1732, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -30840,7 +33076,7 @@ } }, { - "id": 1634, + "id": 1733, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -30861,7 +33097,7 @@ } }, { - "id": 1668, + "id": 1767, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -30882,7 +33118,7 @@ } }, { - "id": 1635, + "id": 1734, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -30903,7 +33139,7 @@ } }, { - "id": 1636, + "id": 1735, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -30924,7 +33160,7 @@ } }, { - "id": 1637, + "id": 1736, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -30945,7 +33181,7 @@ } }, { - "id": 1638, + "id": 1737, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -30966,7 +33202,7 @@ } }, { - "id": 1639, + "id": 1738, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -30987,7 +33223,7 @@ } }, { - "id": 1640, + "id": 1739, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -31008,7 +33244,7 @@ } }, { - "id": 1691, + "id": 1790, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -31029,7 +33265,7 @@ } }, { - "id": 1678, + "id": 1777, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -31050,7 +33286,7 @@ } }, { - "id": 1701, + "id": 1800, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -31071,7 +33307,7 @@ } }, { - "id": 1641, + "id": 1740, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -31092,7 +33328,7 @@ } }, { - "id": 1628, + "id": 1727, "name": "description", "kind": 1024, "kindString": "Property", @@ -31113,7 +33349,7 @@ } }, { - "id": 1688, + "id": 1787, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -31134,7 +33370,7 @@ } }, { - "id": 1642, + "id": 1741, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -31155,7 +33391,7 @@ } }, { - "id": 1643, + "id": 1742, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -31176,7 +33412,7 @@ } }, { - "id": 1629, + "id": 1728, "name": "fork", "kind": 1024, "kindString": "Property", @@ -31197,7 +33433,7 @@ } }, { - "id": 1674, + "id": 1773, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -31218,7 +33454,7 @@ } }, { - "id": 1644, + "id": 1743, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -31239,7 +33475,7 @@ } }, { - "id": 1605, + "id": 1704, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -31260,7 +33496,7 @@ } }, { - "id": 1645, + "id": 1744, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -31281,7 +33517,7 @@ } }, { - "id": 1646, + "id": 1745, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -31302,7 +33538,7 @@ } }, { - "id": 1647, + "id": 1746, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -31323,7 +33559,7 @@ } }, { - "id": 1648, + "id": 1747, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -31344,7 +33580,7 @@ } }, { - "id": 1686, + "id": 1785, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -31365,7 +33601,7 @@ } }, { - "id": 1682, + "id": 1781, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -31386,7 +33622,7 @@ } }, { - "id": 1685, + "id": 1784, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -31407,7 +33643,7 @@ } }, { - "id": 1683, + "id": 1782, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -31428,7 +33664,7 @@ } }, { - "id": 1684, + "id": 1783, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -31449,7 +33685,7 @@ } }, { - "id": 1672, + "id": 1771, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -31470,7 +33706,7 @@ } }, { - "id": 1670, + "id": 1769, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -31491,7 +33727,7 @@ } }, { - "id": 1627, + "id": 1726, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -31512,7 +33748,7 @@ } }, { - "id": 1602, + "id": 1701, "name": "id", "kind": 1024, "kindString": "Property", @@ -31533,7 +33769,7 @@ } }, { - "id": 1680, + "id": 1779, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -31554,7 +33790,7 @@ } }, { - "id": 1649, + "id": 1748, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -31575,7 +33811,7 @@ } }, { - "id": 1650, + "id": 1749, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -31596,7 +33832,7 @@ } }, { - "id": 1651, + "id": 1750, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -31617,7 +33853,7 @@ } }, { - "id": 1652, + "id": 1751, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -31638,7 +33874,7 @@ } }, { - "id": 1653, + "id": 1752, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -31659,7 +33895,7 @@ } }, { - "id": 1673, + "id": 1772, "name": "language", "kind": 1024, "kindString": "Property", @@ -31680,7 +33916,7 @@ } }, { - "id": 1654, + "id": 1753, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -31701,7 +33937,7 @@ } }, { - "id": 1655, + "id": 1754, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -31722,7 +33958,7 @@ } }, { - "id": 1656, + "id": 1755, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -31743,7 +33979,7 @@ } }, { - "id": 1669, + "id": 1768, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -31764,7 +34000,7 @@ } }, { - "id": 1604, + "id": 1703, "name": "name", "kind": 1024, "kindString": "Property", @@ -31785,7 +34021,7 @@ } }, { - "id": 1704, + "id": 1803, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -31806,7 +34042,7 @@ } }, { - "id": 1603, + "id": 1702, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -31827,7 +34063,7 @@ } }, { - "id": 1657, + "id": 1756, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -31848,7 +34084,7 @@ } }, { - "id": 1679, + "id": 1778, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -31869,7 +34105,7 @@ } }, { - "id": 1606, + "id": 1705, "name": "owner", "kind": 1024, "kindString": "Property", @@ -31887,14 +34123,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1607, + "id": 1706, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1611, + "id": 1710, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -31915,7 +34151,7 @@ } }, { - "id": 1622, + "id": 1721, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -31936,7 +34172,7 @@ } }, { - "id": 1615, + "id": 1714, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -31957,7 +34193,7 @@ } }, { - "id": 1616, + "id": 1715, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -31978,7 +34214,7 @@ } }, { - "id": 1617, + "id": 1716, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -31999,7 +34235,7 @@ } }, { - "id": 1612, + "id": 1711, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -32020,7 +34256,7 @@ } }, { - "id": 1614, + "id": 1713, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -32041,7 +34277,7 @@ } }, { - "id": 1609, + "id": 1708, "name": "id", "kind": 1024, "kindString": "Property", @@ -32062,7 +34298,7 @@ } }, { - "id": 1608, + "id": 1707, "name": "login", "kind": 1024, "kindString": "Property", @@ -32083,7 +34319,7 @@ } }, { - "id": 1610, + "id": 1709, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -32104,7 +34340,7 @@ } }, { - "id": 1620, + "id": 1719, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -32125,7 +34361,7 @@ } }, { - "id": 1623, + "id": 1722, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -32146,7 +34382,7 @@ } }, { - "id": 1621, + "id": 1720, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -32167,7 +34403,7 @@ } }, { - "id": 1625, + "id": 1724, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -32188,7 +34424,7 @@ } }, { - "id": 1618, + "id": 1717, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -32209,7 +34445,7 @@ } }, { - "id": 1619, + "id": 1718, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -32230,7 +34466,7 @@ } }, { - "id": 1624, + "id": 1723, "name": "type", "kind": 1024, "kindString": "Property", @@ -32251,7 +34487,7 @@ } }, { - "id": 1613, + "id": 1712, "name": "url", "kind": 1024, "kindString": "Property", @@ -32277,24 +34513,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1611, - 1622, - 1615, - 1616, - 1617, - 1612, - 1614, - 1609, - 1608, - 1610, - 1620, - 1623, - 1621, - 1625, - 1618, - 1619, - 1624, - 1613 + 1710, + 1721, + 1714, + 1715, + 1716, + 1711, + 1713, + 1708, + 1707, + 1709, + 1719, + 1722, + 1720, + 1724, + 1717, + 1718, + 1723, + 1712 ] } ] @@ -32302,7 +34538,7 @@ } }, { - "id": 1693, + "id": 1792, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -32320,14 +34556,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1694, + "id": 1793, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1695, + "id": 1794, "name": "admin", "kind": 1024, "kindString": "Property", @@ -32348,7 +34584,7 @@ } }, { - "id": 1697, + "id": 1796, "name": "pull", "kind": 1024, "kindString": "Property", @@ -32369,7 +34605,7 @@ } }, { - "id": 1696, + "id": 1795, "name": "push", "kind": 1024, "kindString": "Property", @@ -32395,9 +34631,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1695, - 1697, - 1696 + 1794, + 1796, + 1795 ] } ] @@ -32405,7 +34641,7 @@ } }, { - "id": 1626, + "id": 1725, "name": "private", "kind": 1024, "kindString": "Property", @@ -32426,7 +34662,7 @@ } }, { - "id": 1658, + "id": 1757, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -32447,7 +34683,7 @@ } }, { - "id": 1690, + "id": 1789, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -32468,7 +34704,7 @@ } }, { - "id": 1659, + "id": 1758, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -32489,7 +34725,7 @@ } }, { - "id": 1677, + "id": 1776, "name": "size", "kind": 1024, "kindString": "Property", @@ -32510,7 +34746,7 @@ } }, { - "id": 1660, + "id": 1759, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -32531,7 +34767,7 @@ } }, { - "id": 1675, + "id": 1774, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -32552,7 +34788,7 @@ } }, { - "id": 1661, + "id": 1760, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -32573,7 +34809,7 @@ } }, { - "id": 1662, + "id": 1761, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -32594,7 +34830,7 @@ } }, { - "id": 1703, + "id": 1802, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -32615,7 +34851,7 @@ } }, { - "id": 1663, + "id": 1762, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -32636,7 +34872,7 @@ } }, { - "id": 1664, + "id": 1763, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -32657,7 +34893,7 @@ } }, { - "id": 1671, + "id": 1770, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -32678,7 +34914,7 @@ } }, { - "id": 1665, + "id": 1764, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -32699,7 +34935,7 @@ } }, { - "id": 1666, + "id": 1765, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -32720,7 +34956,7 @@ } }, { - "id": 1699, + "id": 1798, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -32741,7 +34977,7 @@ } }, { - "id": 1681, + "id": 1780, "name": "topics", "kind": 1024, "kindString": "Property", @@ -32765,7 +35001,7 @@ } }, { - "id": 1667, + "id": 1766, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -32786,7 +35022,7 @@ } }, { - "id": 1692, + "id": 1791, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -32807,7 +35043,7 @@ } }, { - "id": 1630, + "id": 1729, "name": "url", "kind": 1024, "kindString": "Property", @@ -32828,7 +35064,7 @@ } }, { - "id": 1689, + "id": 1788, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -32849,7 +35085,7 @@ } }, { - "id": 1676, + "id": 1775, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -32875,86 +35111,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1702, - 1698, - 1700, - 1631, - 1687, - 1632, - 1633, - 1634, - 1668, - 1635, - 1636, - 1637, - 1638, - 1639, - 1640, - 1691, - 1678, - 1701, - 1641, - 1628, - 1688, - 1642, - 1643, - 1629, - 1674, - 1644, - 1605, - 1645, - 1646, - 1647, - 1648, - 1686, - 1682, - 1685, - 1683, - 1684, - 1672, - 1670, - 1627, - 1602, - 1680, - 1649, - 1650, - 1651, - 1652, - 1653, - 1673, - 1654, - 1655, - 1656, - 1669, - 1604, + 1801, + 1797, + 1799, + 1730, + 1786, + 1731, + 1732, + 1733, + 1767, + 1734, + 1735, + 1736, + 1737, + 1738, + 1739, + 1790, + 1777, + 1800, + 1740, + 1727, + 1787, + 1741, + 1742, + 1728, + 1773, + 1743, 1704, - 1603, - 1657, - 1679, - 1606, - 1693, - 1626, - 1658, - 1690, - 1659, - 1677, - 1660, - 1675, - 1661, - 1662, + 1744, + 1745, + 1746, + 1747, + 1785, + 1781, + 1784, + 1782, + 1783, + 1771, + 1769, + 1726, + 1701, + 1779, + 1748, + 1749, + 1750, + 1751, + 1752, + 1772, + 1753, + 1754, + 1755, + 1768, 1703, - 1663, - 1664, - 1671, - 1665, - 1666, - 1699, - 1681, - 1667, - 1692, - 1630, - 1689, - 1676 + 1803, + 1702, + 1756, + 1778, + 1705, + 1792, + 1725, + 1757, + 1789, + 1758, + 1776, + 1759, + 1774, + 1760, + 1761, + 1802, + 1762, + 1763, + 1770, + 1764, + 1765, + 1798, + 1780, + 1766, + 1791, + 1729, + 1788, + 1775 ] } ] @@ -32964,7 +35200,7 @@ } }, { - "id": 1587, + "id": 1686, "name": "topics", "kind": 1024, "kindString": "Property", @@ -32988,7 +35224,7 @@ } }, { - "id": 1573, + "id": 1672, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -33008,7 +35244,7 @@ } }, { - "id": 1598, + "id": 1697, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -33037,7 +35273,7 @@ } }, { - "id": 1536, + "id": 1635, "name": "url", "kind": 1024, "kindString": "Property", @@ -33057,7 +35293,7 @@ } }, { - "id": 1595, + "id": 1694, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -33081,7 +35317,7 @@ } }, { - "id": 1712, + "id": 1811, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -33101,7 +35337,7 @@ } }, { - "id": 1582, + "id": 1681, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -33126,94 +35362,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1708, - 1599, - 1706, - 1537, - 1593, - 1538, - 1539, - 1540, - 1574, - 1541, - 1542, - 1543, - 1544, - 1545, - 1546, - 1597, - 1584, - 1707, - 1547, - 1534, - 1594, - 1548, - 1549, - 1535, - 1501, - 1580, - 1550, - 1469, - 1551, - 1552, - 1553, - 1554, - 1592, - 1588, - 1591, - 1589, - 1590, - 1578, - 1576, - 1533, - 1466, - 1586, - 1555, - 1556, - 1557, - 1558, - 1559, - 1579, - 1560, - 1470, - 1713, - 1561, - 1562, - 1575, - 1468, - 1710, - 1467, - 1563, - 1711, - 1585, - 1478, - 1509, - 1502, - 1532, - 1564, - 1596, - 1565, - 1583, - 1566, - 1581, - 1567, - 1714, + 1807, + 1698, + 1805, + 1636, + 1692, + 1637, + 1638, + 1639, + 1673, + 1640, + 1641, + 1642, + 1643, + 1644, + 1645, + 1696, + 1683, + 1806, + 1646, + 1633, + 1693, + 1647, + 1648, + 1634, + 1600, + 1679, + 1649, 1568, - 1709, + 1650, + 1651, + 1652, + 1653, + 1691, + 1687, + 1690, + 1688, + 1689, + 1677, + 1675, + 1632, + 1565, + 1685, + 1654, + 1655, + 1656, + 1657, + 1658, + 1678, + 1659, 1569, - 1570, + 1812, + 1660, + 1661, + 1674, + 1567, + 1809, + 1566, + 1662, + 1810, + 1684, 1577, - 1571, - 1572, - 1705, - 1600, - 1587, - 1573, - 1598, - 1536, - 1595, - 1712, - 1582 + 1608, + 1601, + 1631, + 1663, + 1695, + 1664, + 1682, + 1665, + 1680, + 1666, + 1813, + 1667, + 1808, + 1668, + 1669, + 1676, + 1670, + 1671, + 1804, + 1699, + 1686, + 1672, + 1697, + 1635, + 1694, + 1811, + 1681 ] } ] @@ -33221,7 +35457,7 @@ } }, { - "id": 886, + "id": 985, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -33241,7 +35477,7 @@ } }, { - "id": 901, + "id": 1000, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -33261,7 +35497,7 @@ } }, { - "id": 887, + "id": 986, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -33281,7 +35517,7 @@ } }, { - "id": 888, + "id": 987, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -33301,7 +35537,7 @@ } }, { - "id": 1180, + "id": 1279, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -33321,7 +35557,7 @@ } }, { - "id": 889, + "id": 988, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -33341,7 +35577,7 @@ } }, { - "id": 890, + "id": 989, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -33361,7 +35597,7 @@ } }, { - "id": 897, + "id": 996, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -33381,7 +35617,7 @@ } }, { - "id": 891, + "id": 990, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -33401,7 +35637,7 @@ } }, { - "id": 892, + "id": 991, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -33421,7 +35657,7 @@ } }, { - "id": 1176, + "id": 1275, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -33451,7 +35687,7 @@ } }, { - "id": 925, + "id": 1024, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -33476,14 +35712,14 @@ { "type": "reflection", "declaration": { - "id": 926, + "id": 1025, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1169, + "id": 1268, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -33507,7 +35743,7 @@ } }, { - "id": 1060, + "id": 1159, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -33531,7 +35767,7 @@ } }, { - "id": 1167, + "id": 1266, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -33555,7 +35791,7 @@ } }, { - "id": 998, + "id": 1097, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -33575,7 +35811,7 @@ } }, { - "id": 1054, + "id": 1153, "name": "archived", "kind": 1024, "kindString": "Property", @@ -33598,7 +35834,7 @@ } }, { - "id": 999, + "id": 1098, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -33618,7 +35854,7 @@ } }, { - "id": 1000, + "id": 1099, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -33638,7 +35874,7 @@ } }, { - "id": 1001, + "id": 1100, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -33658,7 +35894,7 @@ } }, { - "id": 1035, + "id": 1134, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -33678,7 +35914,7 @@ } }, { - "id": 1002, + "id": 1101, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -33698,7 +35934,7 @@ } }, { - "id": 1003, + "id": 1102, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -33718,7 +35954,7 @@ } }, { - "id": 1004, + "id": 1103, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -33738,7 +35974,7 @@ } }, { - "id": 1005, + "id": 1104, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -33758,7 +35994,7 @@ } }, { - "id": 1006, + "id": 1105, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -33778,7 +36014,7 @@ } }, { - "id": 1007, + "id": 1106, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -33798,7 +36034,7 @@ } }, { - "id": 1058, + "id": 1157, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -33827,7 +36063,7 @@ } }, { - "id": 1045, + "id": 1144, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -33850,7 +36086,7 @@ } }, { - "id": 1168, + "id": 1267, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -33874,7 +36110,7 @@ } }, { - "id": 1008, + "id": 1107, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -33894,7 +36130,7 @@ } }, { - "id": 995, + "id": 1094, "name": "description", "kind": 1024, "kindString": "Property", @@ -33923,7 +36159,7 @@ } }, { - "id": 1055, + "id": 1154, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -33946,7 +36182,7 @@ } }, { - "id": 1009, + "id": 1108, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -33966,7 +36202,7 @@ } }, { - "id": 1010, + "id": 1109, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -33986,7 +36222,7 @@ } }, { - "id": 996, + "id": 1095, "name": "fork", "kind": 1024, "kindString": "Property", @@ -34006,7 +36242,7 @@ } }, { - "id": 962, + "id": 1061, "name": "forks", "kind": 1024, "kindString": "Property", @@ -34026,7 +36262,7 @@ } }, { - "id": 1041, + "id": 1140, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -34046,7 +36282,7 @@ } }, { - "id": 1011, + "id": 1110, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -34066,7 +36302,7 @@ } }, { - "id": 930, + "id": 1029, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -34086,7 +36322,7 @@ } }, { - "id": 1012, + "id": 1111, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -34106,7 +36342,7 @@ } }, { - "id": 1013, + "id": 1112, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -34126,7 +36362,7 @@ } }, { - "id": 1014, + "id": 1113, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -34146,7 +36382,7 @@ } }, { - "id": 1015, + "id": 1114, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -34166,7 +36402,7 @@ } }, { - "id": 1053, + "id": 1152, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -34189,7 +36425,7 @@ } }, { - "id": 1049, + "id": 1148, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -34212,7 +36448,7 @@ } }, { - "id": 1052, + "id": 1151, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -34232,7 +36468,7 @@ } }, { - "id": 1050, + "id": 1149, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -34255,7 +36491,7 @@ } }, { - "id": 1051, + "id": 1150, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -34278,7 +36514,7 @@ } }, { - "id": 1039, + "id": 1138, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -34307,7 +36543,7 @@ } }, { - "id": 1037, + "id": 1136, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -34327,7 +36563,7 @@ } }, { - "id": 994, + "id": 1093, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -34347,7 +36583,7 @@ } }, { - "id": 927, + "id": 1026, "name": "id", "kind": 1024, "kindString": "Property", @@ -34370,7 +36606,7 @@ } }, { - "id": 1047, + "id": 1146, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -34394,7 +36630,7 @@ } }, { - "id": 1016, + "id": 1115, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -34414,7 +36650,7 @@ } }, { - "id": 1017, + "id": 1116, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -34434,7 +36670,7 @@ } }, { - "id": 1018, + "id": 1117, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -34454,7 +36690,7 @@ } }, { - "id": 1019, + "id": 1118, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -34474,7 +36710,7 @@ } }, { - "id": 1020, + "id": 1119, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -34494,7 +36730,7 @@ } }, { - "id": 1040, + "id": 1139, "name": "language", "kind": 1024, "kindString": "Property", @@ -34523,7 +36759,7 @@ } }, { - "id": 1021, + "id": 1120, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -34543,7 +36779,7 @@ } }, { - "id": 931, + "id": 1030, "name": "license", "kind": 1024, "kindString": "Property", @@ -34567,14 +36803,14 @@ { "type": "reflection", "declaration": { - "id": 932, + "id": 1031, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 938, + "id": 1037, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -34595,7 +36831,7 @@ } }, { - "id": 933, + "id": 1032, "name": "key", "kind": 1024, "kindString": "Property", @@ -34615,7 +36851,7 @@ } }, { - "id": 934, + "id": 1033, "name": "name", "kind": 1024, "kindString": "Property", @@ -34635,7 +36871,7 @@ } }, { - "id": 937, + "id": 1036, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34655,7 +36891,7 @@ } }, { - "id": 936, + "id": 1035, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -34684,7 +36920,7 @@ } }, { - "id": 935, + "id": 1034, "name": "url", "kind": 1024, "kindString": "Property", @@ -34718,12 +36954,12 @@ "title": "Properties", "kind": 1024, "children": [ - 938, - 933, - 934, - 937, - 936, - 935 + 1037, + 1032, + 1033, + 1036, + 1035, + 1034 ] } ] @@ -34733,7 +36969,7 @@ } }, { - "id": 1174, + "id": 1273, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -34754,7 +36990,7 @@ } }, { - "id": 1022, + "id": 1121, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -34774,7 +37010,7 @@ } }, { - "id": 1023, + "id": 1122, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -34794,7 +37030,7 @@ } }, { - "id": 1036, + "id": 1135, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -34823,7 +37059,7 @@ } }, { - "id": 929, + "id": 1028, "name": "name", "kind": 1024, "kindString": "Property", @@ -34846,7 +37082,7 @@ } }, { - "id": 1171, + "id": 1270, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -34867,7 +37103,7 @@ } }, { - "id": 928, + "id": 1027, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -34887,7 +37123,7 @@ } }, { - "id": 1024, + "id": 1123, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -34907,7 +37143,7 @@ } }, { - "id": 1172, + "id": 1271, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -34927,7 +37163,7 @@ } }, { - "id": 1046, + "id": 1145, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -34947,7 +37183,7 @@ } }, { - "id": 939, + "id": 1038, "name": "organization", "kind": 1024, "kindString": "Property", @@ -34972,14 +37208,14 @@ { "type": "reflection", "declaration": { - "id": 940, + "id": 1039, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 946, + "id": 1045, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -34999,7 +37235,7 @@ } }, { - "id": 942, + "id": 1041, "name": "email", "kind": 1024, "kindString": "Property", @@ -35029,7 +37265,7 @@ } }, { - "id": 957, + "id": 1056, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -35049,7 +37285,7 @@ } }, { - "id": 950, + "id": 1049, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -35069,7 +37305,7 @@ } }, { - "id": 951, + "id": 1050, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -35089,7 +37325,7 @@ } }, { - "id": 952, + "id": 1051, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -35109,7 +37345,7 @@ } }, { - "id": 947, + "id": 1046, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -35138,7 +37374,7 @@ } }, { - "id": 949, + "id": 1048, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -35158,7 +37394,7 @@ } }, { - "id": 944, + "id": 1043, "name": "id", "kind": 1024, "kindString": "Property", @@ -35178,7 +37414,7 @@ } }, { - "id": 943, + "id": 1042, "name": "login", "kind": 1024, "kindString": "Property", @@ -35198,7 +37434,7 @@ } }, { - "id": 941, + "id": 1040, "name": "name", "kind": 1024, "kindString": "Property", @@ -35228,7 +37464,7 @@ } }, { - "id": 945, + "id": 1044, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -35248,7 +37484,7 @@ } }, { - "id": 955, + "id": 1054, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -35268,7 +37504,7 @@ } }, { - "id": 958, + "id": 1057, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -35288,7 +37524,7 @@ } }, { - "id": 956, + "id": 1055, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -35308,7 +37544,7 @@ } }, { - "id": 960, + "id": 1059, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -35328,7 +37564,7 @@ } }, { - "id": 961, + "id": 1060, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -35349,7 +37585,7 @@ } }, { - "id": 953, + "id": 1052, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -35369,7 +37605,7 @@ } }, { - "id": 954, + "id": 1053, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -35389,7 +37625,7 @@ } }, { - "id": 959, + "id": 1058, "name": "type", "kind": 1024, "kindString": "Property", @@ -35409,7 +37645,7 @@ } }, { - "id": 948, + "id": 1047, "name": "url", "kind": 1024, "kindString": "Property", @@ -35434,27 +37670,27 @@ "title": "Properties", "kind": 1024, "children": [ - 946, - 942, - 957, - 950, - 951, - 952, - 947, - 949, - 944, - 943, - 941, - 945, - 955, - 958, - 956, - 960, - 961, - 953, - 954, - 959, - 948 + 1045, + 1041, + 1056, + 1049, + 1050, + 1051, + 1046, + 1048, + 1043, + 1042, + 1040, + 1044, + 1054, + 1057, + 1055, + 1059, + 1060, + 1052, + 1053, + 1058, + 1047 ] } ] @@ -35464,7 +37700,7 @@ } }, { - "id": 970, + "id": 1069, "name": "owner", "kind": 1024, "kindString": "Property", @@ -35488,14 +37724,14 @@ { "type": "reflection", "declaration": { - "id": 971, + "id": 1070, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 977, + "id": 1076, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -35515,7 +37751,7 @@ } }, { - "id": 973, + "id": 1072, "name": "email", "kind": 1024, "kindString": "Property", @@ -35545,7 +37781,7 @@ } }, { - "id": 988, + "id": 1087, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -35565,7 +37801,7 @@ } }, { - "id": 981, + "id": 1080, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -35585,7 +37821,7 @@ } }, { - "id": 982, + "id": 1081, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -35605,7 +37841,7 @@ } }, { - "id": 983, + "id": 1082, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -35625,7 +37861,7 @@ } }, { - "id": 978, + "id": 1077, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -35654,7 +37890,7 @@ } }, { - "id": 980, + "id": 1079, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -35674,7 +37910,7 @@ } }, { - "id": 975, + "id": 1074, "name": "id", "kind": 1024, "kindString": "Property", @@ -35694,7 +37930,7 @@ } }, { - "id": 974, + "id": 1073, "name": "login", "kind": 1024, "kindString": "Property", @@ -35714,7 +37950,7 @@ } }, { - "id": 972, + "id": 1071, "name": "name", "kind": 1024, "kindString": "Property", @@ -35744,7 +37980,7 @@ } }, { - "id": 976, + "id": 1075, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -35764,7 +38000,7 @@ } }, { - "id": 986, + "id": 1085, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -35784,7 +38020,7 @@ } }, { - "id": 989, + "id": 1088, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -35804,7 +38040,7 @@ } }, { - "id": 987, + "id": 1086, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -35824,7 +38060,7 @@ } }, { - "id": 991, + "id": 1090, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -35844,7 +38080,7 @@ } }, { - "id": 992, + "id": 1091, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -35865,7 +38101,7 @@ } }, { - "id": 984, + "id": 1083, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -35885,7 +38121,7 @@ } }, { - "id": 985, + "id": 1084, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -35905,7 +38141,7 @@ } }, { - "id": 990, + "id": 1089, "name": "type", "kind": 1024, "kindString": "Property", @@ -35925,7 +38161,7 @@ } }, { - "id": 979, + "id": 1078, "name": "url", "kind": 1024, "kindString": "Property", @@ -35950,27 +38186,27 @@ "title": "Properties", "kind": 1024, "children": [ - 977, - 973, - 988, - 981, - 982, - 983, - 978, - 980, - 975, - 974, - 972, - 976, - 986, - 989, - 987, - 991, - 992, - 984, - 985, - 990, - 979 + 1076, + 1072, + 1087, + 1080, + 1081, + 1082, + 1077, + 1079, + 1074, + 1073, + 1071, + 1075, + 1085, + 1088, + 1086, + 1090, + 1091, + 1083, + 1084, + 1089, + 1078 ] } ] @@ -35980,7 +38216,7 @@ } }, { - "id": 963, + "id": 1062, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -35998,14 +38234,14 @@ "type": { "type": "reflection", "declaration": { - "id": 964, + "id": 1063, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 965, + "id": 1064, "name": "admin", "kind": 1024, "kindString": "Property", @@ -36025,7 +38261,7 @@ } }, { - "id": 969, + "id": 1068, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -36046,7 +38282,7 @@ } }, { - "id": 966, + "id": 1065, "name": "pull", "kind": 1024, "kindString": "Property", @@ -36066,7 +38302,7 @@ } }, { - "id": 968, + "id": 1067, "name": "push", "kind": 1024, "kindString": "Property", @@ -36086,7 +38322,7 @@ } }, { - "id": 967, + "id": 1066, "name": "triage", "kind": 1024, "kindString": "Property", @@ -36112,11 +38348,11 @@ "title": "Properties", "kind": 1024, "children": [ - 965, - 969, - 966, - 968, - 967 + 1064, + 1068, + 1065, + 1067, + 1066 ] } ] @@ -36124,7 +38360,7 @@ } }, { - "id": 993, + "id": 1092, "name": "private", "kind": 1024, "kindString": "Property", @@ -36147,7 +38383,7 @@ } }, { - "id": 1025, + "id": 1124, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -36167,7 +38403,7 @@ } }, { - "id": 1057, + "id": 1156, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -36196,7 +38432,7 @@ } }, { - "id": 1026, + "id": 1125, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -36216,7 +38452,7 @@ } }, { - "id": 1044, + "id": 1143, "name": "size", "kind": 1024, "kindString": "Property", @@ -36236,7 +38472,7 @@ } }, { - "id": 1027, + "id": 1126, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -36256,7 +38492,7 @@ } }, { - "id": 1042, + "id": 1141, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -36276,7 +38512,7 @@ } }, { - "id": 1028, + "id": 1127, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -36296,7 +38532,7 @@ } }, { - "id": 1175, + "id": 1274, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -36317,7 +38553,7 @@ } }, { - "id": 1029, + "id": 1128, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -36337,7 +38573,7 @@ } }, { - "id": 1170, + "id": 1269, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -36358,7 +38594,7 @@ } }, { - "id": 1030, + "id": 1129, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -36378,7 +38614,7 @@ } }, { - "id": 1031, + "id": 1130, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -36398,7 +38634,7 @@ } }, { - "id": 1038, + "id": 1137, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -36418,7 +38654,7 @@ } }, { - "id": 1032, + "id": 1131, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -36438,7 +38674,7 @@ } }, { - "id": 1033, + "id": 1132, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -36458,7 +38694,7 @@ } }, { - "id": 1166, + "id": 1265, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -36479,7 +38715,7 @@ } }, { - "id": 1061, + "id": 1160, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -36504,14 +38740,14 @@ { "type": "reflection", "declaration": { - "id": 1062, + "id": 1161, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1163, + "id": 1262, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -36532,7 +38768,7 @@ } }, { - "id": 1159, + "id": 1258, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -36553,7 +38789,7 @@ } }, { - "id": 1161, + "id": 1260, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -36574,7 +38810,7 @@ } }, { - "id": 1092, + "id": 1191, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -36595,7 +38831,7 @@ } }, { - "id": 1148, + "id": 1247, "name": "archived", "kind": 1024, "kindString": "Property", @@ -36616,7 +38852,7 @@ } }, { - "id": 1093, + "id": 1192, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -36637,7 +38873,7 @@ } }, { - "id": 1094, + "id": 1193, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -36658,7 +38894,7 @@ } }, { - "id": 1095, + "id": 1194, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -36679,7 +38915,7 @@ } }, { - "id": 1129, + "id": 1228, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -36700,7 +38936,7 @@ } }, { - "id": 1096, + "id": 1195, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -36721,7 +38957,7 @@ } }, { - "id": 1097, + "id": 1196, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -36742,7 +38978,7 @@ } }, { - "id": 1098, + "id": 1197, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -36763,7 +38999,7 @@ } }, { - "id": 1099, + "id": 1198, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -36784,7 +39020,7 @@ } }, { - "id": 1100, + "id": 1199, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -36805,7 +39041,7 @@ } }, { - "id": 1101, + "id": 1200, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -36826,7 +39062,7 @@ } }, { - "id": 1152, + "id": 1251, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -36847,7 +39083,7 @@ } }, { - "id": 1139, + "id": 1238, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -36868,7 +39104,7 @@ } }, { - "id": 1162, + "id": 1261, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -36889,7 +39125,7 @@ } }, { - "id": 1102, + "id": 1201, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -36910,7 +39146,7 @@ } }, { - "id": 1089, + "id": 1188, "name": "description", "kind": 1024, "kindString": "Property", @@ -36931,7 +39167,7 @@ } }, { - "id": 1149, + "id": 1248, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -36952,7 +39188,7 @@ } }, { - "id": 1103, + "id": 1202, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -36973,7 +39209,7 @@ } }, { - "id": 1104, + "id": 1203, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -36994,7 +39230,7 @@ } }, { - "id": 1090, + "id": 1189, "name": "fork", "kind": 1024, "kindString": "Property", @@ -37015,7 +39251,7 @@ } }, { - "id": 1135, + "id": 1234, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -37036,7 +39272,7 @@ } }, { - "id": 1105, + "id": 1204, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -37057,7 +39293,7 @@ } }, { - "id": 1066, + "id": 1165, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -37078,7 +39314,7 @@ } }, { - "id": 1106, + "id": 1205, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -37099,7 +39335,7 @@ } }, { - "id": 1107, + "id": 1206, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -37120,7 +39356,7 @@ } }, { - "id": 1108, + "id": 1207, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -37141,7 +39377,7 @@ } }, { - "id": 1109, + "id": 1208, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -37162,7 +39398,7 @@ } }, { - "id": 1147, + "id": 1246, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -37183,7 +39419,7 @@ } }, { - "id": 1143, + "id": 1242, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -37204,7 +39440,7 @@ } }, { - "id": 1146, + "id": 1245, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -37225,7 +39461,7 @@ } }, { - "id": 1144, + "id": 1243, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -37246,7 +39482,7 @@ } }, { - "id": 1145, + "id": 1244, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -37267,7 +39503,7 @@ } }, { - "id": 1133, + "id": 1232, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -37288,7 +39524,7 @@ } }, { - "id": 1131, + "id": 1230, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -37309,7 +39545,7 @@ } }, { - "id": 1088, + "id": 1187, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -37330,7 +39566,7 @@ } }, { - "id": 1063, + "id": 1162, "name": "id", "kind": 1024, "kindString": "Property", @@ -37351,7 +39587,7 @@ } }, { - "id": 1141, + "id": 1240, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -37372,7 +39608,7 @@ } }, { - "id": 1110, + "id": 1209, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -37393,7 +39629,7 @@ } }, { - "id": 1111, + "id": 1210, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -37414,7 +39650,7 @@ } }, { - "id": 1112, + "id": 1211, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -37435,7 +39671,7 @@ } }, { - "id": 1113, + "id": 1212, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -37456,7 +39692,7 @@ } }, { - "id": 1114, + "id": 1213, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -37477,7 +39713,7 @@ } }, { - "id": 1134, + "id": 1233, "name": "language", "kind": 1024, "kindString": "Property", @@ -37498,7 +39734,7 @@ } }, { - "id": 1115, + "id": 1214, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -37519,7 +39755,7 @@ } }, { - "id": 1116, + "id": 1215, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -37540,7 +39776,7 @@ } }, { - "id": 1117, + "id": 1216, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -37561,7 +39797,7 @@ } }, { - "id": 1130, + "id": 1229, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -37582,7 +39818,7 @@ } }, { - "id": 1065, + "id": 1164, "name": "name", "kind": 1024, "kindString": "Property", @@ -37603,7 +39839,7 @@ } }, { - "id": 1165, + "id": 1264, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -37624,7 +39860,7 @@ } }, { - "id": 1064, + "id": 1163, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -37645,7 +39881,7 @@ } }, { - "id": 1118, + "id": 1217, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -37666,7 +39902,7 @@ } }, { - "id": 1140, + "id": 1239, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -37687,7 +39923,7 @@ } }, { - "id": 1067, + "id": 1166, "name": "owner", "kind": 1024, "kindString": "Property", @@ -37705,14 +39941,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1068, + "id": 1167, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1072, + "id": 1171, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -37733,7 +39969,7 @@ } }, { - "id": 1083, + "id": 1182, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -37754,7 +39990,7 @@ } }, { - "id": 1076, + "id": 1175, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -37775,7 +40011,7 @@ } }, { - "id": 1077, + "id": 1176, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -37796,7 +40032,7 @@ } }, { - "id": 1078, + "id": 1177, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -37817,7 +40053,7 @@ } }, { - "id": 1073, + "id": 1172, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -37838,7 +40074,7 @@ } }, { - "id": 1075, + "id": 1174, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -37859,7 +40095,7 @@ } }, { - "id": 1070, + "id": 1169, "name": "id", "kind": 1024, "kindString": "Property", @@ -37880,7 +40116,7 @@ } }, { - "id": 1069, + "id": 1168, "name": "login", "kind": 1024, "kindString": "Property", @@ -37901,7 +40137,7 @@ } }, { - "id": 1071, + "id": 1170, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -37922,7 +40158,7 @@ } }, { - "id": 1081, + "id": 1180, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -37943,7 +40179,7 @@ } }, { - "id": 1084, + "id": 1183, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -37964,7 +40200,7 @@ } }, { - "id": 1082, + "id": 1181, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -37985,7 +40221,7 @@ } }, { - "id": 1086, + "id": 1185, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -38006,7 +40242,7 @@ } }, { - "id": 1079, + "id": 1178, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -38027,7 +40263,7 @@ } }, { - "id": 1080, + "id": 1179, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -38048,7 +40284,7 @@ } }, { - "id": 1085, + "id": 1184, "name": "type", "kind": 1024, "kindString": "Property", @@ -38069,7 +40305,7 @@ } }, { - "id": 1074, + "id": 1173, "name": "url", "kind": 1024, "kindString": "Property", @@ -38095,24 +40331,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1072, - 1083, - 1076, - 1077, - 1078, - 1073, - 1075, - 1070, - 1069, - 1071, - 1081, - 1084, - 1082, - 1086, - 1079, - 1080, - 1085, - 1074 + 1171, + 1182, + 1175, + 1176, + 1177, + 1172, + 1174, + 1169, + 1168, + 1170, + 1180, + 1183, + 1181, + 1185, + 1178, + 1179, + 1184, + 1173 ] } ] @@ -38120,7 +40356,7 @@ } }, { - "id": 1154, + "id": 1253, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -38138,14 +40374,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1155, + "id": 1254, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1156, + "id": 1255, "name": "admin", "kind": 1024, "kindString": "Property", @@ -38166,7 +40402,7 @@ } }, { - "id": 1158, + "id": 1257, "name": "pull", "kind": 1024, "kindString": "Property", @@ -38187,7 +40423,7 @@ } }, { - "id": 1157, + "id": 1256, "name": "push", "kind": 1024, "kindString": "Property", @@ -38213,9 +40449,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1156, - 1158, - 1157 + 1255, + 1257, + 1256 ] } ] @@ -38223,7 +40459,7 @@ } }, { - "id": 1087, + "id": 1186, "name": "private", "kind": 1024, "kindString": "Property", @@ -38244,7 +40480,7 @@ } }, { - "id": 1119, + "id": 1218, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -38265,7 +40501,7 @@ } }, { - "id": 1151, + "id": 1250, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -38286,7 +40522,7 @@ } }, { - "id": 1120, + "id": 1219, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -38307,7 +40543,7 @@ } }, { - "id": 1138, + "id": 1237, "name": "size", "kind": 1024, "kindString": "Property", @@ -38328,7 +40564,7 @@ } }, { - "id": 1121, + "id": 1220, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -38349,7 +40585,7 @@ } }, { - "id": 1136, + "id": 1235, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -38370,7 +40606,7 @@ } }, { - "id": 1122, + "id": 1221, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -38391,7 +40627,7 @@ } }, { - "id": 1123, + "id": 1222, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -38412,7 +40648,7 @@ } }, { - "id": 1164, + "id": 1263, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -38433,7 +40669,7 @@ } }, { - "id": 1124, + "id": 1223, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -38454,7 +40690,7 @@ } }, { - "id": 1125, + "id": 1224, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -38475,7 +40711,7 @@ } }, { - "id": 1132, + "id": 1231, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -38496,7 +40732,7 @@ } }, { - "id": 1126, + "id": 1225, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -38517,7 +40753,7 @@ } }, { - "id": 1127, + "id": 1226, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -38538,7 +40774,7 @@ } }, { - "id": 1160, + "id": 1259, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -38559,7 +40795,7 @@ } }, { - "id": 1142, + "id": 1241, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38583,7 +40819,7 @@ } }, { - "id": 1128, + "id": 1227, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38604,7 +40840,7 @@ } }, { - "id": 1153, + "id": 1252, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38625,7 +40861,7 @@ } }, { - "id": 1091, + "id": 1190, "name": "url", "kind": 1024, "kindString": "Property", @@ -38646,7 +40882,7 @@ } }, { - "id": 1150, + "id": 1249, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38667,7 +40903,7 @@ } }, { - "id": 1137, + "id": 1236, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -38693,86 +40929,86 @@ "title": "Properties", "kind": 1024, "children": [ - 1163, - 1159, - 1161, - 1092, - 1148, - 1093, - 1094, - 1095, - 1129, - 1096, - 1097, - 1098, - 1099, - 1100, - 1101, - 1152, - 1139, - 1162, - 1102, - 1089, - 1149, - 1103, - 1104, - 1090, - 1135, - 1105, - 1066, - 1106, - 1107, - 1108, - 1109, - 1147, - 1143, - 1146, - 1144, - 1145, - 1133, - 1131, - 1088, - 1063, - 1141, - 1110, - 1111, - 1112, - 1113, - 1114, - 1134, - 1115, - 1116, - 1117, - 1130, - 1065, + 1262, + 1258, + 1260, + 1191, + 1247, + 1192, + 1193, + 1194, + 1228, + 1195, + 1196, + 1197, + 1198, + 1199, + 1200, + 1251, + 1238, + 1261, + 1201, + 1188, + 1248, + 1202, + 1203, + 1189, + 1234, + 1204, 1165, - 1064, - 1118, - 1140, - 1067, - 1154, - 1087, - 1119, - 1151, - 1120, - 1138, - 1121, - 1136, - 1122, - 1123, + 1205, + 1206, + 1207, + 1208, + 1246, + 1242, + 1245, + 1243, + 1244, + 1232, + 1230, + 1187, + 1162, + 1240, + 1209, + 1210, + 1211, + 1212, + 1213, + 1233, + 1214, + 1215, + 1216, + 1229, 1164, - 1124, - 1125, - 1132, - 1126, - 1127, - 1160, - 1142, - 1128, - 1153, - 1091, - 1150, - 1137 + 1264, + 1163, + 1217, + 1239, + 1166, + 1253, + 1186, + 1218, + 1250, + 1219, + 1237, + 1220, + 1235, + 1221, + 1222, + 1263, + 1223, + 1224, + 1231, + 1225, + 1226, + 1259, + 1241, + 1227, + 1252, + 1190, + 1249, + 1236 ] } ] @@ -38782,7 +41018,7 @@ } }, { - "id": 1048, + "id": 1147, "name": "topics", "kind": 1024, "kindString": "Property", @@ -38806,7 +41042,7 @@ } }, { - "id": 1034, + "id": 1133, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -38826,7 +41062,7 @@ } }, { - "id": 1059, + "id": 1158, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -38855,7 +41091,7 @@ } }, { - "id": 997, + "id": 1096, "name": "url", "kind": 1024, "kindString": "Property", @@ -38875,7 +41111,7 @@ } }, { - "id": 1056, + "id": 1155, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -38899,7 +41135,7 @@ } }, { - "id": 1173, + "id": 1272, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -38919,7 +41155,7 @@ } }, { - "id": 1043, + "id": 1142, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -38944,94 +41180,94 @@ "title": "Properties", "kind": 1024, "children": [ - 1169, - 1060, - 1167, - 998, - 1054, - 999, - 1000, - 1001, - 1035, - 1002, - 1003, - 1004, - 1005, - 1006, - 1007, - 1058, - 1045, - 1168, - 1008, - 995, - 1055, - 1009, - 1010, - 996, - 962, - 1041, - 1011, - 930, - 1012, - 1013, - 1014, - 1015, - 1053, - 1049, - 1052, - 1050, - 1051, - 1039, - 1037, - 994, - 927, - 1047, - 1016, - 1017, - 1018, - 1019, - 1020, - 1040, - 1021, - 931, - 1174, - 1022, - 1023, - 1036, - 929, - 1171, - 928, - 1024, - 1172, - 1046, - 939, - 970, - 963, - 993, - 1025, - 1057, - 1026, - 1044, - 1027, - 1042, - 1028, - 1175, + 1268, + 1159, + 1266, + 1097, + 1153, + 1098, + 1099, + 1100, + 1134, + 1101, + 1102, + 1103, + 1104, + 1105, + 1106, + 1157, + 1144, + 1267, + 1107, + 1094, + 1154, + 1108, + 1109, + 1095, + 1061, + 1140, + 1110, 1029, - 1170, + 1111, + 1112, + 1113, + 1114, + 1152, + 1148, + 1151, + 1149, + 1150, + 1138, + 1136, + 1093, + 1026, + 1146, + 1115, + 1116, + 1117, + 1118, + 1119, + 1139, + 1120, 1030, - 1031, + 1273, + 1121, + 1122, + 1135, + 1028, + 1270, + 1027, + 1123, + 1271, + 1145, 1038, - 1032, - 1033, - 1166, - 1061, - 1048, - 1034, - 1059, - 997, - 1056, - 1173, - 1043 + 1069, + 1062, + 1092, + 1124, + 1156, + 1125, + 1143, + 1126, + 1141, + 1127, + 1274, + 1128, + 1269, + 1129, + 1130, + 1137, + 1131, + 1132, + 1265, + 1160, + 1147, + 1133, + 1158, + 1096, + 1155, + 1272, + 1142 ] } ] @@ -39041,7 +41277,7 @@ } }, { - "id": 907, + "id": 1006, "name": "topics", "kind": 1024, "kindString": "Property", @@ -39065,7 +41301,7 @@ } }, { - "id": 893, + "id": 992, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -39085,7 +41321,7 @@ } }, { - "id": 918, + "id": 1017, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -39105,7 +41341,7 @@ } }, { - "id": 856, + "id": 955, "name": "url", "kind": 1024, "kindString": "Property", @@ -39125,7 +41361,7 @@ } }, { - "id": 915, + "id": 1014, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -39149,7 +41385,7 @@ } }, { - "id": 1718, + "id": 1817, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -39169,7 +41405,7 @@ } }, { - "id": 902, + "id": 1001, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -39194,98 +41430,98 @@ "title": "Properties", "kind": 1024, "children": [ - 1179, + 1278, + 1023, + 1276, + 1818, + 956, + 1012, + 957, + 958, + 959, + 993, + 1819, + 960, + 961, + 962, + 963, + 964, + 965, + 1016, + 1003, + 1277, + 966, + 953, + 1013, + 967, + 968, + 954, + 1814, + 999, + 969, + 927, + 970, + 971, + 972, + 973, + 1011, + 1007, + 1010, + 1008, + 1009, + 997, + 995, + 952, 924, - 1177, - 1719, - 857, - 913, - 858, - 859, - 860, - 894, - 1720, - 861, - 862, - 863, - 864, - 865, - 866, - 917, - 904, - 1178, - 867, - 854, - 914, - 868, - 869, - 855, - 1715, - 900, - 870, - 828, - 871, - 872, - 873, - 874, - 912, - 908, - 911, - 909, - 910, - 898, - 896, - 853, - 825, - 906, - 875, - 876, - 877, - 878, - 879, - 899, - 880, - 1182, - 1716, - 881, - 882, - 895, - 827, - 1181, - 826, - 883, - 1717, - 905, - 1190, - 829, - 1213, - 919, - 852, - 884, - 916, - 885, - 1726, - 903, - 1464, - 886, - 901, - 887, - 888, - 1180, - 889, - 890, - 897, - 891, - 892, - 1176, + 1005, + 974, + 975, + 976, + 977, + 978, + 998, + 979, + 1281, + 1815, + 980, + 981, + 994, + 926, + 1280, 925, - 907, - 893, - 918, - 856, - 915, - 1718, - 902 + 982, + 1816, + 1004, + 1289, + 928, + 1312, + 1018, + 951, + 983, + 1015, + 984, + 1825, + 1002, + 1563, + 985, + 1000, + 986, + 987, + 1279, + 988, + 989, + 996, + 990, + 991, + 1275, + 1024, + 1006, + 992, + 1017, + 955, + 1014, + 1817, + 1001 ] } ] @@ -39295,7 +41531,7 @@ ], "type": { "type": "reference", - "id": 819, + "id": 918, "name": "Repo" }, "overwrites": { @@ -39312,7 +41548,7 @@ } }, { - "id": 2696, + "id": 2795, "name": "client", "kind": 1024, "kindString": "Property", @@ -39336,7 +41572,7 @@ } }, { - "id": 1736, + "id": 1835, "name": "data", "kind": 1024, "kindString": "Property", @@ -39354,14 +41590,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1737, + "id": 1836, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2092, + "id": 2191, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -39382,7 +41618,7 @@ } }, { - "id": 1837, + "id": 1936, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -39403,7 +41639,7 @@ } }, { - "id": 2090, + "id": 2189, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -39424,7 +41660,7 @@ } }, { - "id": 2632, + "id": 2731, "name": "anonymous_access_enabled", "kind": 1024, "kindString": "Property", @@ -39448,7 +41684,7 @@ } }, { - "id": 1770, + "id": 1869, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -39468,7 +41704,7 @@ } }, { - "id": 1826, + "id": 1925, "name": "archived", "kind": 1024, "kindString": "Property", @@ -39488,7 +41724,7 @@ } }, { - "id": 1771, + "id": 1870, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -39508,7 +41744,7 @@ } }, { - "id": 1772, + "id": 1871, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -39528,7 +41764,7 @@ } }, { - "id": 1773, + "id": 1872, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -39548,7 +41784,7 @@ } }, { - "id": 1807, + "id": 1906, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -39568,7 +41804,7 @@ } }, { - "id": 2633, + "id": 2732, "name": "code_of_conduct", "kind": 1024, "kindString": "Property", @@ -39586,14 +41822,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2634, + "id": 2733, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2638, + "id": 2737, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -39622,7 +41858,7 @@ } }, { - "id": 2636, + "id": 2735, "name": "key", "kind": 1024, "kindString": "Property", @@ -39642,7 +41878,7 @@ } }, { - "id": 2637, + "id": 2736, "name": "name", "kind": 1024, "kindString": "Property", @@ -39662,7 +41898,7 @@ } }, { - "id": 2635, + "id": 2734, "name": "url", "kind": 1024, "kindString": "Property", @@ -39687,10 +41923,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2638, - 2636, - 2637, - 2635 + 2737, + 2735, + 2736, + 2734 ] } ] @@ -39698,7 +41934,7 @@ } }, { - "id": 1774, + "id": 1873, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -39718,7 +41954,7 @@ } }, { - "id": 1775, + "id": 1874, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -39738,7 +41974,7 @@ } }, { - "id": 1776, + "id": 1875, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -39758,7 +41994,7 @@ } }, { - "id": 1777, + "id": 1876, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -39778,7 +42014,7 @@ } }, { - "id": 1778, + "id": 1877, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -39798,7 +42034,7 @@ } }, { - "id": 1779, + "id": 1878, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -39818,7 +42054,7 @@ } }, { - "id": 1830, + "id": 1929, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -39838,7 +42074,7 @@ } }, { - "id": 1817, + "id": 1916, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -39858,7 +42094,7 @@ } }, { - "id": 2091, + "id": 2190, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -39879,7 +42115,7 @@ } }, { - "id": 1780, + "id": 1879, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -39899,7 +42135,7 @@ } }, { - "id": 1767, + "id": 1866, "name": "description", "kind": 1024, "kindString": "Property", @@ -39928,7 +42164,7 @@ } }, { - "id": 1827, + "id": 1926, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -39951,7 +42187,7 @@ } }, { - "id": 1781, + "id": 1880, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -39971,7 +42207,7 @@ } }, { - "id": 1782, + "id": 1881, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -39991,7 +42227,7 @@ } }, { - "id": 1768, + "id": 1867, "name": "fork", "kind": 1024, "kindString": "Property", @@ -40011,7 +42247,7 @@ } }, { - "id": 2628, + "id": 2727, "name": "forks", "kind": 1024, "kindString": "Property", @@ -40031,7 +42267,7 @@ } }, { - "id": 1813, + "id": 1912, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -40051,7 +42287,7 @@ } }, { - "id": 1783, + "id": 1882, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -40071,7 +42307,7 @@ } }, { - "id": 1741, + "id": 1840, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -40091,7 +42327,7 @@ } }, { - "id": 1784, + "id": 1883, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -40111,7 +42347,7 @@ } }, { - "id": 1785, + "id": 1884, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -40131,7 +42367,7 @@ } }, { - "id": 1786, + "id": 1885, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -40151,7 +42387,7 @@ } }, { - "id": 1787, + "id": 1886, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -40171,7 +42407,7 @@ } }, { - "id": 1825, + "id": 1924, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -40191,7 +42427,7 @@ } }, { - "id": 1821, + "id": 1920, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -40211,7 +42447,7 @@ } }, { - "id": 1824, + "id": 1923, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -40231,7 +42467,7 @@ } }, { - "id": 1822, + "id": 1921, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -40251,7 +42487,7 @@ } }, { - "id": 1823, + "id": 1922, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -40271,7 +42507,7 @@ } }, { - "id": 1811, + "id": 1910, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -40300,7 +42536,7 @@ } }, { - "id": 1809, + "id": 1908, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -40320,7 +42556,7 @@ } }, { - "id": 1766, + "id": 1865, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -40340,7 +42576,7 @@ } }, { - "id": 1738, + "id": 1837, "name": "id", "kind": 1024, "kindString": "Property", @@ -40360,7 +42596,7 @@ } }, { - "id": 1819, + "id": 1918, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -40381,7 +42617,7 @@ } }, { - "id": 1788, + "id": 1887, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -40401,7 +42637,7 @@ } }, { - "id": 1789, + "id": 1888, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -40421,7 +42657,7 @@ } }, { - "id": 1790, + "id": 1889, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -40441,7 +42677,7 @@ } }, { - "id": 1791, + "id": 1890, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -40461,7 +42697,7 @@ } }, { - "id": 1792, + "id": 1891, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -40481,7 +42717,7 @@ } }, { - "id": 1812, + "id": 1911, "name": "language", "kind": 1024, "kindString": "Property", @@ -40510,7 +42746,7 @@ } }, { - "id": 1793, + "id": 1892, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -40530,7 +42766,7 @@ } }, { - "id": 2095, + "id": 2194, "name": "license", "kind": 1024, "kindString": "Property", @@ -40554,14 +42790,14 @@ { "type": "reflection", "declaration": { - "id": 2096, + "id": 2195, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2102, + "id": 2201, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -40582,7 +42818,7 @@ } }, { - "id": 2097, + "id": 2196, "name": "key", "kind": 1024, "kindString": "Property", @@ -40602,7 +42838,7 @@ } }, { - "id": 2098, + "id": 2197, "name": "name", "kind": 1024, "kindString": "Property", @@ -40622,7 +42858,7 @@ } }, { - "id": 2101, + "id": 2200, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40642,7 +42878,7 @@ } }, { - "id": 2100, + "id": 2199, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -40671,7 +42907,7 @@ } }, { - "id": 2099, + "id": 2198, "name": "url", "kind": 1024, "kindString": "Property", @@ -40705,12 +42941,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2102, - 2097, - 2098, - 2101, - 2100, - 2099 + 2201, + 2196, + 2197, + 2200, + 2199, + 2198 ] } ] @@ -40720,7 +42956,7 @@ } }, { - "id": 2629, + "id": 2728, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -40741,7 +42977,7 @@ } }, { - "id": 1794, + "id": 1893, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -40761,7 +42997,7 @@ } }, { - "id": 1795, + "id": 1894, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -40781,7 +43017,7 @@ } }, { - "id": 1808, + "id": 1907, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -40810,7 +43046,7 @@ } }, { - "id": 1740, + "id": 1839, "name": "name", "kind": 1024, "kindString": "Property", @@ -40830,7 +43066,7 @@ } }, { - "id": 2094, + "id": 2193, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -40850,7 +43086,7 @@ } }, { - "id": 1739, + "id": 1838, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -40870,7 +43106,7 @@ } }, { - "id": 1796, + "id": 1895, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -40890,7 +43126,7 @@ } }, { - "id": 2630, + "id": 2729, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -40910,7 +43146,7 @@ } }, { - "id": 1818, + "id": 1917, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -40930,7 +43166,7 @@ } }, { - "id": 2103, + "id": 2202, "name": "organization", "kind": 1024, "kindString": "Property", @@ -40955,14 +43191,14 @@ { "type": "reflection", "declaration": { - "id": 2104, + "id": 2203, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2110, + "id": 2209, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -40982,7 +43218,7 @@ } }, { - "id": 2106, + "id": 2205, "name": "email", "kind": 1024, "kindString": "Property", @@ -41012,7 +43248,7 @@ } }, { - "id": 2121, + "id": 2220, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -41032,7 +43268,7 @@ } }, { - "id": 2114, + "id": 2213, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -41052,7 +43288,7 @@ } }, { - "id": 2115, + "id": 2214, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -41072,7 +43308,7 @@ } }, { - "id": 2116, + "id": 2215, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -41092,7 +43328,7 @@ } }, { - "id": 2111, + "id": 2210, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -41121,7 +43357,7 @@ } }, { - "id": 2113, + "id": 2212, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -41141,7 +43377,7 @@ } }, { - "id": 2108, + "id": 2207, "name": "id", "kind": 1024, "kindString": "Property", @@ -41161,7 +43397,7 @@ } }, { - "id": 2107, + "id": 2206, "name": "login", "kind": 1024, "kindString": "Property", @@ -41181,7 +43417,7 @@ } }, { - "id": 2105, + "id": 2204, "name": "name", "kind": 1024, "kindString": "Property", @@ -41211,7 +43447,7 @@ } }, { - "id": 2109, + "id": 2208, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -41231,7 +43467,7 @@ } }, { - "id": 2119, + "id": 2218, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -41251,7 +43487,7 @@ } }, { - "id": 2122, + "id": 2221, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -41271,7 +43507,7 @@ } }, { - "id": 2120, + "id": 2219, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -41291,7 +43527,7 @@ } }, { - "id": 2124, + "id": 2223, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -41311,7 +43547,7 @@ } }, { - "id": 2125, + "id": 2224, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -41332,7 +43568,7 @@ } }, { - "id": 2117, + "id": 2216, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -41352,7 +43588,7 @@ } }, { - "id": 2118, + "id": 2217, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -41372,7 +43608,7 @@ } }, { - "id": 2123, + "id": 2222, "name": "type", "kind": 1024, "kindString": "Property", @@ -41392,7 +43628,7 @@ } }, { - "id": 2112, + "id": 2211, "name": "url", "kind": 1024, "kindString": "Property", @@ -41417,27 +43653,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2110, - 2106, - 2121, - 2114, - 2115, - 2116, - 2111, - 2113, - 2108, - 2107, - 2105, - 2109, - 2119, - 2122, - 2120, - 2124, - 2125, - 2117, - 2118, - 2123, - 2112 + 2209, + 2205, + 2220, + 2213, + 2214, + 2215, + 2210, + 2212, + 2207, + 2206, + 2204, + 2208, + 2218, + 2221, + 2219, + 2223, + 2224, + 2216, + 2217, + 2222, + 2211 ] } ] @@ -41447,7 +43683,7 @@ } }, { - "id": 1742, + "id": 1841, "name": "owner", "kind": 1024, "kindString": "Property", @@ -41471,14 +43707,14 @@ { "type": "reflection", "declaration": { - "id": 1743, + "id": 1842, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1749, + "id": 1848, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -41498,7 +43734,7 @@ } }, { - "id": 1745, + "id": 1844, "name": "email", "kind": 1024, "kindString": "Property", @@ -41528,7 +43764,7 @@ } }, { - "id": 1760, + "id": 1859, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -41548,7 +43784,7 @@ } }, { - "id": 1753, + "id": 1852, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -41568,7 +43804,7 @@ } }, { - "id": 1754, + "id": 1853, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -41588,7 +43824,7 @@ } }, { - "id": 1755, + "id": 1854, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -41608,7 +43844,7 @@ } }, { - "id": 1750, + "id": 1849, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -41637,7 +43873,7 @@ } }, { - "id": 1752, + "id": 1851, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -41657,7 +43893,7 @@ } }, { - "id": 1747, + "id": 1846, "name": "id", "kind": 1024, "kindString": "Property", @@ -41677,7 +43913,7 @@ } }, { - "id": 1746, + "id": 1845, "name": "login", "kind": 1024, "kindString": "Property", @@ -41697,7 +43933,7 @@ } }, { - "id": 1744, + "id": 1843, "name": "name", "kind": 1024, "kindString": "Property", @@ -41727,7 +43963,7 @@ } }, { - "id": 1748, + "id": 1847, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -41747,7 +43983,7 @@ } }, { - "id": 1758, + "id": 1857, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -41767,7 +44003,7 @@ } }, { - "id": 1761, + "id": 1860, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -41787,7 +44023,7 @@ } }, { - "id": 1759, + "id": 1858, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -41807,7 +44043,7 @@ } }, { - "id": 1763, + "id": 1862, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -41827,7 +44063,7 @@ } }, { - "id": 1764, + "id": 1863, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -41848,7 +44084,7 @@ } }, { - "id": 1756, + "id": 1855, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -41868,7 +44104,7 @@ } }, { - "id": 1757, + "id": 1856, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -41888,7 +44124,7 @@ } }, { - "id": 1762, + "id": 1861, "name": "type", "kind": 1024, "kindString": "Property", @@ -41908,7 +44144,7 @@ } }, { - "id": 1751, + "id": 1850, "name": "url", "kind": 1024, "kindString": "Property", @@ -41933,27 +44169,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1749, - 1745, - 1760, - 1753, - 1754, - 1755, - 1750, - 1752, - 1747, - 1746, - 1744, - 1748, - 1758, - 1761, - 1759, - 1763, - 1764, - 1756, - 1757, - 1762, - 1751 + 1848, + 1844, + 1859, + 1852, + 1853, + 1854, + 1849, + 1851, + 1846, + 1845, + 1843, + 1847, + 1857, + 1860, + 1858, + 1862, + 1863, + 1855, + 1856, + 1861, + 1850 ] } ] @@ -41963,7 +44199,7 @@ } }, { - "id": 2126, + "id": 2225, "name": "parent", "kind": 1024, "kindString": "Property", @@ -41981,14 +44217,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2127, + "id": 2226, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2370, + "id": 2469, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -42012,7 +44248,7 @@ } }, { - "id": 2261, + "id": 2360, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -42036,7 +44272,7 @@ } }, { - "id": 2368, + "id": 2467, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -42060,7 +44296,7 @@ } }, { - "id": 2199, + "id": 2298, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -42080,7 +44316,7 @@ } }, { - "id": 2255, + "id": 2354, "name": "archived", "kind": 1024, "kindString": "Property", @@ -42103,7 +44339,7 @@ } }, { - "id": 2200, + "id": 2299, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -42123,7 +44359,7 @@ } }, { - "id": 2201, + "id": 2300, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -42143,7 +44379,7 @@ } }, { - "id": 2202, + "id": 2301, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -42163,7 +44399,7 @@ } }, { - "id": 2236, + "id": 2335, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -42183,7 +44419,7 @@ } }, { - "id": 2203, + "id": 2302, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -42203,7 +44439,7 @@ } }, { - "id": 2204, + "id": 2303, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -42223,7 +44459,7 @@ } }, { - "id": 2205, + "id": 2304, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -42243,7 +44479,7 @@ } }, { - "id": 2206, + "id": 2305, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -42263,7 +44499,7 @@ } }, { - "id": 2207, + "id": 2306, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -42283,7 +44519,7 @@ } }, { - "id": 2208, + "id": 2307, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -42303,7 +44539,7 @@ } }, { - "id": 2259, + "id": 2358, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -42332,7 +44568,7 @@ } }, { - "id": 2246, + "id": 2345, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -42355,7 +44591,7 @@ } }, { - "id": 2369, + "id": 2468, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -42379,7 +44615,7 @@ } }, { - "id": 2209, + "id": 2308, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -42399,7 +44635,7 @@ } }, { - "id": 2196, + "id": 2295, "name": "description", "kind": 1024, "kindString": "Property", @@ -42428,7 +44664,7 @@ } }, { - "id": 2256, + "id": 2355, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -42451,7 +44687,7 @@ } }, { - "id": 2210, + "id": 2309, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -42471,7 +44707,7 @@ } }, { - "id": 2211, + "id": 2310, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -42491,7 +44727,7 @@ } }, { - "id": 2197, + "id": 2296, "name": "fork", "kind": 1024, "kindString": "Property", @@ -42511,7 +44747,7 @@ } }, { - "id": 2163, + "id": 2262, "name": "forks", "kind": 1024, "kindString": "Property", @@ -42531,7 +44767,7 @@ } }, { - "id": 2242, + "id": 2341, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -42551,7 +44787,7 @@ } }, { - "id": 2212, + "id": 2311, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -42571,7 +44807,7 @@ } }, { - "id": 2131, + "id": 2230, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -42591,7 +44827,7 @@ } }, { - "id": 2213, + "id": 2312, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -42611,7 +44847,7 @@ } }, { - "id": 2214, + "id": 2313, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -42631,7 +44867,7 @@ } }, { - "id": 2215, + "id": 2314, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -42651,7 +44887,7 @@ } }, { - "id": 2216, + "id": 2315, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -42671,7 +44907,7 @@ } }, { - "id": 2254, + "id": 2353, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -42694,7 +44930,7 @@ } }, { - "id": 2250, + "id": 2349, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -42717,7 +44953,7 @@ } }, { - "id": 2253, + "id": 2352, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -42737,7 +44973,7 @@ } }, { - "id": 2251, + "id": 2350, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -42760,7 +44996,7 @@ } }, { - "id": 2252, + "id": 2351, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -42783,7 +45019,7 @@ } }, { - "id": 2240, + "id": 2339, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -42812,7 +45048,7 @@ } }, { - "id": 2238, + "id": 2337, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -42832,7 +45068,7 @@ } }, { - "id": 2195, + "id": 2294, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -42852,7 +45088,7 @@ } }, { - "id": 2128, + "id": 2227, "name": "id", "kind": 1024, "kindString": "Property", @@ -42875,7 +45111,7 @@ } }, { - "id": 2248, + "id": 2347, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -42899,7 +45135,7 @@ } }, { - "id": 2217, + "id": 2316, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -42919,7 +45155,7 @@ } }, { - "id": 2218, + "id": 2317, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -42939,7 +45175,7 @@ } }, { - "id": 2219, + "id": 2318, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -42959,7 +45195,7 @@ } }, { - "id": 2220, + "id": 2319, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -42979,7 +45215,7 @@ } }, { - "id": 2221, + "id": 2320, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -42999,7 +45235,7 @@ } }, { - "id": 2241, + "id": 2340, "name": "language", "kind": 1024, "kindString": "Property", @@ -43028,7 +45264,7 @@ } }, { - "id": 2222, + "id": 2321, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -43048,7 +45284,7 @@ } }, { - "id": 2132, + "id": 2231, "name": "license", "kind": 1024, "kindString": "Property", @@ -43072,14 +45308,14 @@ { "type": "reflection", "declaration": { - "id": 2133, + "id": 2232, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2139, + "id": 2238, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -43100,7 +45336,7 @@ } }, { - "id": 2134, + "id": 2233, "name": "key", "kind": 1024, "kindString": "Property", @@ -43120,7 +45356,7 @@ } }, { - "id": 2135, + "id": 2234, "name": "name", "kind": 1024, "kindString": "Property", @@ -43140,7 +45376,7 @@ } }, { - "id": 2138, + "id": 2237, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43160,7 +45396,7 @@ } }, { - "id": 2137, + "id": 2236, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -43189,7 +45425,7 @@ } }, { - "id": 2136, + "id": 2235, "name": "url", "kind": 1024, "kindString": "Property", @@ -43223,12 +45459,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2139, - 2134, - 2135, - 2138, - 2137, - 2136 + 2238, + 2233, + 2234, + 2237, + 2236, + 2235 ] } ] @@ -43238,7 +45474,7 @@ } }, { - "id": 2375, + "id": 2474, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -43259,7 +45495,7 @@ } }, { - "id": 2223, + "id": 2322, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -43279,7 +45515,7 @@ } }, { - "id": 2224, + "id": 2323, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -43299,7 +45535,7 @@ } }, { - "id": 2237, + "id": 2336, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -43328,7 +45564,7 @@ } }, { - "id": 2130, + "id": 2229, "name": "name", "kind": 1024, "kindString": "Property", @@ -43351,7 +45587,7 @@ } }, { - "id": 2372, + "id": 2471, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -43372,7 +45608,7 @@ } }, { - "id": 2129, + "id": 2228, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43392,7 +45628,7 @@ } }, { - "id": 2225, + "id": 2324, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -43412,7 +45648,7 @@ } }, { - "id": 2373, + "id": 2472, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -43432,7 +45668,7 @@ } }, { - "id": 2247, + "id": 2346, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -43452,7 +45688,7 @@ } }, { - "id": 2140, + "id": 2239, "name": "organization", "kind": 1024, "kindString": "Property", @@ -43477,14 +45713,14 @@ { "type": "reflection", "declaration": { - "id": 2141, + "id": 2240, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2147, + "id": 2246, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -43504,7 +45740,7 @@ } }, { - "id": 2143, + "id": 2242, "name": "email", "kind": 1024, "kindString": "Property", @@ -43534,7 +45770,7 @@ } }, { - "id": 2158, + "id": 2257, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -43554,7 +45790,7 @@ } }, { - "id": 2151, + "id": 2250, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -43574,7 +45810,7 @@ } }, { - "id": 2152, + "id": 2251, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -43594,7 +45830,7 @@ } }, { - "id": 2153, + "id": 2252, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -43614,7 +45850,7 @@ } }, { - "id": 2148, + "id": 2247, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -43643,7 +45879,7 @@ } }, { - "id": 2150, + "id": 2249, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -43663,7 +45899,7 @@ } }, { - "id": 2145, + "id": 2244, "name": "id", "kind": 1024, "kindString": "Property", @@ -43683,7 +45919,7 @@ } }, { - "id": 2144, + "id": 2243, "name": "login", "kind": 1024, "kindString": "Property", @@ -43703,7 +45939,7 @@ } }, { - "id": 2142, + "id": 2241, "name": "name", "kind": 1024, "kindString": "Property", @@ -43733,7 +45969,7 @@ } }, { - "id": 2146, + "id": 2245, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -43753,7 +45989,7 @@ } }, { - "id": 2156, + "id": 2255, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -43773,7 +46009,7 @@ } }, { - "id": 2159, + "id": 2258, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -43793,7 +46029,7 @@ } }, { - "id": 2157, + "id": 2256, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -43813,7 +46049,7 @@ } }, { - "id": 2161, + "id": 2260, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -43833,7 +46069,7 @@ } }, { - "id": 2162, + "id": 2261, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -43854,7 +46090,7 @@ } }, { - "id": 2154, + "id": 2253, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -43874,7 +46110,7 @@ } }, { - "id": 2155, + "id": 2254, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -43894,7 +46130,7 @@ } }, { - "id": 2160, + "id": 2259, "name": "type", "kind": 1024, "kindString": "Property", @@ -43914,7 +46150,7 @@ } }, { - "id": 2149, + "id": 2248, "name": "url", "kind": 1024, "kindString": "Property", @@ -43939,27 +46175,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2147, - 2143, - 2158, - 2151, - 2152, - 2153, - 2148, - 2150, - 2145, - 2144, - 2142, - 2146, - 2156, - 2159, - 2157, - 2161, - 2162, - 2154, - 2155, - 2160, - 2149 + 2246, + 2242, + 2257, + 2250, + 2251, + 2252, + 2247, + 2249, + 2244, + 2243, + 2241, + 2245, + 2255, + 2258, + 2256, + 2260, + 2261, + 2253, + 2254, + 2259, + 2248 ] } ] @@ -43969,7 +46205,7 @@ } }, { - "id": 2171, + "id": 2270, "name": "owner", "kind": 1024, "kindString": "Property", @@ -43993,14 +46229,14 @@ { "type": "reflection", "declaration": { - "id": 2172, + "id": 2271, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2178, + "id": 2277, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -44020,7 +46256,7 @@ } }, { - "id": 2174, + "id": 2273, "name": "email", "kind": 1024, "kindString": "Property", @@ -44050,7 +46286,7 @@ } }, { - "id": 2189, + "id": 2288, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -44070,7 +46306,7 @@ } }, { - "id": 2182, + "id": 2281, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -44090,7 +46326,7 @@ } }, { - "id": 2183, + "id": 2282, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -44110,7 +46346,7 @@ } }, { - "id": 2184, + "id": 2283, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -44130,7 +46366,7 @@ } }, { - "id": 2179, + "id": 2278, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -44159,7 +46395,7 @@ } }, { - "id": 2181, + "id": 2280, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -44179,7 +46415,7 @@ } }, { - "id": 2176, + "id": 2275, "name": "id", "kind": 1024, "kindString": "Property", @@ -44199,7 +46435,7 @@ } }, { - "id": 2175, + "id": 2274, "name": "login", "kind": 1024, "kindString": "Property", @@ -44219,7 +46455,7 @@ } }, { - "id": 2173, + "id": 2272, "name": "name", "kind": 1024, "kindString": "Property", @@ -44249,7 +46485,7 @@ } }, { - "id": 2177, + "id": 2276, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -44269,7 +46505,7 @@ } }, { - "id": 2187, + "id": 2286, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -44289,7 +46525,7 @@ } }, { - "id": 2190, + "id": 2289, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -44309,7 +46545,7 @@ } }, { - "id": 2188, + "id": 2287, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -44329,7 +46565,7 @@ } }, { - "id": 2192, + "id": 2291, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -44349,7 +46585,7 @@ } }, { - "id": 2193, + "id": 2292, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -44370,7 +46606,7 @@ } }, { - "id": 2185, + "id": 2284, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -44390,7 +46626,7 @@ } }, { - "id": 2186, + "id": 2285, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -44410,7 +46646,7 @@ } }, { - "id": 2191, + "id": 2290, "name": "type", "kind": 1024, "kindString": "Property", @@ -44430,7 +46666,7 @@ } }, { - "id": 2180, + "id": 2279, "name": "url", "kind": 1024, "kindString": "Property", @@ -44455,27 +46691,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2178, - 2174, - 2189, - 2182, - 2183, - 2184, - 2179, - 2181, - 2176, - 2175, - 2173, - 2177, - 2187, - 2190, - 2188, - 2192, - 2193, - 2185, - 2186, - 2191, - 2180 + 2277, + 2273, + 2288, + 2281, + 2282, + 2283, + 2278, + 2280, + 2275, + 2274, + 2272, + 2276, + 2286, + 2289, + 2287, + 2291, + 2292, + 2284, + 2285, + 2290, + 2279 ] } ] @@ -44485,7 +46721,7 @@ } }, { - "id": 2164, + "id": 2263, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -44503,14 +46739,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2165, + "id": 2264, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2166, + "id": 2265, "name": "admin", "kind": 1024, "kindString": "Property", @@ -44530,7 +46766,7 @@ } }, { - "id": 2170, + "id": 2269, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -44551,7 +46787,7 @@ } }, { - "id": 2167, + "id": 2266, "name": "pull", "kind": 1024, "kindString": "Property", @@ -44571,7 +46807,7 @@ } }, { - "id": 2169, + "id": 2268, "name": "push", "kind": 1024, "kindString": "Property", @@ -44591,7 +46827,7 @@ } }, { - "id": 2168, + "id": 2267, "name": "triage", "kind": 1024, "kindString": "Property", @@ -44617,11 +46853,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2166, - 2170, - 2167, - 2169, - 2168 + 2265, + 2269, + 2266, + 2268, + 2267 ] } ] @@ -44629,7 +46865,7 @@ } }, { - "id": 2194, + "id": 2293, "name": "private", "kind": 1024, "kindString": "Property", @@ -44652,7 +46888,7 @@ } }, { - "id": 2226, + "id": 2325, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -44672,7 +46908,7 @@ } }, { - "id": 2258, + "id": 2357, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -44701,7 +46937,7 @@ } }, { - "id": 2227, + "id": 2326, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -44721,7 +46957,7 @@ } }, { - "id": 2245, + "id": 2344, "name": "size", "kind": 1024, "kindString": "Property", @@ -44741,7 +46977,7 @@ } }, { - "id": 2228, + "id": 2327, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -44761,7 +46997,7 @@ } }, { - "id": 2243, + "id": 2342, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -44781,7 +47017,7 @@ } }, { - "id": 2229, + "id": 2328, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -44801,7 +47037,7 @@ } }, { - "id": 2376, + "id": 2475, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -44822,7 +47058,7 @@ } }, { - "id": 2230, + "id": 2329, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -44842,7 +47078,7 @@ } }, { - "id": 2371, + "id": 2470, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -44863,7 +47099,7 @@ } }, { - "id": 2231, + "id": 2330, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -44883,7 +47119,7 @@ } }, { - "id": 2232, + "id": 2331, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -44903,7 +47139,7 @@ } }, { - "id": 2239, + "id": 2338, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -44923,7 +47159,7 @@ } }, { - "id": 2233, + "id": 2332, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -44943,7 +47179,7 @@ } }, { - "id": 2234, + "id": 2333, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -44963,7 +47199,7 @@ } }, { - "id": 2367, + "id": 2466, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -44984,7 +47220,7 @@ } }, { - "id": 2262, + "id": 2361, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -45009,14 +47245,14 @@ { "type": "reflection", "declaration": { - "id": 2263, + "id": 2362, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2364, + "id": 2463, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -45037,7 +47273,7 @@ } }, { - "id": 2360, + "id": 2459, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -45058,7 +47294,7 @@ } }, { - "id": 2362, + "id": 2461, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -45079,7 +47315,7 @@ } }, { - "id": 2293, + "id": 2392, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -45100,7 +47336,7 @@ } }, { - "id": 2349, + "id": 2448, "name": "archived", "kind": 1024, "kindString": "Property", @@ -45121,7 +47357,7 @@ } }, { - "id": 2294, + "id": 2393, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -45142,7 +47378,7 @@ } }, { - "id": 2295, + "id": 2394, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -45163,7 +47399,7 @@ } }, { - "id": 2296, + "id": 2395, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -45184,7 +47420,7 @@ } }, { - "id": 2330, + "id": 2429, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -45205,7 +47441,7 @@ } }, { - "id": 2297, + "id": 2396, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -45226,7 +47462,7 @@ } }, { - "id": 2298, + "id": 2397, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -45247,7 +47483,7 @@ } }, { - "id": 2299, + "id": 2398, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -45268,7 +47504,7 @@ } }, { - "id": 2300, + "id": 2399, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -45289,7 +47525,7 @@ } }, { - "id": 2301, + "id": 2400, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -45310,7 +47546,7 @@ } }, { - "id": 2302, + "id": 2401, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -45331,7 +47567,7 @@ } }, { - "id": 2353, + "id": 2452, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -45352,7 +47588,7 @@ } }, { - "id": 2340, + "id": 2439, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -45373,7 +47609,7 @@ } }, { - "id": 2363, + "id": 2462, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -45394,7 +47630,7 @@ } }, { - "id": 2303, + "id": 2402, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -45415,7 +47651,7 @@ } }, { - "id": 2290, + "id": 2389, "name": "description", "kind": 1024, "kindString": "Property", @@ -45436,7 +47672,7 @@ } }, { - "id": 2350, + "id": 2449, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -45457,7 +47693,7 @@ } }, { - "id": 2304, + "id": 2403, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -45478,7 +47714,7 @@ } }, { - "id": 2305, + "id": 2404, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -45499,7 +47735,7 @@ } }, { - "id": 2291, + "id": 2390, "name": "fork", "kind": 1024, "kindString": "Property", @@ -45520,7 +47756,7 @@ } }, { - "id": 2336, + "id": 2435, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -45541,7 +47777,7 @@ } }, { - "id": 2306, + "id": 2405, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -45562,7 +47798,7 @@ } }, { - "id": 2267, + "id": 2366, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -45583,7 +47819,7 @@ } }, { - "id": 2307, + "id": 2406, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -45604,7 +47840,7 @@ } }, { - "id": 2308, + "id": 2407, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -45625,7 +47861,7 @@ } }, { - "id": 2309, + "id": 2408, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -45646,7 +47882,7 @@ } }, { - "id": 2310, + "id": 2409, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -45667,7 +47903,7 @@ } }, { - "id": 2348, + "id": 2447, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -45688,7 +47924,7 @@ } }, { - "id": 2344, + "id": 2443, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -45709,7 +47945,7 @@ } }, { - "id": 2347, + "id": 2446, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -45730,7 +47966,7 @@ } }, { - "id": 2345, + "id": 2444, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -45751,7 +47987,7 @@ } }, { - "id": 2346, + "id": 2445, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -45772,7 +48008,7 @@ } }, { - "id": 2334, + "id": 2433, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -45793,7 +48029,7 @@ } }, { - "id": 2332, + "id": 2431, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -45814,7 +48050,7 @@ } }, { - "id": 2289, + "id": 2388, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -45835,7 +48071,7 @@ } }, { - "id": 2264, + "id": 2363, "name": "id", "kind": 1024, "kindString": "Property", @@ -45856,7 +48092,7 @@ } }, { - "id": 2342, + "id": 2441, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -45877,7 +48113,7 @@ } }, { - "id": 2311, + "id": 2410, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -45898,7 +48134,7 @@ } }, { - "id": 2312, + "id": 2411, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -45919,7 +48155,7 @@ } }, { - "id": 2313, + "id": 2412, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -45940,7 +48176,7 @@ } }, { - "id": 2314, + "id": 2413, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -45961,7 +48197,7 @@ } }, { - "id": 2315, + "id": 2414, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -45982,7 +48218,7 @@ } }, { - "id": 2335, + "id": 2434, "name": "language", "kind": 1024, "kindString": "Property", @@ -46003,7 +48239,7 @@ } }, { - "id": 2316, + "id": 2415, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -46024,7 +48260,7 @@ } }, { - "id": 2317, + "id": 2416, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -46045,7 +48281,7 @@ } }, { - "id": 2318, + "id": 2417, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -46066,7 +48302,7 @@ } }, { - "id": 2331, + "id": 2430, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -46087,7 +48323,7 @@ } }, { - "id": 2266, + "id": 2365, "name": "name", "kind": 1024, "kindString": "Property", @@ -46108,7 +48344,7 @@ } }, { - "id": 2366, + "id": 2465, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -46129,7 +48365,7 @@ } }, { - "id": 2265, + "id": 2364, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -46150,7 +48386,7 @@ } }, { - "id": 2319, + "id": 2418, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -46171,7 +48407,7 @@ } }, { - "id": 2341, + "id": 2440, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -46192,7 +48428,7 @@ } }, { - "id": 2268, + "id": 2367, "name": "owner", "kind": 1024, "kindString": "Property", @@ -46210,14 +48446,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2269, + "id": 2368, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2273, + "id": 2372, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -46238,7 +48474,7 @@ } }, { - "id": 2284, + "id": 2383, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -46259,7 +48495,7 @@ } }, { - "id": 2277, + "id": 2376, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -46280,7 +48516,7 @@ } }, { - "id": 2278, + "id": 2377, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -46301,7 +48537,7 @@ } }, { - "id": 2279, + "id": 2378, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -46322,7 +48558,7 @@ } }, { - "id": 2274, + "id": 2373, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -46343,7 +48579,7 @@ } }, { - "id": 2276, + "id": 2375, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -46364,7 +48600,7 @@ } }, { - "id": 2271, + "id": 2370, "name": "id", "kind": 1024, "kindString": "Property", @@ -46385,7 +48621,7 @@ } }, { - "id": 2270, + "id": 2369, "name": "login", "kind": 1024, "kindString": "Property", @@ -46406,7 +48642,7 @@ } }, { - "id": 2272, + "id": 2371, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -46427,7 +48663,7 @@ } }, { - "id": 2282, + "id": 2381, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -46448,7 +48684,7 @@ } }, { - "id": 2285, + "id": 2384, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -46469,7 +48705,7 @@ } }, { - "id": 2283, + "id": 2382, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -46490,7 +48726,7 @@ } }, { - "id": 2287, + "id": 2386, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -46511,7 +48747,7 @@ } }, { - "id": 2280, + "id": 2379, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -46532,7 +48768,7 @@ } }, { - "id": 2281, + "id": 2380, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -46553,7 +48789,7 @@ } }, { - "id": 2286, + "id": 2385, "name": "type", "kind": 1024, "kindString": "Property", @@ -46574,7 +48810,7 @@ } }, { - "id": 2275, + "id": 2374, "name": "url", "kind": 1024, "kindString": "Property", @@ -46600,24 +48836,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2273, - 2284, - 2277, - 2278, - 2279, - 2274, - 2276, - 2271, - 2270, - 2272, - 2282, - 2285, - 2283, - 2287, - 2280, - 2281, - 2286, - 2275 + 2372, + 2383, + 2376, + 2377, + 2378, + 2373, + 2375, + 2370, + 2369, + 2371, + 2381, + 2384, + 2382, + 2386, + 2379, + 2380, + 2385, + 2374 ] } ] @@ -46625,7 +48861,7 @@ } }, { - "id": 2355, + "id": 2454, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -46643,14 +48879,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2356, + "id": 2455, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2357, + "id": 2456, "name": "admin", "kind": 1024, "kindString": "Property", @@ -46671,7 +48907,7 @@ } }, { - "id": 2359, + "id": 2458, "name": "pull", "kind": 1024, "kindString": "Property", @@ -46692,7 +48928,7 @@ } }, { - "id": 2358, + "id": 2457, "name": "push", "kind": 1024, "kindString": "Property", @@ -46718,9 +48954,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2357, - 2359, - 2358 + 2456, + 2458, + 2457 ] } ] @@ -46728,7 +48964,7 @@ } }, { - "id": 2288, + "id": 2387, "name": "private", "kind": 1024, "kindString": "Property", @@ -46749,7 +48985,7 @@ } }, { - "id": 2320, + "id": 2419, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -46770,7 +49006,7 @@ } }, { - "id": 2352, + "id": 2451, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -46791,7 +49027,7 @@ } }, { - "id": 2321, + "id": 2420, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -46812,7 +49048,7 @@ } }, { - "id": 2339, + "id": 2438, "name": "size", "kind": 1024, "kindString": "Property", @@ -46833,7 +49069,7 @@ } }, { - "id": 2322, + "id": 2421, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -46854,7 +49090,7 @@ } }, { - "id": 2337, + "id": 2436, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -46875,7 +49111,7 @@ } }, { - "id": 2323, + "id": 2422, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -46896,7 +49132,7 @@ } }, { - "id": 2324, + "id": 2423, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -46917,7 +49153,7 @@ } }, { - "id": 2365, + "id": 2464, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -46938,7 +49174,7 @@ } }, { - "id": 2325, + "id": 2424, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -46959,7 +49195,7 @@ } }, { - "id": 2326, + "id": 2425, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -46980,7 +49216,7 @@ } }, { - "id": 2333, + "id": 2432, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -47001,7 +49237,7 @@ } }, { - "id": 2327, + "id": 2426, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -47022,7 +49258,7 @@ } }, { - "id": 2328, + "id": 2427, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -47043,7 +49279,7 @@ } }, { - "id": 2361, + "id": 2460, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -47064,7 +49300,7 @@ } }, { - "id": 2343, + "id": 2442, "name": "topics", "kind": 1024, "kindString": "Property", @@ -47088,7 +49324,7 @@ } }, { - "id": 2329, + "id": 2428, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -47109,7 +49345,7 @@ } }, { - "id": 2354, + "id": 2453, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -47130,7 +49366,7 @@ } }, { - "id": 2292, + "id": 2391, "name": "url", "kind": 1024, "kindString": "Property", @@ -47151,7 +49387,7 @@ } }, { - "id": 2351, + "id": 2450, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -47172,7 +49408,7 @@ } }, { - "id": 2338, + "id": 2437, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -47198,86 +49434,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2364, - 2360, - 2362, - 2293, - 2349, - 2294, - 2295, - 2296, - 2330, - 2297, - 2298, - 2299, - 2300, - 2301, - 2302, - 2353, - 2340, - 2363, - 2303, - 2290, - 2350, - 2304, - 2305, - 2291, - 2336, - 2306, - 2267, - 2307, - 2308, - 2309, - 2310, - 2348, - 2344, - 2347, - 2345, - 2346, - 2334, - 2332, - 2289, - 2264, - 2342, - 2311, - 2312, - 2313, - 2314, - 2315, - 2335, - 2316, - 2317, - 2318, - 2331, - 2266, + 2463, + 2459, + 2461, + 2392, + 2448, + 2393, + 2394, + 2395, + 2429, + 2396, + 2397, + 2398, + 2399, + 2400, + 2401, + 2452, + 2439, + 2462, + 2402, + 2389, + 2449, + 2403, + 2404, + 2390, + 2435, + 2405, 2366, - 2265, - 2319, - 2341, - 2268, - 2355, - 2288, - 2320, - 2352, - 2321, - 2339, - 2322, - 2337, - 2323, - 2324, + 2406, + 2407, + 2408, + 2409, + 2447, + 2443, + 2446, + 2444, + 2445, + 2433, + 2431, + 2388, + 2363, + 2441, + 2410, + 2411, + 2412, + 2413, + 2414, + 2434, + 2415, + 2416, + 2417, + 2430, 2365, - 2325, - 2326, - 2333, - 2327, - 2328, - 2361, - 2343, - 2329, - 2354, - 2292, - 2351, - 2338 + 2465, + 2364, + 2418, + 2440, + 2367, + 2454, + 2387, + 2419, + 2451, + 2420, + 2438, + 2421, + 2436, + 2422, + 2423, + 2464, + 2424, + 2425, + 2432, + 2426, + 2427, + 2460, + 2442, + 2428, + 2453, + 2391, + 2450, + 2437 ] } ] @@ -47287,7 +49523,7 @@ } }, { - "id": 2249, + "id": 2348, "name": "topics", "kind": 1024, "kindString": "Property", @@ -47311,7 +49547,7 @@ } }, { - "id": 2235, + "id": 2334, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -47331,7 +49567,7 @@ } }, { - "id": 2260, + "id": 2359, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -47360,7 +49596,7 @@ } }, { - "id": 2198, + "id": 2297, "name": "url", "kind": 1024, "kindString": "Property", @@ -47380,7 +49616,7 @@ } }, { - "id": 2257, + "id": 2356, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -47404,7 +49640,7 @@ } }, { - "id": 2374, + "id": 2473, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -47424,7 +49660,7 @@ } }, { - "id": 2244, + "id": 2343, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -47449,94 +49685,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2370, - 2261, - 2368, - 2199, - 2255, - 2200, - 2201, - 2202, - 2236, - 2203, - 2204, - 2205, - 2206, - 2207, - 2208, - 2259, - 2246, - 2369, - 2209, - 2196, - 2256, - 2210, - 2211, - 2197, - 2163, - 2242, - 2212, - 2131, - 2213, - 2214, - 2215, - 2216, - 2254, - 2250, - 2253, - 2251, - 2252, - 2240, - 2238, - 2195, - 2128, - 2248, - 2217, - 2218, - 2219, - 2220, - 2221, - 2241, - 2222, - 2132, - 2375, - 2223, - 2224, - 2237, - 2130, - 2372, - 2129, - 2225, - 2373, - 2247, - 2140, - 2171, - 2164, - 2194, - 2226, - 2258, - 2227, - 2245, - 2228, - 2243, - 2229, - 2376, + 2469, + 2360, + 2467, + 2298, + 2354, + 2299, + 2300, + 2301, + 2335, + 2302, + 2303, + 2304, + 2305, + 2306, + 2307, + 2358, + 2345, + 2468, + 2308, + 2295, + 2355, + 2309, + 2310, + 2296, + 2262, + 2341, + 2311, 2230, - 2371, + 2312, + 2313, + 2314, + 2315, + 2353, + 2349, + 2352, + 2350, + 2351, + 2339, + 2337, + 2294, + 2227, + 2347, + 2316, + 2317, + 2318, + 2319, + 2320, + 2340, + 2321, 2231, - 2232, + 2474, + 2322, + 2323, + 2336, + 2229, + 2471, + 2228, + 2324, + 2472, + 2346, 2239, - 2233, - 2234, - 2367, - 2262, - 2249, - 2235, - 2260, - 2198, - 2257, - 2374, - 2244 + 2270, + 2263, + 2293, + 2325, + 2357, + 2326, + 2344, + 2327, + 2342, + 2328, + 2475, + 2329, + 2470, + 2330, + 2331, + 2338, + 2332, + 2333, + 2466, + 2361, + 2348, + 2334, + 2359, + 2297, + 2356, + 2473, + 2343 ] } ] @@ -47544,7 +49780,7 @@ } }, { - "id": 1832, + "id": 1931, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -47562,14 +49798,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1833, + "id": 1932, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1834, + "id": 1933, "name": "admin", "kind": 1024, "kindString": "Property", @@ -47589,7 +49825,7 @@ } }, { - "id": 1835, + "id": 1934, "name": "pull", "kind": 1024, "kindString": "Property", @@ -47609,7 +49845,7 @@ } }, { - "id": 1836, + "id": 1935, "name": "push", "kind": 1024, "kindString": "Property", @@ -47634,9 +49870,9 @@ "title": "Properties", "kind": 1024, "children": [ - 1834, - 1835, - 1836 + 1933, + 1934, + 1935 ] } ] @@ -47644,7 +49880,7 @@ } }, { - "id": 1765, + "id": 1864, "name": "private", "kind": 1024, "kindString": "Property", @@ -47664,7 +49900,7 @@ } }, { - "id": 1797, + "id": 1896, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -47684,7 +49920,7 @@ } }, { - "id": 1829, + "id": 1928, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -47704,7 +49940,7 @@ } }, { - "id": 1798, + "id": 1897, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -47724,7 +49960,7 @@ } }, { - "id": 2639, + "id": 2738, "name": "security_and_analysis", "kind": 1024, "kindString": "Property", @@ -47749,14 +49985,14 @@ { "type": "reflection", "declaration": { - "id": 2640, + "id": 2739, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2641, + "id": 2740, "name": "advanced_security", "kind": 1024, "kindString": "Property", @@ -47774,14 +50010,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2642, + "id": 2741, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2643, + "id": 2742, "name": "status", "kind": 1024, "kindString": "Property", @@ -47816,7 +50052,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2643 + 2742 ] } ] @@ -47824,7 +50060,7 @@ } }, { - "id": 2644, + "id": 2743, "name": "secret_scanning", "kind": 1024, "kindString": "Property", @@ -47842,14 +50078,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2645, + "id": 2744, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2646, + "id": 2745, "name": "status", "kind": 1024, "kindString": "Property", @@ -47884,7 +50120,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2646 + 2745 ] } ] @@ -47897,8 +50133,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2641, - 2644 + 2740, + 2743 ] } ] @@ -47908,7 +50144,7 @@ } }, { - "id": 1816, + "id": 1915, "name": "size", "kind": 1024, "kindString": "Property", @@ -47928,7 +50164,7 @@ } }, { - "id": 2377, + "id": 2476, "name": "source", "kind": 1024, "kindString": "Property", @@ -47946,14 +50182,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2378, + "id": 2477, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2621, + "id": 2720, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -47977,7 +50213,7 @@ } }, { - "id": 2512, + "id": 2611, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -48001,7 +50237,7 @@ } }, { - "id": 2619, + "id": 2718, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -48025,7 +50261,7 @@ } }, { - "id": 2450, + "id": 2549, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -48045,7 +50281,7 @@ } }, { - "id": 2506, + "id": 2605, "name": "archived", "kind": 1024, "kindString": "Property", @@ -48068,7 +50304,7 @@ } }, { - "id": 2451, + "id": 2550, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -48088,7 +50324,7 @@ } }, { - "id": 2452, + "id": 2551, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -48108,7 +50344,7 @@ } }, { - "id": 2453, + "id": 2552, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -48128,7 +50364,7 @@ } }, { - "id": 2487, + "id": 2586, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -48148,7 +50384,7 @@ } }, { - "id": 2454, + "id": 2553, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -48168,7 +50404,7 @@ } }, { - "id": 2455, + "id": 2554, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -48188,7 +50424,7 @@ } }, { - "id": 2456, + "id": 2555, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -48208,7 +50444,7 @@ } }, { - "id": 2457, + "id": 2556, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -48228,7 +50464,7 @@ } }, { - "id": 2458, + "id": 2557, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -48248,7 +50484,7 @@ } }, { - "id": 2459, + "id": 2558, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -48268,7 +50504,7 @@ } }, { - "id": 2510, + "id": 2609, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -48297,7 +50533,7 @@ } }, { - "id": 2497, + "id": 2596, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -48320,7 +50556,7 @@ } }, { - "id": 2620, + "id": 2719, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -48344,7 +50580,7 @@ } }, { - "id": 2460, + "id": 2559, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -48364,7 +50600,7 @@ } }, { - "id": 2447, + "id": 2546, "name": "description", "kind": 1024, "kindString": "Property", @@ -48393,7 +50629,7 @@ } }, { - "id": 2507, + "id": 2606, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -48416,7 +50652,7 @@ } }, { - "id": 2461, + "id": 2560, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -48436,7 +50672,7 @@ } }, { - "id": 2462, + "id": 2561, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -48456,7 +50692,7 @@ } }, { - "id": 2448, + "id": 2547, "name": "fork", "kind": 1024, "kindString": "Property", @@ -48476,7 +50712,7 @@ } }, { - "id": 2414, + "id": 2513, "name": "forks", "kind": 1024, "kindString": "Property", @@ -48496,7 +50732,7 @@ } }, { - "id": 2493, + "id": 2592, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -48516,7 +50752,7 @@ } }, { - "id": 2463, + "id": 2562, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -48536,7 +50772,7 @@ } }, { - "id": 2382, + "id": 2481, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -48556,7 +50792,7 @@ } }, { - "id": 2464, + "id": 2563, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -48576,7 +50812,7 @@ } }, { - "id": 2465, + "id": 2564, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -48596,7 +50832,7 @@ } }, { - "id": 2466, + "id": 2565, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -48616,7 +50852,7 @@ } }, { - "id": 2467, + "id": 2566, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -48636,7 +50872,7 @@ } }, { - "id": 2505, + "id": 2604, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -48659,7 +50895,7 @@ } }, { - "id": 2501, + "id": 2600, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -48682,7 +50918,7 @@ } }, { - "id": 2504, + "id": 2603, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -48702,7 +50938,7 @@ } }, { - "id": 2502, + "id": 2601, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -48725,7 +50961,7 @@ } }, { - "id": 2503, + "id": 2602, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -48748,7 +50984,7 @@ } }, { - "id": 2491, + "id": 2590, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -48777,7 +51013,7 @@ } }, { - "id": 2489, + "id": 2588, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -48797,7 +51033,7 @@ } }, { - "id": 2446, + "id": 2545, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -48817,7 +51053,7 @@ } }, { - "id": 2379, + "id": 2478, "name": "id", "kind": 1024, "kindString": "Property", @@ -48840,7 +51076,7 @@ } }, { - "id": 2499, + "id": 2598, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -48864,7 +51100,7 @@ } }, { - "id": 2468, + "id": 2567, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -48884,7 +51120,7 @@ } }, { - "id": 2469, + "id": 2568, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -48904,7 +51140,7 @@ } }, { - "id": 2470, + "id": 2569, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -48924,7 +51160,7 @@ } }, { - "id": 2471, + "id": 2570, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -48944,7 +51180,7 @@ } }, { - "id": 2472, + "id": 2571, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -48964,7 +51200,7 @@ } }, { - "id": 2492, + "id": 2591, "name": "language", "kind": 1024, "kindString": "Property", @@ -48993,7 +51229,7 @@ } }, { - "id": 2473, + "id": 2572, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -49013,7 +51249,7 @@ } }, { - "id": 2383, + "id": 2482, "name": "license", "kind": 1024, "kindString": "Property", @@ -49037,14 +51273,14 @@ { "type": "reflection", "declaration": { - "id": 2384, + "id": 2483, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2390, + "id": 2489, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -49065,7 +51301,7 @@ } }, { - "id": 2385, + "id": 2484, "name": "key", "kind": 1024, "kindString": "Property", @@ -49085,7 +51321,7 @@ } }, { - "id": 2386, + "id": 2485, "name": "name", "kind": 1024, "kindString": "Property", @@ -49105,7 +51341,7 @@ } }, { - "id": 2389, + "id": 2488, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49125,7 +51361,7 @@ } }, { - "id": 2388, + "id": 2487, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -49154,7 +51390,7 @@ } }, { - "id": 2387, + "id": 2486, "name": "url", "kind": 1024, "kindString": "Property", @@ -49188,12 +51424,12 @@ "title": "Properties", "kind": 1024, "children": [ - 2390, - 2385, - 2386, - 2389, - 2388, - 2387 + 2489, + 2484, + 2485, + 2488, + 2487, + 2486 ] } ] @@ -49203,7 +51439,7 @@ } }, { - "id": 2626, + "id": 2725, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -49224,7 +51460,7 @@ } }, { - "id": 2474, + "id": 2573, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -49244,7 +51480,7 @@ } }, { - "id": 2475, + "id": 2574, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -49264,7 +51500,7 @@ } }, { - "id": 2488, + "id": 2587, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -49293,7 +51529,7 @@ } }, { - "id": 2381, + "id": 2480, "name": "name", "kind": 1024, "kindString": "Property", @@ -49316,7 +51552,7 @@ } }, { - "id": 2623, + "id": 2722, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -49337,7 +51573,7 @@ } }, { - "id": 2380, + "id": 2479, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49357,7 +51593,7 @@ } }, { - "id": 2476, + "id": 2575, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -49377,7 +51613,7 @@ } }, { - "id": 2624, + "id": 2723, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -49397,7 +51633,7 @@ } }, { - "id": 2498, + "id": 2597, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -49417,7 +51653,7 @@ } }, { - "id": 2391, + "id": 2490, "name": "organization", "kind": 1024, "kindString": "Property", @@ -49442,14 +51678,14 @@ { "type": "reflection", "declaration": { - "id": 2392, + "id": 2491, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2398, + "id": 2497, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -49469,7 +51705,7 @@ } }, { - "id": 2394, + "id": 2493, "name": "email", "kind": 1024, "kindString": "Property", @@ -49499,7 +51735,7 @@ } }, { - "id": 2409, + "id": 2508, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -49519,7 +51755,7 @@ } }, { - "id": 2402, + "id": 2501, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -49539,7 +51775,7 @@ } }, { - "id": 2403, + "id": 2502, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -49559,7 +51795,7 @@ } }, { - "id": 2404, + "id": 2503, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -49579,7 +51815,7 @@ } }, { - "id": 2399, + "id": 2498, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -49608,7 +51844,7 @@ } }, { - "id": 2401, + "id": 2500, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -49628,7 +51864,7 @@ } }, { - "id": 2396, + "id": 2495, "name": "id", "kind": 1024, "kindString": "Property", @@ -49648,7 +51884,7 @@ } }, { - "id": 2395, + "id": 2494, "name": "login", "kind": 1024, "kindString": "Property", @@ -49668,7 +51904,7 @@ } }, { - "id": 2393, + "id": 2492, "name": "name", "kind": 1024, "kindString": "Property", @@ -49698,7 +51934,7 @@ } }, { - "id": 2397, + "id": 2496, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -49718,7 +51954,7 @@ } }, { - "id": 2407, + "id": 2506, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -49738,7 +51974,7 @@ } }, { - "id": 2410, + "id": 2509, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -49758,7 +51994,7 @@ } }, { - "id": 2408, + "id": 2507, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -49778,7 +52014,7 @@ } }, { - "id": 2412, + "id": 2511, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -49798,7 +52034,7 @@ } }, { - "id": 2413, + "id": 2512, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -49819,7 +52055,7 @@ } }, { - "id": 2405, + "id": 2504, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -49839,7 +52075,7 @@ } }, { - "id": 2406, + "id": 2505, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -49859,7 +52095,7 @@ } }, { - "id": 2411, + "id": 2510, "name": "type", "kind": 1024, "kindString": "Property", @@ -49879,7 +52115,7 @@ } }, { - "id": 2400, + "id": 2499, "name": "url", "kind": 1024, "kindString": "Property", @@ -49904,27 +52140,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2398, - 2394, - 2409, - 2402, - 2403, - 2404, - 2399, - 2401, - 2396, - 2395, - 2393, - 2397, - 2407, - 2410, - 2408, - 2412, - 2413, - 2405, - 2406, - 2411, - 2400 + 2497, + 2493, + 2508, + 2501, + 2502, + 2503, + 2498, + 2500, + 2495, + 2494, + 2492, + 2496, + 2506, + 2509, + 2507, + 2511, + 2512, + 2504, + 2505, + 2510, + 2499 ] } ] @@ -49934,7 +52170,7 @@ } }, { - "id": 2422, + "id": 2521, "name": "owner", "kind": 1024, "kindString": "Property", @@ -49958,14 +52194,14 @@ { "type": "reflection", "declaration": { - "id": 2423, + "id": 2522, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2429, + "id": 2528, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -49985,7 +52221,7 @@ } }, { - "id": 2425, + "id": 2524, "name": "email", "kind": 1024, "kindString": "Property", @@ -50015,7 +52251,7 @@ } }, { - "id": 2440, + "id": 2539, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -50035,7 +52271,7 @@ } }, { - "id": 2433, + "id": 2532, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -50055,7 +52291,7 @@ } }, { - "id": 2434, + "id": 2533, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -50075,7 +52311,7 @@ } }, { - "id": 2435, + "id": 2534, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -50095,7 +52331,7 @@ } }, { - "id": 2430, + "id": 2529, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -50124,7 +52360,7 @@ } }, { - "id": 2432, + "id": 2531, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -50144,7 +52380,7 @@ } }, { - "id": 2427, + "id": 2526, "name": "id", "kind": 1024, "kindString": "Property", @@ -50164,7 +52400,7 @@ } }, { - "id": 2426, + "id": 2525, "name": "login", "kind": 1024, "kindString": "Property", @@ -50184,7 +52420,7 @@ } }, { - "id": 2424, + "id": 2523, "name": "name", "kind": 1024, "kindString": "Property", @@ -50214,7 +52450,7 @@ } }, { - "id": 2428, + "id": 2527, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -50234,7 +52470,7 @@ } }, { - "id": 2438, + "id": 2537, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -50254,7 +52490,7 @@ } }, { - "id": 2441, + "id": 2540, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -50274,7 +52510,7 @@ } }, { - "id": 2439, + "id": 2538, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -50294,7 +52530,7 @@ } }, { - "id": 2443, + "id": 2542, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -50314,7 +52550,7 @@ } }, { - "id": 2444, + "id": 2543, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -50335,7 +52571,7 @@ } }, { - "id": 2436, + "id": 2535, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -50355,7 +52591,7 @@ } }, { - "id": 2437, + "id": 2536, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -50375,7 +52611,7 @@ } }, { - "id": 2442, + "id": 2541, "name": "type", "kind": 1024, "kindString": "Property", @@ -50395,7 +52631,7 @@ } }, { - "id": 2431, + "id": 2530, "name": "url", "kind": 1024, "kindString": "Property", @@ -50420,27 +52656,27 @@ "title": "Properties", "kind": 1024, "children": [ - 2429, - 2425, - 2440, - 2433, - 2434, - 2435, - 2430, - 2432, - 2427, - 2426, - 2424, - 2428, - 2438, - 2441, - 2439, - 2443, - 2444, - 2436, - 2437, - 2442, - 2431 + 2528, + 2524, + 2539, + 2532, + 2533, + 2534, + 2529, + 2531, + 2526, + 2525, + 2523, + 2527, + 2537, + 2540, + 2538, + 2542, + 2543, + 2535, + 2536, + 2541, + 2530 ] } ] @@ -50450,7 +52686,7 @@ } }, { - "id": 2415, + "id": 2514, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -50468,14 +52704,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2416, + "id": 2515, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2417, + "id": 2516, "name": "admin", "kind": 1024, "kindString": "Property", @@ -50495,7 +52731,7 @@ } }, { - "id": 2421, + "id": 2520, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -50516,7 +52752,7 @@ } }, { - "id": 2418, + "id": 2517, "name": "pull", "kind": 1024, "kindString": "Property", @@ -50536,7 +52772,7 @@ } }, { - "id": 2420, + "id": 2519, "name": "push", "kind": 1024, "kindString": "Property", @@ -50556,7 +52792,7 @@ } }, { - "id": 2419, + "id": 2518, "name": "triage", "kind": 1024, "kindString": "Property", @@ -50582,11 +52818,11 @@ "title": "Properties", "kind": 1024, "children": [ - 2417, - 2421, - 2418, - 2420, - 2419 + 2516, + 2520, + 2517, + 2519, + 2518 ] } ] @@ -50594,7 +52830,7 @@ } }, { - "id": 2445, + "id": 2544, "name": "private", "kind": 1024, "kindString": "Property", @@ -50617,7 +52853,7 @@ } }, { - "id": 2477, + "id": 2576, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -50637,7 +52873,7 @@ } }, { - "id": 2509, + "id": 2608, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -50666,7 +52902,7 @@ } }, { - "id": 2478, + "id": 2577, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -50686,7 +52922,7 @@ } }, { - "id": 2496, + "id": 2595, "name": "size", "kind": 1024, "kindString": "Property", @@ -50706,7 +52942,7 @@ } }, { - "id": 2479, + "id": 2578, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -50726,7 +52962,7 @@ } }, { - "id": 2494, + "id": 2593, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -50746,7 +52982,7 @@ } }, { - "id": 2480, + "id": 2579, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -50766,7 +53002,7 @@ } }, { - "id": 2627, + "id": 2726, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -50787,7 +53023,7 @@ } }, { - "id": 2481, + "id": 2580, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -50807,7 +53043,7 @@ } }, { - "id": 2622, + "id": 2721, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -50828,7 +53064,7 @@ } }, { - "id": 2482, + "id": 2581, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -50848,7 +53084,7 @@ } }, { - "id": 2483, + "id": 2582, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -50868,7 +53104,7 @@ } }, { - "id": 2490, + "id": 2589, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -50888,7 +53124,7 @@ } }, { - "id": 2484, + "id": 2583, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -50908,7 +53144,7 @@ } }, { - "id": 2485, + "id": 2584, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -50928,7 +53164,7 @@ } }, { - "id": 2618, + "id": 2717, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -50949,7 +53185,7 @@ } }, { - "id": 2513, + "id": 2612, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -50974,14 +53210,14 @@ { "type": "reflection", "declaration": { - "id": 2514, + "id": 2613, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2615, + "id": 2714, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -51002,7 +53238,7 @@ } }, { - "id": 2611, + "id": 2710, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -51023,7 +53259,7 @@ } }, { - "id": 2613, + "id": 2712, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -51044,7 +53280,7 @@ } }, { - "id": 2544, + "id": 2643, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -51065,7 +53301,7 @@ } }, { - "id": 2600, + "id": 2699, "name": "archived", "kind": 1024, "kindString": "Property", @@ -51086,7 +53322,7 @@ } }, { - "id": 2545, + "id": 2644, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -51107,7 +53343,7 @@ } }, { - "id": 2546, + "id": 2645, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -51128,7 +53364,7 @@ } }, { - "id": 2547, + "id": 2646, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -51149,7 +53385,7 @@ } }, { - "id": 2581, + "id": 2680, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -51170,7 +53406,7 @@ } }, { - "id": 2548, + "id": 2647, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -51191,7 +53427,7 @@ } }, { - "id": 2549, + "id": 2648, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -51212,7 +53448,7 @@ } }, { - "id": 2550, + "id": 2649, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -51233,7 +53469,7 @@ } }, { - "id": 2551, + "id": 2650, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -51254,7 +53490,7 @@ } }, { - "id": 2552, + "id": 2651, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -51275,7 +53511,7 @@ } }, { - "id": 2553, + "id": 2652, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -51296,7 +53532,7 @@ } }, { - "id": 2604, + "id": 2703, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -51317,7 +53553,7 @@ } }, { - "id": 2591, + "id": 2690, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -51338,7 +53574,7 @@ } }, { - "id": 2614, + "id": 2713, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -51359,7 +53595,7 @@ } }, { - "id": 2554, + "id": 2653, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -51380,7 +53616,7 @@ } }, { - "id": 2541, + "id": 2640, "name": "description", "kind": 1024, "kindString": "Property", @@ -51401,7 +53637,7 @@ } }, { - "id": 2601, + "id": 2700, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -51422,7 +53658,7 @@ } }, { - "id": 2555, + "id": 2654, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -51443,7 +53679,7 @@ } }, { - "id": 2556, + "id": 2655, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -51464,7 +53700,7 @@ } }, { - "id": 2542, + "id": 2641, "name": "fork", "kind": 1024, "kindString": "Property", @@ -51485,7 +53721,7 @@ } }, { - "id": 2587, + "id": 2686, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -51506,7 +53742,7 @@ } }, { - "id": 2557, + "id": 2656, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -51527,7 +53763,7 @@ } }, { - "id": 2518, + "id": 2617, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -51548,7 +53784,7 @@ } }, { - "id": 2558, + "id": 2657, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -51569,7 +53805,7 @@ } }, { - "id": 2559, + "id": 2658, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -51590,7 +53826,7 @@ } }, { - "id": 2560, + "id": 2659, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -51611,7 +53847,7 @@ } }, { - "id": 2561, + "id": 2660, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -51632,7 +53868,7 @@ } }, { - "id": 2599, + "id": 2698, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -51653,7 +53889,7 @@ } }, { - "id": 2595, + "id": 2694, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -51674,7 +53910,7 @@ } }, { - "id": 2598, + "id": 2697, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -51695,7 +53931,7 @@ } }, { - "id": 2596, + "id": 2695, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -51716,7 +53952,7 @@ } }, { - "id": 2597, + "id": 2696, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -51737,7 +53973,7 @@ } }, { - "id": 2585, + "id": 2684, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -51758,7 +53994,7 @@ } }, { - "id": 2583, + "id": 2682, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -51779,7 +54015,7 @@ } }, { - "id": 2540, + "id": 2639, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -51800,7 +54036,7 @@ } }, { - "id": 2515, + "id": 2614, "name": "id", "kind": 1024, "kindString": "Property", @@ -51821,7 +54057,7 @@ } }, { - "id": 2593, + "id": 2692, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -51842,7 +54078,7 @@ } }, { - "id": 2562, + "id": 2661, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -51863,7 +54099,7 @@ } }, { - "id": 2563, + "id": 2662, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -51884,7 +54120,7 @@ } }, { - "id": 2564, + "id": 2663, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -51905,7 +54141,7 @@ } }, { - "id": 2565, + "id": 2664, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -51926,7 +54162,7 @@ } }, { - "id": 2566, + "id": 2665, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -51947,7 +54183,7 @@ } }, { - "id": 2586, + "id": 2685, "name": "language", "kind": 1024, "kindString": "Property", @@ -51968,7 +54204,7 @@ } }, { - "id": 2567, + "id": 2666, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -51989,7 +54225,7 @@ } }, { - "id": 2568, + "id": 2667, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -52010,7 +54246,7 @@ } }, { - "id": 2569, + "id": 2668, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -52031,7 +54267,7 @@ } }, { - "id": 2582, + "id": 2681, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -52052,7 +54288,7 @@ } }, { - "id": 2517, + "id": 2616, "name": "name", "kind": 1024, "kindString": "Property", @@ -52073,7 +54309,7 @@ } }, { - "id": 2617, + "id": 2716, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -52094,7 +54330,7 @@ } }, { - "id": 2516, + "id": 2615, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -52115,7 +54351,7 @@ } }, { - "id": 2570, + "id": 2669, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -52136,7 +54372,7 @@ } }, { - "id": 2592, + "id": 2691, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -52157,7 +54393,7 @@ } }, { - "id": 2519, + "id": 2618, "name": "owner", "kind": 1024, "kindString": "Property", @@ -52175,14 +54411,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2520, + "id": 2619, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2524, + "id": 2623, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -52203,7 +54439,7 @@ } }, { - "id": 2535, + "id": 2634, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -52224,7 +54460,7 @@ } }, { - "id": 2528, + "id": 2627, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -52245,7 +54481,7 @@ } }, { - "id": 2529, + "id": 2628, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -52266,7 +54502,7 @@ } }, { - "id": 2530, + "id": 2629, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -52287,7 +54523,7 @@ } }, { - "id": 2525, + "id": 2624, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -52308,7 +54544,7 @@ } }, { - "id": 2527, + "id": 2626, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -52329,7 +54565,7 @@ } }, { - "id": 2522, + "id": 2621, "name": "id", "kind": 1024, "kindString": "Property", @@ -52350,7 +54586,7 @@ } }, { - "id": 2521, + "id": 2620, "name": "login", "kind": 1024, "kindString": "Property", @@ -52371,7 +54607,7 @@ } }, { - "id": 2523, + "id": 2622, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -52392,7 +54628,7 @@ } }, { - "id": 2533, + "id": 2632, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -52413,7 +54649,7 @@ } }, { - "id": 2536, + "id": 2635, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -52434,7 +54670,7 @@ } }, { - "id": 2534, + "id": 2633, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -52455,7 +54691,7 @@ } }, { - "id": 2538, + "id": 2637, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -52476,7 +54712,7 @@ } }, { - "id": 2531, + "id": 2630, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -52497,7 +54733,7 @@ } }, { - "id": 2532, + "id": 2631, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -52518,7 +54754,7 @@ } }, { - "id": 2537, + "id": 2636, "name": "type", "kind": 1024, "kindString": "Property", @@ -52539,7 +54775,7 @@ } }, { - "id": 2526, + "id": 2625, "name": "url", "kind": 1024, "kindString": "Property", @@ -52565,24 +54801,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2524, - 2535, - 2528, - 2529, - 2530, - 2525, - 2527, - 2522, - 2521, - 2523, - 2533, - 2536, - 2534, - 2538, - 2531, - 2532, - 2537, - 2526 + 2623, + 2634, + 2627, + 2628, + 2629, + 2624, + 2626, + 2621, + 2620, + 2622, + 2632, + 2635, + 2633, + 2637, + 2630, + 2631, + 2636, + 2625 ] } ] @@ -52590,7 +54826,7 @@ } }, { - "id": 2606, + "id": 2705, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -52608,14 +54844,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2607, + "id": 2706, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2608, + "id": 2707, "name": "admin", "kind": 1024, "kindString": "Property", @@ -52636,7 +54872,7 @@ } }, { - "id": 2610, + "id": 2709, "name": "pull", "kind": 1024, "kindString": "Property", @@ -52657,7 +54893,7 @@ } }, { - "id": 2609, + "id": 2708, "name": "push", "kind": 1024, "kindString": "Property", @@ -52683,9 +54919,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2608, - 2610, - 2609 + 2707, + 2709, + 2708 ] } ] @@ -52693,7 +54929,7 @@ } }, { - "id": 2539, + "id": 2638, "name": "private", "kind": 1024, "kindString": "Property", @@ -52714,7 +54950,7 @@ } }, { - "id": 2571, + "id": 2670, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -52735,7 +54971,7 @@ } }, { - "id": 2603, + "id": 2702, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -52756,7 +54992,7 @@ } }, { - "id": 2572, + "id": 2671, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -52777,7 +55013,7 @@ } }, { - "id": 2590, + "id": 2689, "name": "size", "kind": 1024, "kindString": "Property", @@ -52798,7 +55034,7 @@ } }, { - "id": 2573, + "id": 2672, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -52819,7 +55055,7 @@ } }, { - "id": 2588, + "id": 2687, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -52840,7 +55076,7 @@ } }, { - "id": 2574, + "id": 2673, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -52861,7 +55097,7 @@ } }, { - "id": 2575, + "id": 2674, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -52882,7 +55118,7 @@ } }, { - "id": 2616, + "id": 2715, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -52903,7 +55139,7 @@ } }, { - "id": 2576, + "id": 2675, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -52924,7 +55160,7 @@ } }, { - "id": 2577, + "id": 2676, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -52945,7 +55181,7 @@ } }, { - "id": 2584, + "id": 2683, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -52966,7 +55202,7 @@ } }, { - "id": 2578, + "id": 2677, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -52987,7 +55223,7 @@ } }, { - "id": 2579, + "id": 2678, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -53008,7 +55244,7 @@ } }, { - "id": 2612, + "id": 2711, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -53029,7 +55265,7 @@ } }, { - "id": 2594, + "id": 2693, "name": "topics", "kind": 1024, "kindString": "Property", @@ -53053,7 +55289,7 @@ } }, { - "id": 2580, + "id": 2679, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -53074,7 +55310,7 @@ } }, { - "id": 2605, + "id": 2704, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -53095,7 +55331,7 @@ } }, { - "id": 2543, + "id": 2642, "name": "url", "kind": 1024, "kindString": "Property", @@ -53116,7 +55352,7 @@ } }, { - "id": 2602, + "id": 2701, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -53137,7 +55373,7 @@ } }, { - "id": 2589, + "id": 2688, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -53163,86 +55399,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2615, - 2611, - 2613, - 2544, - 2600, - 2545, - 2546, - 2547, - 2581, - 2548, - 2549, - 2550, - 2551, - 2552, - 2553, - 2604, - 2591, - 2614, - 2554, - 2541, - 2601, - 2555, - 2556, - 2542, - 2587, - 2557, - 2518, - 2558, - 2559, - 2560, - 2561, - 2599, - 2595, - 2598, - 2596, - 2597, - 2585, - 2583, - 2540, - 2515, - 2593, - 2562, - 2563, - 2564, - 2565, - 2566, - 2586, - 2567, - 2568, - 2569, - 2582, - 2517, + 2714, + 2710, + 2712, + 2643, + 2699, + 2644, + 2645, + 2646, + 2680, + 2647, + 2648, + 2649, + 2650, + 2651, + 2652, + 2703, + 2690, + 2713, + 2653, + 2640, + 2700, + 2654, + 2655, + 2641, + 2686, + 2656, 2617, - 2516, - 2570, - 2592, - 2519, - 2606, - 2539, - 2571, - 2603, - 2572, - 2590, - 2573, - 2588, - 2574, - 2575, + 2657, + 2658, + 2659, + 2660, + 2698, + 2694, + 2697, + 2695, + 2696, + 2684, + 2682, + 2639, + 2614, + 2692, + 2661, + 2662, + 2663, + 2664, + 2665, + 2685, + 2666, + 2667, + 2668, + 2681, 2616, - 2576, - 2577, - 2584, - 2578, - 2579, - 2612, - 2594, - 2580, - 2605, - 2543, - 2602, - 2589 + 2716, + 2615, + 2669, + 2691, + 2618, + 2705, + 2638, + 2670, + 2702, + 2671, + 2689, + 2672, + 2687, + 2673, + 2674, + 2715, + 2675, + 2676, + 2683, + 2677, + 2678, + 2711, + 2693, + 2679, + 2704, + 2642, + 2701, + 2688 ] } ] @@ -53252,7 +55488,7 @@ } }, { - "id": 2500, + "id": 2599, "name": "topics", "kind": 1024, "kindString": "Property", @@ -53276,7 +55512,7 @@ } }, { - "id": 2486, + "id": 2585, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -53296,7 +55532,7 @@ } }, { - "id": 2511, + "id": 2610, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -53325,7 +55561,7 @@ } }, { - "id": 2449, + "id": 2548, "name": "url", "kind": 1024, "kindString": "Property", @@ -53345,7 +55581,7 @@ } }, { - "id": 2508, + "id": 2607, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -53369,7 +55605,7 @@ } }, { - "id": 2625, + "id": 2724, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -53389,7 +55625,7 @@ } }, { - "id": 2495, + "id": 2594, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -53414,94 +55650,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2621, - 2512, - 2619, - 2450, - 2506, - 2451, - 2452, - 2453, - 2487, - 2454, - 2455, - 2456, - 2457, - 2458, - 2459, - 2510, - 2497, - 2620, - 2460, - 2447, - 2507, - 2461, - 2462, - 2448, - 2414, - 2493, - 2463, - 2382, - 2464, - 2465, - 2466, - 2467, - 2505, - 2501, - 2504, - 2502, - 2503, - 2491, - 2489, - 2446, - 2379, - 2499, - 2468, - 2469, - 2470, - 2471, - 2472, - 2492, - 2473, - 2383, - 2626, - 2474, - 2475, - 2488, - 2381, - 2623, - 2380, - 2476, - 2624, - 2498, - 2391, - 2422, - 2415, - 2445, - 2477, - 2509, - 2478, - 2496, - 2479, - 2494, - 2480, - 2627, + 2720, + 2611, + 2718, + 2549, + 2605, + 2550, + 2551, + 2552, + 2586, + 2553, + 2554, + 2555, + 2556, + 2557, + 2558, + 2609, + 2596, + 2719, + 2559, + 2546, + 2606, + 2560, + 2561, + 2547, + 2513, + 2592, + 2562, 2481, - 2622, + 2563, + 2564, + 2565, + 2566, + 2604, + 2600, + 2603, + 2601, + 2602, + 2590, + 2588, + 2545, + 2478, + 2598, + 2567, + 2568, + 2569, + 2570, + 2571, + 2591, + 2572, 2482, - 2483, + 2725, + 2573, + 2574, + 2587, + 2480, + 2722, + 2479, + 2575, + 2723, + 2597, 2490, - 2484, - 2485, - 2618, - 2513, - 2500, - 2486, - 2511, - 2449, - 2508, - 2625, - 2495 + 2521, + 2514, + 2544, + 2576, + 2608, + 2577, + 2595, + 2578, + 2593, + 2579, + 2726, + 2580, + 2721, + 2581, + 2582, + 2589, + 2583, + 2584, + 2717, + 2612, + 2599, + 2585, + 2610, + 2548, + 2607, + 2724, + 2594 ] } ] @@ -53509,7 +55745,7 @@ } }, { - "id": 1799, + "id": 1898, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -53529,7 +55765,7 @@ } }, { - "id": 1814, + "id": 1913, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -53549,7 +55785,7 @@ } }, { - "id": 1800, + "id": 1899, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -53569,7 +55805,7 @@ } }, { - "id": 1801, + "id": 1900, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -53589,7 +55825,7 @@ } }, { - "id": 2093, + "id": 2192, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -53609,7 +55845,7 @@ } }, { - "id": 1802, + "id": 1901, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -53629,7 +55865,7 @@ } }, { - "id": 1803, + "id": 1902, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -53649,7 +55885,7 @@ } }, { - "id": 1810, + "id": 1909, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -53669,7 +55905,7 @@ } }, { - "id": 1804, + "id": 1903, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -53689,7 +55925,7 @@ } }, { - "id": 1805, + "id": 1904, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -53709,7 +55945,7 @@ } }, { - "id": 2089, + "id": 2188, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -53739,7 +55975,7 @@ } }, { - "id": 1838, + "id": 1937, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -53764,14 +56000,14 @@ { "type": "reflection", "declaration": { - "id": 1839, + "id": 1938, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2082, + "id": 2181, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -53795,7 +56031,7 @@ } }, { - "id": 1973, + "id": 2072, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -53819,7 +56055,7 @@ } }, { - "id": 2080, + "id": 2179, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -53843,7 +56079,7 @@ } }, { - "id": 1911, + "id": 2010, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -53863,7 +56099,7 @@ } }, { - "id": 1967, + "id": 2066, "name": "archived", "kind": 1024, "kindString": "Property", @@ -53886,7 +56122,7 @@ } }, { - "id": 1912, + "id": 2011, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -53906,7 +56142,7 @@ } }, { - "id": 1913, + "id": 2012, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -53926,7 +56162,7 @@ } }, { - "id": 1914, + "id": 2013, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -53946,7 +56182,7 @@ } }, { - "id": 1948, + "id": 2047, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -53966,7 +56202,7 @@ } }, { - "id": 1915, + "id": 2014, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -53986,7 +56222,7 @@ } }, { - "id": 1916, + "id": 2015, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -54006,7 +56242,7 @@ } }, { - "id": 1917, + "id": 2016, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -54026,7 +56262,7 @@ } }, { - "id": 1918, + "id": 2017, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -54046,7 +56282,7 @@ } }, { - "id": 1919, + "id": 2018, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -54066,7 +56302,7 @@ } }, { - "id": 1920, + "id": 2019, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -54086,7 +56322,7 @@ } }, { - "id": 1971, + "id": 2070, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -54115,7 +56351,7 @@ } }, { - "id": 1958, + "id": 2057, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -54138,7 +56374,7 @@ } }, { - "id": 2081, + "id": 2180, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -54162,7 +56398,7 @@ } }, { - "id": 1921, + "id": 2020, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -54182,7 +56418,7 @@ } }, { - "id": 1908, + "id": 2007, "name": "description", "kind": 1024, "kindString": "Property", @@ -54211,7 +56447,7 @@ } }, { - "id": 1968, + "id": 2067, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -54234,7 +56470,7 @@ } }, { - "id": 1922, + "id": 2021, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -54254,7 +56490,7 @@ } }, { - "id": 1923, + "id": 2022, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -54274,7 +56510,7 @@ } }, { - "id": 1909, + "id": 2008, "name": "fork", "kind": 1024, "kindString": "Property", @@ -54294,7 +56530,7 @@ } }, { - "id": 1875, + "id": 1974, "name": "forks", "kind": 1024, "kindString": "Property", @@ -54314,7 +56550,7 @@ } }, { - "id": 1954, + "id": 2053, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -54334,7 +56570,7 @@ } }, { - "id": 1924, + "id": 2023, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -54354,7 +56590,7 @@ } }, { - "id": 1843, + "id": 1942, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -54374,7 +56610,7 @@ } }, { - "id": 1925, + "id": 2024, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -54394,7 +56630,7 @@ } }, { - "id": 1926, + "id": 2025, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -54414,7 +56650,7 @@ } }, { - "id": 1927, + "id": 2026, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -54434,7 +56670,7 @@ } }, { - "id": 1928, + "id": 2027, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -54454,7 +56690,7 @@ } }, { - "id": 1966, + "id": 2065, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -54477,7 +56713,7 @@ } }, { - "id": 1962, + "id": 2061, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -54500,7 +56736,7 @@ } }, { - "id": 1965, + "id": 2064, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -54520,7 +56756,7 @@ } }, { - "id": 1963, + "id": 2062, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -54543,7 +56779,7 @@ } }, { - "id": 1964, + "id": 2063, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -54566,7 +56802,7 @@ } }, { - "id": 1952, + "id": 2051, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -54595,7 +56831,7 @@ } }, { - "id": 1950, + "id": 2049, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -54615,7 +56851,7 @@ } }, { - "id": 1907, + "id": 2006, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -54635,7 +56871,7 @@ } }, { - "id": 1840, + "id": 1939, "name": "id", "kind": 1024, "kindString": "Property", @@ -54658,7 +56894,7 @@ } }, { - "id": 1960, + "id": 2059, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -54682,7 +56918,7 @@ } }, { - "id": 1929, + "id": 2028, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -54702,7 +56938,7 @@ } }, { - "id": 1930, + "id": 2029, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -54722,7 +56958,7 @@ } }, { - "id": 1931, + "id": 2030, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -54742,7 +56978,7 @@ } }, { - "id": 1932, + "id": 2031, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -54762,7 +56998,7 @@ } }, { - "id": 1933, + "id": 2032, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -54782,7 +57018,7 @@ } }, { - "id": 1953, + "id": 2052, "name": "language", "kind": 1024, "kindString": "Property", @@ -54811,7 +57047,7 @@ } }, { - "id": 1934, + "id": 2033, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -54831,7 +57067,7 @@ } }, { - "id": 1844, + "id": 1943, "name": "license", "kind": 1024, "kindString": "Property", @@ -54855,14 +57091,14 @@ { "type": "reflection", "declaration": { - "id": 1845, + "id": 1944, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1851, + "id": 1950, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -54883,7 +57119,7 @@ } }, { - "id": 1846, + "id": 1945, "name": "key", "kind": 1024, "kindString": "Property", @@ -54903,7 +57139,7 @@ } }, { - "id": 1847, + "id": 1946, "name": "name", "kind": 1024, "kindString": "Property", @@ -54923,7 +57159,7 @@ } }, { - "id": 1850, + "id": 1949, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -54943,7 +57179,7 @@ } }, { - "id": 1849, + "id": 1948, "name": "spdx_id", "kind": 1024, "kindString": "Property", @@ -54972,7 +57208,7 @@ } }, { - "id": 1848, + "id": 1947, "name": "url", "kind": 1024, "kindString": "Property", @@ -55006,12 +57242,12 @@ "title": "Properties", "kind": 1024, "children": [ - 1851, - 1846, - 1847, - 1850, - 1849, - 1848 + 1950, + 1945, + 1946, + 1949, + 1948, + 1947 ] } ] @@ -55021,7 +57257,7 @@ } }, { - "id": 2087, + "id": 2186, "name": "master_branch", "kind": 1024, "kindString": "Property", @@ -55042,7 +57278,7 @@ } }, { - "id": 1935, + "id": 2034, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -55062,7 +57298,7 @@ } }, { - "id": 1936, + "id": 2035, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -55082,7 +57318,7 @@ } }, { - "id": 1949, + "id": 2048, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -55111,7 +57347,7 @@ } }, { - "id": 1842, + "id": 1941, "name": "name", "kind": 1024, "kindString": "Property", @@ -55134,7 +57370,7 @@ } }, { - "id": 2084, + "id": 2183, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -55155,7 +57391,7 @@ } }, { - "id": 1841, + "id": 1940, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55175,7 +57411,7 @@ } }, { - "id": 1937, + "id": 2036, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -55195,7 +57431,7 @@ } }, { - "id": 2085, + "id": 2184, "name": "open_issues", "kind": 1024, "kindString": "Property", @@ -55215,7 +57451,7 @@ } }, { - "id": 1959, + "id": 2058, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -55235,7 +57471,7 @@ } }, { - "id": 1852, + "id": 1951, "name": "organization", "kind": 1024, "kindString": "Property", @@ -55260,14 +57496,14 @@ { "type": "reflection", "declaration": { - "id": 1853, + "id": 1952, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1859, + "id": 1958, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -55287,7 +57523,7 @@ } }, { - "id": 1855, + "id": 1954, "name": "email", "kind": 1024, "kindString": "Property", @@ -55317,7 +57553,7 @@ } }, { - "id": 1870, + "id": 1969, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -55337,7 +57573,7 @@ } }, { - "id": 1863, + "id": 1962, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -55357,7 +57593,7 @@ } }, { - "id": 1864, + "id": 1963, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -55377,7 +57613,7 @@ } }, { - "id": 1865, + "id": 1964, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -55397,7 +57633,7 @@ } }, { - "id": 1860, + "id": 1959, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -55426,7 +57662,7 @@ } }, { - "id": 1862, + "id": 1961, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -55446,7 +57682,7 @@ } }, { - "id": 1857, + "id": 1956, "name": "id", "kind": 1024, "kindString": "Property", @@ -55466,7 +57702,7 @@ } }, { - "id": 1856, + "id": 1955, "name": "login", "kind": 1024, "kindString": "Property", @@ -55486,7 +57722,7 @@ } }, { - "id": 1854, + "id": 1953, "name": "name", "kind": 1024, "kindString": "Property", @@ -55516,7 +57752,7 @@ } }, { - "id": 1858, + "id": 1957, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -55536,7 +57772,7 @@ } }, { - "id": 1868, + "id": 1967, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -55556,7 +57792,7 @@ } }, { - "id": 1871, + "id": 1970, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -55576,7 +57812,7 @@ } }, { - "id": 1869, + "id": 1968, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -55596,7 +57832,7 @@ } }, { - "id": 1873, + "id": 1972, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -55616,7 +57852,7 @@ } }, { - "id": 1874, + "id": 1973, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -55637,7 +57873,7 @@ } }, { - "id": 1866, + "id": 1965, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -55657,7 +57893,7 @@ } }, { - "id": 1867, + "id": 1966, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -55677,7 +57913,7 @@ } }, { - "id": 1872, + "id": 1971, "name": "type", "kind": 1024, "kindString": "Property", @@ -55697,7 +57933,7 @@ } }, { - "id": 1861, + "id": 1960, "name": "url", "kind": 1024, "kindString": "Property", @@ -55722,27 +57958,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1859, - 1855, - 1870, - 1863, - 1864, - 1865, - 1860, - 1862, - 1857, - 1856, - 1854, - 1858, - 1868, - 1871, - 1869, - 1873, - 1874, - 1866, - 1867, - 1872, - 1861 + 1958, + 1954, + 1969, + 1962, + 1963, + 1964, + 1959, + 1961, + 1956, + 1955, + 1953, + 1957, + 1967, + 1970, + 1968, + 1972, + 1973, + 1965, + 1966, + 1971, + 1960 ] } ] @@ -55752,7 +57988,7 @@ } }, { - "id": 1883, + "id": 1982, "name": "owner", "kind": 1024, "kindString": "Property", @@ -55776,14 +58012,14 @@ { "type": "reflection", "declaration": { - "id": 1884, + "id": 1983, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1890, + "id": 1989, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -55803,7 +58039,7 @@ } }, { - "id": 1886, + "id": 1985, "name": "email", "kind": 1024, "kindString": "Property", @@ -55833,7 +58069,7 @@ } }, { - "id": 1901, + "id": 2000, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -55853,7 +58089,7 @@ } }, { - "id": 1894, + "id": 1993, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -55873,7 +58109,7 @@ } }, { - "id": 1895, + "id": 1994, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -55893,7 +58129,7 @@ } }, { - "id": 1896, + "id": 1995, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -55913,7 +58149,7 @@ } }, { - "id": 1891, + "id": 1990, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -55942,7 +58178,7 @@ } }, { - "id": 1893, + "id": 1992, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -55962,7 +58198,7 @@ } }, { - "id": 1888, + "id": 1987, "name": "id", "kind": 1024, "kindString": "Property", @@ -55982,7 +58218,7 @@ } }, { - "id": 1887, + "id": 1986, "name": "login", "kind": 1024, "kindString": "Property", @@ -56002,7 +58238,7 @@ } }, { - "id": 1885, + "id": 1984, "name": "name", "kind": 1024, "kindString": "Property", @@ -56032,7 +58268,7 @@ } }, { - "id": 1889, + "id": 1988, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -56052,7 +58288,7 @@ } }, { - "id": 1899, + "id": 1998, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -56072,7 +58308,7 @@ } }, { - "id": 1902, + "id": 2001, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -56092,7 +58328,7 @@ } }, { - "id": 1900, + "id": 1999, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -56112,7 +58348,7 @@ } }, { - "id": 1904, + "id": 2003, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -56132,7 +58368,7 @@ } }, { - "id": 1905, + "id": 2004, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -56153,7 +58389,7 @@ } }, { - "id": 1897, + "id": 1996, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -56173,7 +58409,7 @@ } }, { - "id": 1898, + "id": 1997, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -56193,7 +58429,7 @@ } }, { - "id": 1903, + "id": 2002, "name": "type", "kind": 1024, "kindString": "Property", @@ -56213,7 +58449,7 @@ } }, { - "id": 1892, + "id": 1991, "name": "url", "kind": 1024, "kindString": "Property", @@ -56238,27 +58474,27 @@ "title": "Properties", "kind": 1024, "children": [ - 1890, - 1886, - 1901, - 1894, - 1895, - 1896, - 1891, - 1893, - 1888, - 1887, - 1885, - 1889, - 1899, - 1902, - 1900, - 1904, - 1905, - 1897, - 1898, - 1903, - 1892 + 1989, + 1985, + 2000, + 1993, + 1994, + 1995, + 1990, + 1992, + 1987, + 1986, + 1984, + 1988, + 1998, + 2001, + 1999, + 2003, + 2004, + 1996, + 1997, + 2002, + 1991 ] } ] @@ -56268,7 +58504,7 @@ } }, { - "id": 1876, + "id": 1975, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -56286,14 +58522,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1877, + "id": 1976, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1878, + "id": 1977, "name": "admin", "kind": 1024, "kindString": "Property", @@ -56313,7 +58549,7 @@ } }, { - "id": 1882, + "id": 1981, "name": "maintain", "kind": 1024, "kindString": "Property", @@ -56334,7 +58570,7 @@ } }, { - "id": 1879, + "id": 1978, "name": "pull", "kind": 1024, "kindString": "Property", @@ -56354,7 +58590,7 @@ } }, { - "id": 1881, + "id": 1980, "name": "push", "kind": 1024, "kindString": "Property", @@ -56374,7 +58610,7 @@ } }, { - "id": 1880, + "id": 1979, "name": "triage", "kind": 1024, "kindString": "Property", @@ -56400,11 +58636,11 @@ "title": "Properties", "kind": 1024, "children": [ - 1878, - 1882, - 1879, - 1881, - 1880 + 1977, + 1981, + 1978, + 1980, + 1979 ] } ] @@ -56412,7 +58648,7 @@ } }, { - "id": 1906, + "id": 2005, "name": "private", "kind": 1024, "kindString": "Property", @@ -56435,7 +58671,7 @@ } }, { - "id": 1938, + "id": 2037, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -56455,7 +58691,7 @@ } }, { - "id": 1970, + "id": 2069, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -56484,7 +58720,7 @@ } }, { - "id": 1939, + "id": 2038, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -56504,7 +58740,7 @@ } }, { - "id": 1957, + "id": 2056, "name": "size", "kind": 1024, "kindString": "Property", @@ -56524,7 +58760,7 @@ } }, { - "id": 1940, + "id": 2039, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -56544,7 +58780,7 @@ } }, { - "id": 1955, + "id": 2054, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -56564,7 +58800,7 @@ } }, { - "id": 1941, + "id": 2040, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -56584,7 +58820,7 @@ } }, { - "id": 2088, + "id": 2187, "name": "starred_at", "kind": 1024, "kindString": "Property", @@ -56605,7 +58841,7 @@ } }, { - "id": 1942, + "id": 2041, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -56625,7 +58861,7 @@ } }, { - "id": 2083, + "id": 2182, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -56646,7 +58882,7 @@ } }, { - "id": 1943, + "id": 2042, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -56666,7 +58902,7 @@ } }, { - "id": 1944, + "id": 2043, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -56686,7 +58922,7 @@ } }, { - "id": 1951, + "id": 2050, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -56706,7 +58942,7 @@ } }, { - "id": 1945, + "id": 2044, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -56726,7 +58962,7 @@ } }, { - "id": 1946, + "id": 2045, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -56746,7 +58982,7 @@ } }, { - "id": 2079, + "id": 2178, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -56767,7 +59003,7 @@ } }, { - "id": 1974, + "id": 2073, "name": "template_repository", "kind": 1024, "kindString": "Property", @@ -56792,14 +59028,14 @@ { "type": "reflection", "declaration": { - "id": 1975, + "id": 2074, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2076, + "id": 2175, "name": "allow_merge_commit", "kind": 1024, "kindString": "Property", @@ -56820,7 +59056,7 @@ } }, { - "id": 2072, + "id": 2171, "name": "allow_rebase_merge", "kind": 1024, "kindString": "Property", @@ -56841,7 +59077,7 @@ } }, { - "id": 2074, + "id": 2173, "name": "allow_squash_merge", "kind": 1024, "kindString": "Property", @@ -56862,7 +59098,7 @@ } }, { - "id": 2005, + "id": 2104, "name": "archive_url", "kind": 1024, "kindString": "Property", @@ -56883,7 +59119,7 @@ } }, { - "id": 2061, + "id": 2160, "name": "archived", "kind": 1024, "kindString": "Property", @@ -56904,7 +59140,7 @@ } }, { - "id": 2006, + "id": 2105, "name": "assignees_url", "kind": 1024, "kindString": "Property", @@ -56925,7 +59161,7 @@ } }, { - "id": 2007, + "id": 2106, "name": "blobs_url", "kind": 1024, "kindString": "Property", @@ -56946,7 +59182,7 @@ } }, { - "id": 2008, + "id": 2107, "name": "branches_url", "kind": 1024, "kindString": "Property", @@ -56967,7 +59203,7 @@ } }, { - "id": 2042, + "id": 2141, "name": "clone_url", "kind": 1024, "kindString": "Property", @@ -56988,7 +59224,7 @@ } }, { - "id": 2009, + "id": 2108, "name": "collaborators_url", "kind": 1024, "kindString": "Property", @@ -57009,7 +59245,7 @@ } }, { - "id": 2010, + "id": 2109, "name": "comments_url", "kind": 1024, "kindString": "Property", @@ -57030,7 +59266,7 @@ } }, { - "id": 2011, + "id": 2110, "name": "commits_url", "kind": 1024, "kindString": "Property", @@ -57051,7 +59287,7 @@ } }, { - "id": 2012, + "id": 2111, "name": "compare_url", "kind": 1024, "kindString": "Property", @@ -57072,7 +59308,7 @@ } }, { - "id": 2013, + "id": 2112, "name": "contents_url", "kind": 1024, "kindString": "Property", @@ -57093,7 +59329,7 @@ } }, { - "id": 2014, + "id": 2113, "name": "contributors_url", "kind": 1024, "kindString": "Property", @@ -57114,7 +59350,7 @@ } }, { - "id": 2065, + "id": 2164, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -57135,7 +59371,7 @@ } }, { - "id": 2052, + "id": 2151, "name": "default_branch", "kind": 1024, "kindString": "Property", @@ -57156,7 +59392,7 @@ } }, { - "id": 2075, + "id": 2174, "name": "delete_branch_on_merge", "kind": 1024, "kindString": "Property", @@ -57177,7 +59413,7 @@ } }, { - "id": 2015, + "id": 2114, "name": "deployments_url", "kind": 1024, "kindString": "Property", @@ -57198,7 +59434,7 @@ } }, { - "id": 2002, + "id": 2101, "name": "description", "kind": 1024, "kindString": "Property", @@ -57219,7 +59455,7 @@ } }, { - "id": 2062, + "id": 2161, "name": "disabled", "kind": 1024, "kindString": "Property", @@ -57240,7 +59476,7 @@ } }, { - "id": 2016, + "id": 2115, "name": "downloads_url", "kind": 1024, "kindString": "Property", @@ -57261,7 +59497,7 @@ } }, { - "id": 2017, + "id": 2116, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -57282,7 +59518,7 @@ } }, { - "id": 2003, + "id": 2102, "name": "fork", "kind": 1024, "kindString": "Property", @@ -57303,7 +59539,7 @@ } }, { - "id": 2048, + "id": 2147, "name": "forks_count", "kind": 1024, "kindString": "Property", @@ -57324,7 +59560,7 @@ } }, { - "id": 2018, + "id": 2117, "name": "forks_url", "kind": 1024, "kindString": "Property", @@ -57345,7 +59581,7 @@ } }, { - "id": 1979, + "id": 2078, "name": "full_name", "kind": 1024, "kindString": "Property", @@ -57366,7 +59602,7 @@ } }, { - "id": 2019, + "id": 2118, "name": "git_commits_url", "kind": 1024, "kindString": "Property", @@ -57387,7 +59623,7 @@ } }, { - "id": 2020, + "id": 2119, "name": "git_refs_url", "kind": 1024, "kindString": "Property", @@ -57408,7 +59644,7 @@ } }, { - "id": 2021, + "id": 2120, "name": "git_tags_url", "kind": 1024, "kindString": "Property", @@ -57429,7 +59665,7 @@ } }, { - "id": 2022, + "id": 2121, "name": "git_url", "kind": 1024, "kindString": "Property", @@ -57450,7 +59686,7 @@ } }, { - "id": 2060, + "id": 2159, "name": "has_downloads", "kind": 1024, "kindString": "Property", @@ -57471,7 +59707,7 @@ } }, { - "id": 2056, + "id": 2155, "name": "has_issues", "kind": 1024, "kindString": "Property", @@ -57492,7 +59728,7 @@ } }, { - "id": 2059, + "id": 2158, "name": "has_pages", "kind": 1024, "kindString": "Property", @@ -57513,7 +59749,7 @@ } }, { - "id": 2057, + "id": 2156, "name": "has_projects", "kind": 1024, "kindString": "Property", @@ -57534,7 +59770,7 @@ } }, { - "id": 2058, + "id": 2157, "name": "has_wiki", "kind": 1024, "kindString": "Property", @@ -57555,7 +59791,7 @@ } }, { - "id": 2046, + "id": 2145, "name": "homepage", "kind": 1024, "kindString": "Property", @@ -57576,7 +59812,7 @@ } }, { - "id": 2044, + "id": 2143, "name": "hooks_url", "kind": 1024, "kindString": "Property", @@ -57597,7 +59833,7 @@ } }, { - "id": 2001, + "id": 2100, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -57618,7 +59854,7 @@ } }, { - "id": 1976, + "id": 2075, "name": "id", "kind": 1024, "kindString": "Property", @@ -57639,7 +59875,7 @@ } }, { - "id": 2054, + "id": 2153, "name": "is_template", "kind": 1024, "kindString": "Property", @@ -57660,7 +59896,7 @@ } }, { - "id": 2023, + "id": 2122, "name": "issue_comment_url", "kind": 1024, "kindString": "Property", @@ -57681,7 +59917,7 @@ } }, { - "id": 2024, + "id": 2123, "name": "issue_events_url", "kind": 1024, "kindString": "Property", @@ -57702,7 +59938,7 @@ } }, { - "id": 2025, + "id": 2124, "name": "issues_url", "kind": 1024, "kindString": "Property", @@ -57723,7 +59959,7 @@ } }, { - "id": 2026, + "id": 2125, "name": "keys_url", "kind": 1024, "kindString": "Property", @@ -57744,7 +59980,7 @@ } }, { - "id": 2027, + "id": 2126, "name": "labels_url", "kind": 1024, "kindString": "Property", @@ -57765,7 +60001,7 @@ } }, { - "id": 2047, + "id": 2146, "name": "language", "kind": 1024, "kindString": "Property", @@ -57786,7 +60022,7 @@ } }, { - "id": 2028, + "id": 2127, "name": "languages_url", "kind": 1024, "kindString": "Property", @@ -57807,7 +60043,7 @@ } }, { - "id": 2029, + "id": 2128, "name": "merges_url", "kind": 1024, "kindString": "Property", @@ -57828,7 +60064,7 @@ } }, { - "id": 2030, + "id": 2129, "name": "milestones_url", "kind": 1024, "kindString": "Property", @@ -57849,7 +60085,7 @@ } }, { - "id": 2043, + "id": 2142, "name": "mirror_url", "kind": 1024, "kindString": "Property", @@ -57870,7 +60106,7 @@ } }, { - "id": 1978, + "id": 2077, "name": "name", "kind": 1024, "kindString": "Property", @@ -57891,7 +60127,7 @@ } }, { - "id": 2078, + "id": 2177, "name": "network_count", "kind": 1024, "kindString": "Property", @@ -57912,7 +60148,7 @@ } }, { - "id": 1977, + "id": 2076, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -57933,7 +60169,7 @@ } }, { - "id": 2031, + "id": 2130, "name": "notifications_url", "kind": 1024, "kindString": "Property", @@ -57954,7 +60190,7 @@ } }, { - "id": 2053, + "id": 2152, "name": "open_issues_count", "kind": 1024, "kindString": "Property", @@ -57975,7 +60211,7 @@ } }, { - "id": 1980, + "id": 2079, "name": "owner", "kind": 1024, "kindString": "Property", @@ -57993,14 +60229,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1981, + "id": 2080, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1985, + "id": 2084, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -58021,7 +60257,7 @@ } }, { - "id": 1996, + "id": 2095, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -58042,7 +60278,7 @@ } }, { - "id": 1989, + "id": 2088, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -58063,7 +60299,7 @@ } }, { - "id": 1990, + "id": 2089, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -58084,7 +60320,7 @@ } }, { - "id": 1991, + "id": 2090, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -58105,7 +60341,7 @@ } }, { - "id": 1986, + "id": 2085, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -58126,7 +60362,7 @@ } }, { - "id": 1988, + "id": 2087, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -58147,7 +60383,7 @@ } }, { - "id": 1983, + "id": 2082, "name": "id", "kind": 1024, "kindString": "Property", @@ -58168,7 +60404,7 @@ } }, { - "id": 1982, + "id": 2081, "name": "login", "kind": 1024, "kindString": "Property", @@ -58189,7 +60425,7 @@ } }, { - "id": 1984, + "id": 2083, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -58210,7 +60446,7 @@ } }, { - "id": 1994, + "id": 2093, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -58231,7 +60467,7 @@ } }, { - "id": 1997, + "id": 2096, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -58252,7 +60488,7 @@ } }, { - "id": 1995, + "id": 2094, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -58273,7 +60509,7 @@ } }, { - "id": 1999, + "id": 2098, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -58294,7 +60530,7 @@ } }, { - "id": 1992, + "id": 2091, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -58315,7 +60551,7 @@ } }, { - "id": 1993, + "id": 2092, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -58336,7 +60572,7 @@ } }, { - "id": 1998, + "id": 2097, "name": "type", "kind": 1024, "kindString": "Property", @@ -58357,7 +60593,7 @@ } }, { - "id": 1987, + "id": 2086, "name": "url", "kind": 1024, "kindString": "Property", @@ -58383,24 +60619,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1985, - 1996, - 1989, - 1990, - 1991, - 1986, - 1988, - 1983, - 1982, - 1984, - 1994, - 1997, - 1995, - 1999, - 1992, - 1993, - 1998, - 1987 + 2084, + 2095, + 2088, + 2089, + 2090, + 2085, + 2087, + 2082, + 2081, + 2083, + 2093, + 2096, + 2094, + 2098, + 2091, + 2092, + 2097, + 2086 ] } ] @@ -58408,7 +60644,7 @@ } }, { - "id": 2067, + "id": 2166, "name": "permissions", "kind": 1024, "kindString": "Property", @@ -58426,14 +60662,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2068, + "id": 2167, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2069, + "id": 2168, "name": "admin", "kind": 1024, "kindString": "Property", @@ -58454,7 +60690,7 @@ } }, { - "id": 2071, + "id": 2170, "name": "pull", "kind": 1024, "kindString": "Property", @@ -58475,7 +60711,7 @@ } }, { - "id": 2070, + "id": 2169, "name": "push", "kind": 1024, "kindString": "Property", @@ -58501,9 +60737,9 @@ "title": "Properties", "kind": 1024, "children": [ - 2069, - 2071, - 2070 + 2168, + 2170, + 2169 ] } ] @@ -58511,7 +60747,7 @@ } }, { - "id": 2000, + "id": 2099, "name": "private", "kind": 1024, "kindString": "Property", @@ -58532,7 +60768,7 @@ } }, { - "id": 2032, + "id": 2131, "name": "pulls_url", "kind": 1024, "kindString": "Property", @@ -58553,7 +60789,7 @@ } }, { - "id": 2064, + "id": 2163, "name": "pushed_at", "kind": 1024, "kindString": "Property", @@ -58574,7 +60810,7 @@ } }, { - "id": 2033, + "id": 2132, "name": "releases_url", "kind": 1024, "kindString": "Property", @@ -58595,7 +60831,7 @@ } }, { - "id": 2051, + "id": 2150, "name": "size", "kind": 1024, "kindString": "Property", @@ -58616,7 +60852,7 @@ } }, { - "id": 2034, + "id": 2133, "name": "ssh_url", "kind": 1024, "kindString": "Property", @@ -58637,7 +60873,7 @@ } }, { - "id": 2049, + "id": 2148, "name": "stargazers_count", "kind": 1024, "kindString": "Property", @@ -58658,7 +60894,7 @@ } }, { - "id": 2035, + "id": 2134, "name": "stargazers_url", "kind": 1024, "kindString": "Property", @@ -58679,7 +60915,7 @@ } }, { - "id": 2036, + "id": 2135, "name": "statuses_url", "kind": 1024, "kindString": "Property", @@ -58700,7 +60936,7 @@ } }, { - "id": 2077, + "id": 2176, "name": "subscribers_count", "kind": 1024, "kindString": "Property", @@ -58721,7 +60957,7 @@ } }, { - "id": 2037, + "id": 2136, "name": "subscribers_url", "kind": 1024, "kindString": "Property", @@ -58742,7 +60978,7 @@ } }, { - "id": 2038, + "id": 2137, "name": "subscription_url", "kind": 1024, "kindString": "Property", @@ -58763,7 +60999,7 @@ } }, { - "id": 2045, + "id": 2144, "name": "svn_url", "kind": 1024, "kindString": "Property", @@ -58784,7 +61020,7 @@ } }, { - "id": 2039, + "id": 2138, "name": "tags_url", "kind": 1024, "kindString": "Property", @@ -58805,7 +61041,7 @@ } }, { - "id": 2040, + "id": 2139, "name": "teams_url", "kind": 1024, "kindString": "Property", @@ -58826,7 +61062,7 @@ } }, { - "id": 2073, + "id": 2172, "name": "temp_clone_token", "kind": 1024, "kindString": "Property", @@ -58847,7 +61083,7 @@ } }, { - "id": 2055, + "id": 2154, "name": "topics", "kind": 1024, "kindString": "Property", @@ -58871,7 +61107,7 @@ } }, { - "id": 2041, + "id": 2140, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -58892,7 +61128,7 @@ } }, { - "id": 2066, + "id": 2165, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -58913,7 +61149,7 @@ } }, { - "id": 2004, + "id": 2103, "name": "url", "kind": 1024, "kindString": "Property", @@ -58934,7 +61170,7 @@ } }, { - "id": 2063, + "id": 2162, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -58955,7 +61191,7 @@ } }, { - "id": 2050, + "id": 2149, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -58981,86 +61217,86 @@ "title": "Properties", "kind": 1024, "children": [ - 2076, - 2072, - 2074, - 2005, - 2061, - 2006, - 2007, - 2008, - 2042, - 2009, - 2010, - 2011, - 2012, - 2013, - 2014, - 2065, - 2052, - 2075, - 2015, - 2002, - 2062, - 2016, - 2017, - 2003, - 2048, - 2018, - 1979, - 2019, - 2020, - 2021, - 2022, - 2060, - 2056, - 2059, - 2057, - 2058, - 2046, - 2044, - 2001, - 1976, - 2054, - 2023, - 2024, - 2025, - 2026, - 2027, - 2047, - 2028, - 2029, - 2030, - 2043, - 1978, + 2175, + 2171, + 2173, + 2104, + 2160, + 2105, + 2106, + 2107, + 2141, + 2108, + 2109, + 2110, + 2111, + 2112, + 2113, + 2164, + 2151, + 2174, + 2114, + 2101, + 2161, + 2115, + 2116, + 2102, + 2147, + 2117, 2078, - 1977, - 2031, - 2053, - 1980, - 2067, - 2000, - 2032, - 2064, - 2033, - 2051, - 2034, - 2049, - 2035, - 2036, + 2118, + 2119, + 2120, + 2121, + 2159, + 2155, + 2158, + 2156, + 2157, + 2145, + 2143, + 2100, + 2075, + 2153, + 2122, + 2123, + 2124, + 2125, + 2126, + 2146, + 2127, + 2128, + 2129, + 2142, 2077, - 2037, - 2038, - 2045, - 2039, - 2040, - 2073, - 2055, - 2041, - 2066, - 2004, - 2063, - 2050 + 2177, + 2076, + 2130, + 2152, + 2079, + 2166, + 2099, + 2131, + 2163, + 2132, + 2150, + 2133, + 2148, + 2134, + 2135, + 2176, + 2136, + 2137, + 2144, + 2138, + 2139, + 2172, + 2154, + 2140, + 2165, + 2103, + 2162, + 2149 ] } ] @@ -59070,7 +61306,7 @@ } }, { - "id": 1961, + "id": 2060, "name": "topics", "kind": 1024, "kindString": "Property", @@ -59094,7 +61330,7 @@ } }, { - "id": 1947, + "id": 2046, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -59114,7 +61350,7 @@ } }, { - "id": 1972, + "id": 2071, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -59143,7 +61379,7 @@ } }, { - "id": 1910, + "id": 2009, "name": "url", "kind": 1024, "kindString": "Property", @@ -59163,7 +61399,7 @@ } }, { - "id": 1969, + "id": 2068, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -59187,7 +61423,7 @@ } }, { - "id": 2086, + "id": 2185, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -59207,7 +61443,7 @@ } }, { - "id": 1956, + "id": 2055, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -59232,94 +61468,94 @@ "title": "Properties", "kind": 1024, "children": [ - 2082, - 1973, - 2080, - 1911, - 1967, - 1912, - 1913, - 1914, - 1948, - 1915, - 1916, - 1917, - 1918, - 1919, - 1920, - 1971, - 1958, - 2081, - 1921, - 1908, - 1968, - 1922, - 1923, - 1909, - 1875, - 1954, - 1924, - 1843, - 1925, - 1926, - 1927, - 1928, - 1966, - 1962, - 1965, - 1963, - 1964, - 1952, - 1950, - 1907, - 1840, - 1960, - 1929, - 1930, - 1931, - 1932, - 1933, - 1953, - 1934, - 1844, - 2087, - 1935, - 1936, - 1949, - 1842, - 2084, - 1841, - 1937, - 2085, - 1959, - 1852, - 1883, - 1876, - 1906, - 1938, - 1970, - 1939, - 1957, - 1940, - 1955, - 1941, - 2088, + 2181, + 2072, + 2179, + 2010, + 2066, + 2011, + 2012, + 2013, + 2047, + 2014, + 2015, + 2016, + 2017, + 2018, + 2019, + 2070, + 2057, + 2180, + 2020, + 2007, + 2067, + 2021, + 2022, + 2008, + 1974, + 2053, + 2023, 1942, - 2083, + 2024, + 2025, + 2026, + 2027, + 2065, + 2061, + 2064, + 2062, + 2063, + 2051, + 2049, + 2006, + 1939, + 2059, + 2028, + 2029, + 2030, + 2031, + 2032, + 2052, + 2033, 1943, - 1944, + 2186, + 2034, + 2035, + 2048, + 1941, + 2183, + 1940, + 2036, + 2184, + 2058, 1951, - 1945, - 1946, - 2079, - 1974, - 1961, - 1947, - 1972, - 1910, - 1969, - 2086, - 1956 + 1982, + 1975, + 2005, + 2037, + 2069, + 2038, + 2056, + 2039, + 2054, + 2040, + 2187, + 2041, + 2182, + 2042, + 2043, + 2050, + 2044, + 2045, + 2178, + 2073, + 2060, + 2046, + 2071, + 2009, + 2068, + 2185, + 2055 ] } ] @@ -59329,7 +61565,7 @@ } }, { - "id": 1820, + "id": 1919, "name": "topics", "kind": 1024, "kindString": "Property", @@ -59353,7 +61589,7 @@ } }, { - "id": 1806, + "id": 1905, "name": "trees_url", "kind": 1024, "kindString": "Property", @@ -59373,7 +61609,7 @@ } }, { - "id": 1831, + "id": 1930, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -59393,7 +61629,7 @@ } }, { - "id": 1769, + "id": 1868, "name": "url", "kind": 1024, "kindString": "Property", @@ -59413,7 +61649,7 @@ } }, { - "id": 1828, + "id": 1927, "name": "visibility", "kind": 1024, "kindString": "Property", @@ -59437,7 +61673,7 @@ } }, { - "id": 2631, + "id": 2730, "name": "watchers", "kind": 1024, "kindString": "Property", @@ -59457,7 +61693,7 @@ } }, { - "id": 1815, + "id": 1914, "name": "watchers_count", "kind": 1024, "kindString": "Property", @@ -59482,98 +61718,98 @@ "title": "Properties", "kind": 1024, "children": [ - 2092, + 2191, + 1936, + 2189, + 2731, + 1869, + 1925, + 1870, + 1871, + 1872, + 1906, + 2732, + 1873, + 1874, + 1875, + 1876, + 1877, + 1878, + 1929, + 1916, + 2190, + 1879, + 1866, + 1926, + 1880, + 1881, + 1867, + 2727, + 1912, + 1882, + 1840, + 1883, + 1884, + 1885, + 1886, + 1924, + 1920, + 1923, + 1921, + 1922, + 1910, + 1908, + 1865, 1837, - 2090, - 2632, - 1770, - 1826, - 1771, - 1772, - 1773, - 1807, - 2633, - 1774, - 1775, - 1776, - 1777, - 1778, - 1779, - 1830, - 1817, - 2091, - 1780, - 1767, - 1827, - 1781, - 1782, - 1768, - 2628, - 1813, - 1783, - 1741, - 1784, - 1785, - 1786, - 1787, - 1825, - 1821, - 1824, - 1822, - 1823, - 1811, - 1809, - 1766, - 1738, - 1819, - 1788, - 1789, - 1790, - 1791, - 1792, - 1812, - 1793, - 2095, - 2629, - 1794, - 1795, - 1808, - 1740, - 2094, - 1739, - 1796, - 2630, - 1818, - 2103, - 1742, - 2126, - 1832, - 1765, - 1797, - 1829, - 1798, - 2639, - 1816, - 2377, - 1799, - 1814, - 1800, - 1801, - 2093, - 1802, - 1803, - 1810, - 1804, - 1805, - 2089, + 1918, + 1887, + 1888, + 1889, + 1890, + 1891, + 1911, + 1892, + 2194, + 2728, + 1893, + 1894, + 1907, + 1839, + 2193, 1838, - 1820, - 1806, - 1831, - 1769, - 1828, - 2631, - 1815 + 1895, + 2729, + 1917, + 2202, + 1841, + 2225, + 1931, + 1864, + 1896, + 1928, + 1897, + 2738, + 1915, + 2476, + 1898, + 1913, + 1899, + 1900, + 2192, + 1901, + 1902, + 1909, + 1903, + 1904, + 2188, + 1937, + 1919, + 1905, + 1930, + 1868, + 1927, + 2730, + 1914 ] } ] @@ -59581,7 +61817,7 @@ } }, { - "id": 1735, + "id": 1834, "name": "forks", "kind": 1024, "kindString": "Property", @@ -59598,12 +61834,12 @@ ], "type": { "type": "reference", - "id": 2895, + "id": 3093, "name": "ForkManager" } }, { - "id": 1734, + "id": 1833, "name": "id", "kind": 1024, "kindString": "Property", @@ -59624,7 +61860,7 @@ } }, { - "id": 2653, + "id": 2752, "name": "allowMergeCommit", "kind": 262144, "kindString": "Accessor", @@ -59640,7 +61876,7 @@ ], "getSignature": [ { - "id": 2654, + "id": 2753, "name": "allowMergeCommit", "kind": 524288, "kindString": "Get signature", @@ -59662,7 +61898,7 @@ ] }, { - "id": 2655, + "id": 2754, "name": "allowRebaseMerge", "kind": 262144, "kindString": "Accessor", @@ -59678,7 +61914,7 @@ ], "getSignature": [ { - "id": 2656, + "id": 2755, "name": "allowRebaseMerge", "kind": 524288, "kindString": "Get signature", @@ -59700,7 +61936,7 @@ ] }, { - "id": 2657, + "id": 2756, "name": "allowSquashMerge", "kind": 262144, "kindString": "Accessor", @@ -59716,7 +61952,7 @@ ], "getSignature": [ { - "id": 2658, + "id": 2757, "name": "allowSquashMerge", "kind": 524288, "kindString": "Get signature", @@ -59738,7 +61974,7 @@ ] }, { - "id": 2659, + "id": 2758, "name": "anonymusAccessEnabled", "kind": 262144, "kindString": "Accessor", @@ -59754,7 +61990,7 @@ ], "getSignature": [ { - "id": 2660, + "id": 2759, "name": "anonymusAccessEnabled", "kind": 524288, "kindString": "Get signature", @@ -59776,7 +62012,7 @@ ] }, { - "id": 2661, + "id": 2760, "name": "archiveUrl", "kind": 262144, "kindString": "Accessor", @@ -59792,7 +62028,7 @@ ], "getSignature": [ { - "id": 2662, + "id": 2761, "name": "archiveUrl", "kind": 524288, "kindString": "Get signature", @@ -59805,7 +62041,7 @@ ] }, { - "id": 2663, + "id": 2762, "name": "archived", "kind": 262144, "kindString": "Accessor", @@ -59821,7 +62057,7 @@ ], "getSignature": [ { - "id": 2664, + "id": 2763, "name": "archived", "kind": 524288, "kindString": "Get signature", @@ -59834,7 +62070,7 @@ ] }, { - "id": 2665, + "id": 2764, "name": "assigneesUrl", "kind": 262144, "kindString": "Accessor", @@ -59850,7 +62086,7 @@ ], "getSignature": [ { - "id": 2666, + "id": 2765, "name": "assigneesUrl", "kind": 524288, "kindString": "Get signature", @@ -59863,7 +62099,7 @@ ] }, { - "id": 2667, + "id": 2766, "name": "blobsUrl", "kind": 262144, "kindString": "Accessor", @@ -59879,7 +62115,7 @@ ], "getSignature": [ { - "id": 2668, + "id": 2767, "name": "blobsUrl", "kind": 524288, "kindString": "Get signature", @@ -59892,7 +62128,7 @@ ] }, { - "id": 2669, + "id": 2768, "name": "branchesUrl", "kind": 262144, "kindString": "Accessor", @@ -59908,7 +62144,7 @@ ], "getSignature": [ { - "id": 2670, + "id": 2769, "name": "branchesUrl", "kind": 524288, "kindString": "Get signature", @@ -59921,7 +62157,7 @@ ] }, { - "id": 2671, + "id": 2770, "name": "cloneUrl", "kind": 262144, "kindString": "Accessor", @@ -59937,7 +62173,7 @@ ], "getSignature": [ { - "id": 2672, + "id": 2771, "name": "cloneUrl", "kind": 524288, "kindString": "Get signature", @@ -59950,7 +62186,7 @@ ] }, { - "id": 2673, + "id": 2772, "name": "codeOfConduct", "kind": 262144, "kindString": "Accessor", @@ -59966,7 +62202,7 @@ ], "getSignature": [ { - "id": 2674, + "id": 2773, "name": "codeOfConduct", "kind": 524288, "kindString": "Get signature", @@ -59981,14 +62217,14 @@ { "type": "reflection", "declaration": { - "id": 2675, + "id": 2774, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2679, + "id": 2778, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -60017,7 +62253,7 @@ } }, { - "id": 2677, + "id": 2776, "name": "key", "kind": 1024, "kindString": "Property", @@ -60037,7 +62273,7 @@ } }, { - "id": 2678, + "id": 2777, "name": "name", "kind": 1024, "kindString": "Property", @@ -60057,7 +62293,7 @@ } }, { - "id": 2676, + "id": 2775, "name": "url", "kind": 1024, "kindString": "Property", @@ -60082,10 +62318,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2679, - 2677, - 2678, - 2676 + 2778, + 2776, + 2777, + 2775 ] } ] @@ -60097,7 +62333,7 @@ ] }, { - "id": 2680, + "id": 2779, "name": "collaboratorsUrl", "kind": 262144, "kindString": "Accessor", @@ -60113,7 +62349,7 @@ ], "getSignature": [ { - "id": 2681, + "id": 2780, "name": "collaboratorsUrl", "kind": 524288, "kindString": "Get signature", @@ -60126,7 +62362,7 @@ ] }, { - "id": 2682, + "id": 2781, "name": "commentsUrl", "kind": 262144, "kindString": "Accessor", @@ -60142,7 +62378,7 @@ ], "getSignature": [ { - "id": 2683, + "id": 2782, "name": "commentsUrl", "kind": 524288, "kindString": "Get signature", @@ -60155,7 +62391,7 @@ ] }, { - "id": 2684, + "id": 2783, "name": "commitsUrl", "kind": 262144, "kindString": "Accessor", @@ -60171,7 +62407,7 @@ ], "getSignature": [ { - "id": 2685, + "id": 2784, "name": "commitsUrl", "kind": 524288, "kindString": "Get signature", @@ -60184,7 +62420,7 @@ ] }, { - "id": 2686, + "id": 2785, "name": "compareUrl", "kind": 262144, "kindString": "Accessor", @@ -60200,7 +62436,7 @@ ], "getSignature": [ { - "id": 2687, + "id": 2786, "name": "compareUrl", "kind": 524288, "kindString": "Get signature", @@ -60213,7 +62449,7 @@ ] }, { - "id": 2688, + "id": 2787, "name": "contentsUrl", "kind": 262144, "kindString": "Accessor", @@ -60229,7 +62465,7 @@ ], "getSignature": [ { - "id": 2689, + "id": 2788, "name": "contentsUrl", "kind": 524288, "kindString": "Get signature", @@ -60242,7 +62478,7 @@ ] }, { - "id": 2690, + "id": 2789, "name": "contributorsUrl", "kind": 262144, "kindString": "Accessor", @@ -60258,7 +62494,7 @@ ], "getSignature": [ { - "id": 2691, + "id": 2790, "name": "contributorsUrl", "kind": 524288, "kindString": "Get signature", @@ -60271,7 +62507,7 @@ ] }, { - "id": 2692, + "id": 2791, "name": "createdAt", "kind": 262144, "kindString": "Accessor", @@ -60287,7 +62523,7 @@ ], "getSignature": [ { - "id": 2693, + "id": 2792, "name": "createdAt", "kind": 524288, "kindString": "Get signature", @@ -60300,7 +62536,7 @@ ] }, { - "id": 2694, + "id": 2793, "name": "defaultBranch", "kind": 262144, "kindString": "Accessor", @@ -60316,7 +62552,7 @@ ], "getSignature": [ { - "id": 2695, + "id": 2794, "name": "defaultBranch", "kind": 524288, "kindString": "Get signature", @@ -60329,7 +62565,7 @@ ] }, { - "id": 2649, + "id": 2748, "name": "fork", "kind": 262144, "kindString": "Accessor", @@ -60345,7 +62581,7 @@ ], "getSignature": [ { - "id": 2650, + "id": 2749, "name": "fork", "kind": 524288, "kindString": "Get signature", @@ -60358,7 +62594,7 @@ ] }, { - "id": 2647, + "id": 2746, "name": "forkCount", "kind": 262144, "kindString": "Accessor", @@ -60374,7 +62610,7 @@ ], "getSignature": [ { - "id": 2648, + "id": 2747, "name": "forkCount", "kind": 524288, "kindString": "Get signature", @@ -60387,7 +62623,7 @@ ] }, { - "id": 2651, + "id": 2750, "name": "fullName", "kind": 262144, "kindString": "Accessor", @@ -60403,7 +62639,7 @@ ], "getSignature": [ { - "id": 2652, + "id": 2751, "name": "fullName", "kind": 524288, "kindString": "Get signature", @@ -60421,45 +62657,45 @@ "title": "Constructors", "kind": 512, "children": [ - 820 + 919 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2696, - 1736, - 1735, - 1734 + 2795, + 1835, + 1834, + 1833 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2653, - 2655, - 2657, - 2659, - 2661, - 2663, - 2665, - 2667, - 2669, - 2671, - 2673, - 2680, - 2682, - 2684, - 2686, - 2688, - 2690, - 2692, - 2694, - 2649, - 2647, - 2651 + 2752, + 2754, + 2756, + 2758, + 2760, + 2762, + 2764, + 2766, + 2768, + 2770, + 2772, + 2779, + 2781, + 2783, + 2785, + 2787, + 2789, + 2791, + 2793, + 2748, + 2746, + 2750 ] } ], @@ -60479,28 +62715,28 @@ ] }, { - "id": 2913, + "id": 3111, "name": "RepoManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2914, + "id": 3112, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2915, + "id": 3113, "name": "new RepoManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2916, + "id": 3114, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -60508,14 +62744,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2917, + "id": 3115, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2918, + "id": 3116, "name": "client", "kind": 1024, "kindString": "Property", @@ -60534,7 +62770,7 @@ } }, { - "id": 2919, + "id": 3117, "name": "url", "kind": 1024, "kindString": "Property", @@ -60557,8 +62793,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2918, - 2919 + 3116, + 3117 ] } ] @@ -60568,24 +62804,24 @@ ], "type": { "type": "reference", - "id": 2913, + "id": 3111, "name": "RepoManager" }, "overwrites": { "type": "reference", - "id": 2834, + "id": 3032, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2833, + "id": 3031, "name": "Manager.constructor" } }, { - "id": 2920, + "id": 3118, "name": "client", "kind": 1024, "kindString": "Property", @@ -60604,12 +62840,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 3037, "name": "Manager.client" } }, { - "id": 2921, + "id": 3119, "name": "url", "kind": 1024, "kindString": "Property", @@ -60629,7 +62865,7 @@ }, "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 3038, "name": "Manager.url" } } @@ -60639,15 +62875,15 @@ "title": "Constructors", "kind": 512, "children": [ - 2914 + 3112 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2920, - 2921 + 3118, + 3119 ] } ], @@ -60661,13 +62897,13 @@ "extendedTypes": [ { "type": "reference", - "id": 2832, + "id": 3030, "name": "Manager" } ] }, { - "id": 2697, + "id": 2796, "name": "User", "kind": 128, "kindString": "Class", @@ -60677,21 +62913,21 @@ }, "children": [ { - "id": 2698, + "id": 2797, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2699, + "id": 2798, "name": "new User", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2700, + "id": 2799, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -60702,14 +62938,14 @@ { "type": "reflection", "declaration": { - "id": 2701, + "id": 2800, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2705, + "id": 2804, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -60729,7 +62965,7 @@ } }, { - "id": 2726, + "id": 2825, "name": "bio", "kind": 1024, "kindString": "Property", @@ -60758,7 +62994,7 @@ } }, { - "id": 2722, + "id": 2821, "name": "blog", "kind": 1024, "kindString": "Property", @@ -60787,7 +63023,7 @@ } }, { - "id": 2747, + "id": 2846, "name": "business_plus", "kind": 1024, "kindString": "Property", @@ -60808,7 +63044,7 @@ } }, { - "id": 2738, + "id": 2837, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -60828,7 +63064,7 @@ } }, { - "id": 2721, + "id": 2820, "name": "company", "kind": 1024, "kindString": "Property", @@ -60857,7 +63093,7 @@ } }, { - "id": 2732, + "id": 2831, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -60877,7 +63113,7 @@ } }, { - "id": 2737, + "id": 2836, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -60897,7 +63133,7 @@ } }, { - "id": 2724, + "id": 2823, "name": "email", "kind": 1024, "kindString": "Property", @@ -60926,7 +63162,7 @@ } }, { - "id": 2716, + "id": 2815, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -60946,7 +63182,7 @@ } }, { - "id": 2730, + "id": 2829, "name": "followers", "kind": 1024, "kindString": "Property", @@ -60966,7 +63202,7 @@ } }, { - "id": 2709, + "id": 2808, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -60986,7 +63222,7 @@ } }, { - "id": 2731, + "id": 2830, "name": "following", "kind": 1024, "kindString": "Property", @@ -61006,7 +63242,7 @@ } }, { - "id": 2710, + "id": 2809, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -61026,7 +63262,7 @@ } }, { - "id": 2711, + "id": 2810, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -61046,7 +63282,7 @@ } }, { - "id": 2706, + "id": 2805, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -61075,7 +63311,7 @@ } }, { - "id": 2725, + "id": 2824, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -61104,7 +63340,7 @@ } }, { - "id": 2708, + "id": 2807, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -61124,7 +63360,7 @@ } }, { - "id": 2703, + "id": 2802, "name": "id", "kind": 1024, "kindString": "Property", @@ -61144,7 +63380,7 @@ } }, { - "id": 2748, + "id": 2847, "name": "ldap_dn", "kind": 1024, "kindString": "Property", @@ -61165,7 +63401,7 @@ } }, { - "id": 2723, + "id": 2822, "name": "location", "kind": 1024, "kindString": "Property", @@ -61194,7 +63430,7 @@ } }, { - "id": 2702, + "id": 2801, "name": "login", "kind": 1024, "kindString": "Property", @@ -61214,7 +63450,7 @@ } }, { - "id": 2720, + "id": 2819, "name": "name", "kind": 1024, "kindString": "Property", @@ -61243,7 +63479,7 @@ } }, { - "id": 2704, + "id": 2803, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -61263,7 +63499,7 @@ } }, { - "id": 2714, + "id": 2813, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -61283,7 +63519,7 @@ } }, { - "id": 2736, + "id": 2835, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -61303,7 +63539,7 @@ } }, { - "id": 2740, + "id": 2839, "name": "plan", "kind": 1024, "kindString": "Property", @@ -61321,14 +63557,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2741, + "id": 2840, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2742, + "id": 2841, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -61348,7 +63584,7 @@ } }, { - "id": 2743, + "id": 2842, "name": "name", "kind": 1024, "kindString": "Property", @@ -61368,7 +63604,7 @@ } }, { - "id": 2745, + "id": 2844, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -61388,7 +63624,7 @@ } }, { - "id": 2744, + "id": 2843, "name": "space", "kind": 1024, "kindString": "Property", @@ -61413,10 +63649,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2742, - 2743, - 2745, - 2744 + 2841, + 2842, + 2844, + 2843 ] } ] @@ -61424,7 +63660,7 @@ } }, { - "id": 2734, + "id": 2833, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -61444,7 +63680,7 @@ } }, { - "id": 2729, + "id": 2828, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -61464,7 +63700,7 @@ } }, { - "id": 2728, + "id": 2827, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -61484,7 +63720,7 @@ } }, { - "id": 2717, + "id": 2816, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -61504,7 +63740,7 @@ } }, { - "id": 2715, + "id": 2814, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -61524,7 +63760,7 @@ } }, { - "id": 2719, + "id": 2818, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -61544,7 +63780,7 @@ } }, { - "id": 2712, + "id": 2811, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -61564,7 +63800,7 @@ } }, { - "id": 2713, + "id": 2812, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -61584,7 +63820,7 @@ } }, { - "id": 2746, + "id": 2845, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -61614,7 +63850,7 @@ } }, { - "id": 2735, + "id": 2834, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -61634,7 +63870,7 @@ } }, { - "id": 2727, + "id": 2826, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -61664,7 +63900,7 @@ } }, { - "id": 2739, + "id": 2838, "name": "two_factor_authentication", "kind": 1024, "kindString": "Property", @@ -61684,7 +63920,7 @@ } }, { - "id": 2718, + "id": 2817, "name": "type", "kind": 1024, "kindString": "Property", @@ -61704,7 +63940,7 @@ } }, { - "id": 2733, + "id": 2832, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -61724,7 +63960,7 @@ } }, { - "id": 2707, + "id": 2806, "name": "url", "kind": 1024, "kindString": "Property", @@ -61749,48 +63985,48 @@ "title": "Properties", "kind": 1024, "children": [ - 2705, - 2726, - 2722, - 2747, - 2738, - 2721, - 2732, - 2737, - 2724, - 2716, - 2730, - 2709, - 2731, - 2710, - 2711, - 2706, - 2725, - 2708, - 2703, - 2748, - 2723, - 2702, - 2720, - 2704, - 2714, - 2736, - 2740, - 2734, - 2729, - 2728, - 2717, - 2715, - 2719, - 2712, - 2713, - 2746, - 2735, - 2727, - 2739, - 2718, - 2733, - 2707 + 2804, + 2825, + 2821, + 2846, + 2837, + 2820, + 2831, + 2836, + 2823, + 2815, + 2829, + 2808, + 2830, + 2809, + 2810, + 2805, + 2824, + 2807, + 2802, + 2847, + 2822, + 2801, + 2819, + 2803, + 2813, + 2835, + 2839, + 2833, + 2828, + 2827, + 2816, + 2814, + 2818, + 2811, + 2812, + 2845, + 2834, + 2826, + 2838, + 2817, + 2832, + 2806 ] } ] @@ -61799,14 +64035,14 @@ { "type": "reflection", "declaration": { - "id": 2749, + "id": 2848, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2753, + "id": 2852, "name": "avatar_url", "kind": 1024, "kindString": "Property", @@ -61826,7 +64062,7 @@ } }, { - "id": 2774, + "id": 2873, "name": "bio", "kind": 1024, "kindString": "Property", @@ -61855,7 +64091,7 @@ } }, { - "id": 2770, + "id": 2869, "name": "blog", "kind": 1024, "kindString": "Property", @@ -61884,7 +64120,7 @@ } }, { - "id": 2793, + "id": 2892, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -61905,7 +64141,7 @@ } }, { - "id": 2769, + "id": 2868, "name": "company", "kind": 1024, "kindString": "Property", @@ -61934,7 +64170,7 @@ } }, { - "id": 2780, + "id": 2879, "name": "created_at", "kind": 1024, "kindString": "Property", @@ -61954,7 +64190,7 @@ } }, { - "id": 2792, + "id": 2891, "name": "disk_usage", "kind": 1024, "kindString": "Property", @@ -61975,7 +64211,7 @@ } }, { - "id": 2772, + "id": 2871, "name": "email", "kind": 1024, "kindString": "Property", @@ -62004,7 +64240,7 @@ } }, { - "id": 2764, + "id": 2863, "name": "events_url", "kind": 1024, "kindString": "Property", @@ -62024,7 +64260,7 @@ } }, { - "id": 2778, + "id": 2877, "name": "followers", "kind": 1024, "kindString": "Property", @@ -62044,7 +64280,7 @@ } }, { - "id": 2757, + "id": 2856, "name": "followers_url", "kind": 1024, "kindString": "Property", @@ -62064,7 +64300,7 @@ } }, { - "id": 2779, + "id": 2878, "name": "following", "kind": 1024, "kindString": "Property", @@ -62084,7 +64320,7 @@ } }, { - "id": 2758, + "id": 2857, "name": "following_url", "kind": 1024, "kindString": "Property", @@ -62104,7 +64340,7 @@ } }, { - "id": 2759, + "id": 2858, "name": "gists_url", "kind": 1024, "kindString": "Property", @@ -62124,7 +64360,7 @@ } }, { - "id": 2754, + "id": 2853, "name": "gravatar_id", "kind": 1024, "kindString": "Property", @@ -62153,7 +64389,7 @@ } }, { - "id": 2773, + "id": 2872, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -62182,7 +64418,7 @@ } }, { - "id": 2756, + "id": 2855, "name": "html_url", "kind": 1024, "kindString": "Property", @@ -62202,7 +64438,7 @@ } }, { - "id": 2751, + "id": 2850, "name": "id", "kind": 1024, "kindString": "Property", @@ -62222,7 +64458,7 @@ } }, { - "id": 2771, + "id": 2870, "name": "location", "kind": 1024, "kindString": "Property", @@ -62251,7 +64487,7 @@ } }, { - "id": 2750, + "id": 2849, "name": "login", "kind": 1024, "kindString": "Property", @@ -62271,7 +64507,7 @@ } }, { - "id": 2768, + "id": 2867, "name": "name", "kind": 1024, "kindString": "Property", @@ -62300,7 +64536,7 @@ } }, { - "id": 2752, + "id": 2851, "name": "node_id", "kind": 1024, "kindString": "Property", @@ -62320,7 +64556,7 @@ } }, { - "id": 2762, + "id": 2861, "name": "organizations_url", "kind": 1024, "kindString": "Property", @@ -62340,7 +64576,7 @@ } }, { - "id": 2791, + "id": 2890, "name": "owned_private_repos", "kind": 1024, "kindString": "Property", @@ -62361,7 +64597,7 @@ } }, { - "id": 2782, + "id": 2881, "name": "plan", "kind": 1024, "kindString": "Property", @@ -62379,14 +64615,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2783, + "id": 2882, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2784, + "id": 2883, "name": "collaborators", "kind": 1024, "kindString": "Property", @@ -62406,7 +64642,7 @@ } }, { - "id": 2785, + "id": 2884, "name": "name", "kind": 1024, "kindString": "Property", @@ -62426,7 +64662,7 @@ } }, { - "id": 2787, + "id": 2886, "name": "private_repos", "kind": 1024, "kindString": "Property", @@ -62446,7 +64682,7 @@ } }, { - "id": 2786, + "id": 2885, "name": "space", "kind": 1024, "kindString": "Property", @@ -62471,10 +64707,10 @@ "title": "Properties", "kind": 1024, "children": [ - 2784, - 2785, - 2787, - 2786 + 2883, + 2884, + 2886, + 2885 ] } ] @@ -62482,7 +64718,7 @@ } }, { - "id": 2789, + "id": 2888, "name": "private_gists", "kind": 1024, "kindString": "Property", @@ -62503,7 +64739,7 @@ } }, { - "id": 2777, + "id": 2876, "name": "public_gists", "kind": 1024, "kindString": "Property", @@ -62523,7 +64759,7 @@ } }, { - "id": 2776, + "id": 2875, "name": "public_repos", "kind": 1024, "kindString": "Property", @@ -62543,7 +64779,7 @@ } }, { - "id": 2765, + "id": 2864, "name": "received_events_url", "kind": 1024, "kindString": "Property", @@ -62563,7 +64799,7 @@ } }, { - "id": 2763, + "id": 2862, "name": "repos_url", "kind": 1024, "kindString": "Property", @@ -62583,7 +64819,7 @@ } }, { - "id": 2767, + "id": 2866, "name": "site_admin", "kind": 1024, "kindString": "Property", @@ -62603,7 +64839,7 @@ } }, { - "id": 2760, + "id": 2859, "name": "starred_url", "kind": 1024, "kindString": "Property", @@ -62623,7 +64859,7 @@ } }, { - "id": 2761, + "id": 2860, "name": "subscriptions_url", "kind": 1024, "kindString": "Property", @@ -62643,7 +64879,7 @@ } }, { - "id": 2788, + "id": 2887, "name": "suspended_at", "kind": 1024, "kindString": "Property", @@ -62673,7 +64909,7 @@ } }, { - "id": 2790, + "id": 2889, "name": "total_private_repos", "kind": 1024, "kindString": "Property", @@ -62694,7 +64930,7 @@ } }, { - "id": 2775, + "id": 2874, "name": "twitter_username", "kind": 1024, "kindString": "Property", @@ -62724,7 +64960,7 @@ } }, { - "id": 2766, + "id": 2865, "name": "type", "kind": 1024, "kindString": "Property", @@ -62744,7 +64980,7 @@ } }, { - "id": 2781, + "id": 2880, "name": "updated_at", "kind": 1024, "kindString": "Property", @@ -62764,7 +65000,7 @@ } }, { - "id": 2755, + "id": 2854, "name": "url", "kind": 1024, "kindString": "Property", @@ -62789,45 +65025,45 @@ "title": "Properties", "kind": 1024, "children": [ - 2753, - 2774, - 2770, - 2793, - 2769, - 2780, - 2792, - 2772, - 2764, - 2778, - 2757, - 2779, - 2758, - 2759, - 2754, - 2773, - 2756, - 2751, - 2771, - 2750, - 2768, - 2752, - 2762, - 2791, - 2782, - 2789, - 2777, - 2776, - 2765, - 2763, - 2767, - 2760, - 2761, - 2788, - 2790, - 2775, - 2766, - 2781, - 2755 + 2852, + 2873, + 2869, + 2892, + 2868, + 2879, + 2891, + 2871, + 2863, + 2877, + 2856, + 2878, + 2857, + 2858, + 2853, + 2872, + 2855, + 2850, + 2870, + 2849, + 2867, + 2851, + 2861, + 2890, + 2881, + 2888, + 2876, + 2875, + 2864, + 2862, + 2866, + 2859, + 2860, + 2887, + 2889, + 2874, + 2865, + 2880, + 2854 ] } ] @@ -62836,20 +65072,20 @@ { "type": "reflection", "declaration": { - "id": 2794, + "id": 2893, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": { - "id": 2795, + "id": 2894, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 2796, + "id": 2895, "name": "key", "kind": 32768, "flags": {}, @@ -62870,7 +65106,7 @@ } }, { - "id": 2797, + "id": 2896, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -62878,14 +65114,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2798, + "id": 2897, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2799, + "id": 2898, "name": "client", "kind": 1024, "kindString": "Property", @@ -62909,7 +65145,7 @@ "title": "Properties", "kind": 1024, "children": [ - 2799 + 2898 ] } ] @@ -62919,14 +65155,14 @@ ], "type": { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } } ] }, { - "id": 2804, + "id": 2903, "name": "avatarUrl", "kind": 1024, "kindString": "Property", @@ -62944,7 +65180,7 @@ } }, { - "id": 2824, + "id": 2923, "name": "bio", "kind": 1024, "kindString": "Property", @@ -62964,7 +65200,7 @@ } }, { - "id": 2820, + "id": 2919, "name": "blog", "kind": 1024, "kindString": "Property", @@ -62984,7 +65220,7 @@ } }, { - "id": 2800, + "id": 2899, "name": "client", "kind": 1024, "kindString": "Property", @@ -63017,7 +65253,7 @@ } }, { - "id": 2819, + "id": 2918, "name": "company", "kind": 1024, "kindString": "Property", @@ -63037,7 +65273,7 @@ } }, { - "id": 2830, + "id": 2929, "name": "createdAt", "kind": 1024, "kindString": "Property", @@ -63057,7 +65293,7 @@ } }, { - "id": 2822, + "id": 2921, "name": "email", "kind": 1024, "kindString": "Property", @@ -63086,7 +65322,7 @@ } }, { - "id": 2815, + "id": 2914, "name": "eventsUrl", "kind": 1024, "kindString": "Property", @@ -63106,7 +65342,7 @@ } }, { - "id": 2828, + "id": 2927, "name": "followers", "kind": 1024, "kindString": "Property", @@ -63126,7 +65362,7 @@ } }, { - "id": 2809, + "id": 2908, "name": "followersUrl", "kind": 1024, "kindString": "Property", @@ -63146,7 +65382,7 @@ } }, { - "id": 2829, + "id": 2928, "name": "following", "kind": 1024, "kindString": "Property", @@ -63166,7 +65402,7 @@ } }, { - "id": 2808, + "id": 2907, "name": "followingUrl", "kind": 1024, "kindString": "Property", @@ -63186,7 +65422,7 @@ } }, { - "id": 2810, + "id": 2909, "name": "gistsUrl", "kind": 1024, "kindString": "Property", @@ -63206,7 +65442,7 @@ } }, { - "id": 2805, + "id": 2904, "name": "gravatarId", "kind": 1024, "kindString": "Property", @@ -63224,7 +65460,7 @@ } }, { - "id": 2823, + "id": 2922, "name": "hireable", "kind": 1024, "kindString": "Property", @@ -63253,7 +65489,7 @@ } }, { - "id": 2807, + "id": 2906, "name": "htmlUrl", "kind": 1024, "kindString": "Property", @@ -63271,7 +65507,7 @@ } }, { - "id": 2802, + "id": 2901, "name": "id", "kind": 1024, "kindString": "Property", @@ -63289,7 +65525,7 @@ } }, { - "id": 2821, + "id": 2920, "name": "location", "kind": 1024, "kindString": "Property", @@ -63309,7 +65545,7 @@ } }, { - "id": 2801, + "id": 2900, "name": "login", "kind": 1024, "kindString": "Property", @@ -63327,7 +65563,7 @@ } }, { - "id": 2803, + "id": 2902, "name": "nodeId", "kind": 1024, "kindString": "Property", @@ -63345,7 +65581,7 @@ } }, { - "id": 2813, + "id": 2912, "name": "organizationsUrl", "kind": 1024, "kindString": "Property", @@ -63365,7 +65601,7 @@ } }, { - "id": 2827, + "id": 2926, "name": "publicGists", "kind": 1024, "kindString": "Property", @@ -63385,7 +65621,7 @@ } }, { - "id": 2826, + "id": 2925, "name": "publicRepos", "kind": 1024, "kindString": "Property", @@ -63405,7 +65641,7 @@ } }, { - "id": 2816, + "id": 2915, "name": "receivedEventsUrl", "kind": 1024, "kindString": "Property", @@ -63425,7 +65661,7 @@ } }, { - "id": 2814, + "id": 2913, "name": "reposUrl", "kind": 1024, "kindString": "Property", @@ -63445,7 +65681,7 @@ } }, { - "id": 2818, + "id": 2917, "name": "siteAdmin", "kind": 1024, "kindString": "Property", @@ -63465,7 +65701,7 @@ } }, { - "id": 2811, + "id": 2910, "name": "starredUrl", "kind": 1024, "kindString": "Property", @@ -63485,7 +65721,7 @@ } }, { - "id": 2812, + "id": 2911, "name": "subscriptionsUrl", "kind": 1024, "kindString": "Property", @@ -63505,7 +65741,7 @@ } }, { - "id": 2825, + "id": 2924, "name": "twitterUsername", "kind": 1024, "kindString": "Property", @@ -63530,66 +65766,2291 @@ "type": "intrinsic", "name": "string" } - ] - } - }, - { - "id": 2817, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/structures/user.ts", - "line": 30, - "character": 6 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2831, - "name": "updatedAt", - "kind": 1024, - "kindString": "Property", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/structures/user.ts", - "line": 44, - "character": 11 - } - ], - "type": { - "type": "intrinsic", - "name": "string" - } - }, - { - "id": 2806, - "name": "url", - "kind": 1024, - "kindString": "Property", - "flags": {}, - "sources": [ - { - "fileName": "src/structures/user.ts", - "line": 19, - "character": 5 + ] + } + }, + { + "id": 2916, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 30, + "character": 6 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2930, + "name": "updatedAt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isOptional": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 44, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2905, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": {}, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 19, + "character": 5 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2931, + "name": "_patch", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPublic": true + }, + "sources": [ + { + "fileName": "src/structures/user.ts", + "line": 80, + "character": 15 + } + ], + "signatures": [ + { + "id": 2932, + "name": "_patch", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2933, + "name": "data", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "union", + "types": [ + { + "type": "reflection", + "declaration": { + "id": 2934, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2938, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10671, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2959, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10692, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2955, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10688, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2980, + "name": "business_plus", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10713, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2971, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10704, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2954, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10687, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2965, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10698, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2970, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10703, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2957, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10690, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2949, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10682, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2963, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10696, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2942, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10675, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2964, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10697, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2943, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10676, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2944, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10677, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2939, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10672, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2958, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10691, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 2941, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10674, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2936, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10669, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2981, + "name": "ldap_dn", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10714, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2956, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10689, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2935, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10668, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2953, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10686, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2937, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10670, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2947, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10680, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2969, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10702, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2973, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10706, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 2974, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2975, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10707, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2976, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10708, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2978, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10710, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2977, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10709, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2975, + 2976, + 2978, + 2977 + ] + } + ] + } + } + }, + { + "id": 2967, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10700, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2962, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10695, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2961, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10694, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2950, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10683, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2948, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10681, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2952, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10685, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2945, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10678, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2946, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10679, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2979, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10712, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2968, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10701, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2960, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10693, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2972, + "name": "two_factor_authentication", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10705, + "character": 31 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2951, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10684, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2966, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10699, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2940, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 10673, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2938, + 2959, + 2955, + 2980, + 2971, + 2954, + 2965, + 2970, + 2957, + 2949, + 2963, + 2942, + 2964, + 2943, + 2944, + 2939, + 2958, + 2941, + 2936, + 2981, + 2956, + 2935, + 2953, + 2937, + 2947, + 2969, + 2973, + 2967, + 2962, + 2961, + 2950, + 2948, + 2952, + 2945, + 2946, + 2979, + 2968, + 2960, + 2972, + 2951, + 2966, + 2940 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 2982, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2986, + "name": "avatar_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6227, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3007, + "name": "bio", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6248, + "character": 9 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3003, + "name": "blog", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6244, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3026, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6267, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3002, + "name": "company", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6243, + "character": 13 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3013, + "name": "created_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6254, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3025, + "name": "disk_usage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6266, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3005, + "name": "email", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6246, + "character": 11 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2997, + "name": "events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6238, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3011, + "name": "followers", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6252, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2990, + "name": "followers_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6231, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3012, + "name": "following", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6253, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2991, + "name": "following_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6232, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2992, + "name": "gists_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6233, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2987, + "name": "gravatar_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6228, + "character": 17 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3006, + "name": "hireable", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6247, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "boolean" + } + ] + } + }, + { + "id": 2989, + "name": "html_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6230, + "character": 14 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2984, + "name": "id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6225, + "character": 8 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3004, + "name": "location", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6245, + "character": 14 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2983, + "name": "login", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6224, + "character": 11 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3001, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6242, + "character": 10 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2985, + "name": "node_id", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6226, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2995, + "name": "organizations_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6236, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3024, + "name": "owned_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6265, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3015, + "name": "plan", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6256, + "character": 10 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 3016, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 3017, + "name": "collaborators", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6257, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3018, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6258, + "character": 12 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3020, + "name": "private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6260, + "character": 21 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3019, + "name": "space", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6259, + "character": 13 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 3017, + 3018, + 3020, + 3019 + ] + } + ] + } + } + }, + { + "id": 3022, + "name": "private_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6263, + "character": 19 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3010, + "name": "public_gists", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6251, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3009, + "name": "public_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6250, + "character": 18 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 2998, + "name": "received_events_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6239, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2996, + "name": "repos_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6237, + "character": 15 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3000, + "name": "site_admin", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6241, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "boolean" + } + }, + { + "id": 2993, + "name": "starred_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6234, + "character": 17 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2994, + "name": "subscriptions_url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6235, + "character": 23 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3021, + "name": "suspended_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6262, + "character": 18 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 3023, + "name": "total_private_repos", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6264, + "character": 25 + } + ], + "type": { + "type": "intrinsic", + "name": "number" + } + }, + { + "id": 3008, + "name": "twitter_username", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true, + "isOptional": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6249, + "character": 22 + } + ], + "type": { + "type": "union", + "types": [ + { + "type": "literal", + "value": null + }, + { + "type": "intrinsic", + "name": "string" + } + ] + } + }, + { + "id": 2999, + "name": "type", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6240, + "character": 10 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 3014, + "name": "updated_at", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6255, + "character": 16 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + }, + { + "id": 2988, + "name": "url", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/@octokit/openapi-types/types.d.ts", + "line": 6229, + "character": 9 + } + ], + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 2986, + 3007, + 3003, + 3026, + 3002, + 3013, + 3025, + 3005, + 2997, + 3011, + 2990, + 3012, + 2991, + 2992, + 2987, + 3006, + 2989, + 2984, + 3004, + 2983, + 3001, + 2985, + 2995, + 3024, + 3015, + 3022, + 3010, + 3009, + 2998, + 2996, + 3000, + 2993, + 2994, + 3021, + 3023, + 3008, + 2999, + 3014, + 2988 + ] + } + ] + } + }, + { + "type": "reflection", + "declaration": { + "id": 3027, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "indexSignature": { + "id": 3028, + "name": "__index", + "kind": 8192, + "kindString": "Index signature", + "flags": {}, + "parameters": [ + { + "id": 3029, + "name": "key", + "kind": 32768, + "flags": {}, + "type": { + "type": "intrinsic", + "name": "string" + } + } + ], + "type": { + "type": "intrinsic", + "name": "any" + } + } + } + }, + { + "type": "reference", + "typeArguments": [ + { + "type": "intrinsic", + "name": "string" + }, + { + "type": "intrinsic", + "name": "unknown" + } + ], + "name": "Record" + } + ] + } + } + ], + "type": { + "type": "reference", + "id": 2796, + "name": "User" + } } - ], - "type": { - "type": "intrinsic", - "name": "string" - } + ] } ], "groups": [ @@ -63597,45 +68058,52 @@ "title": "Constructors", "kind": 512, "children": [ - 2698 + 2797 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2804, - 2824, - 2820, - 2800, - 2819, - 2830, - 2822, - 2815, - 2828, - 2809, - 2829, - 2808, - 2810, - 2805, - 2823, - 2807, - 2802, - 2821, - 2801, - 2803, - 2813, - 2827, - 2826, - 2816, - 2814, - 2818, - 2811, - 2812, - 2825, - 2817, - 2831, - 2806 + 2903, + 2923, + 2919, + 2899, + 2918, + 2929, + 2921, + 2914, + 2927, + 2908, + 2928, + 2907, + 2909, + 2904, + 2922, + 2906, + 2901, + 2920, + 2900, + 2902, + 2912, + 2926, + 2925, + 2915, + 2913, + 2917, + 2910, + 2911, + 2924, + 2916, + 2930, + 2905 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2931 ] } ], @@ -63655,28 +68123,28 @@ ] }, { - "id": 2922, + "id": 3120, "name": "UserManager", "kind": 128, "kindString": "Class", "flags": {}, "children": [ { - "id": 2923, + "id": 3121, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": {}, "signatures": [ { - "id": 2924, + "id": 3122, "name": "new UserManager", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2925, + "id": 3123, "name": "__namedParameters", "kind": 32768, "kindString": "Parameter", @@ -63684,14 +68152,14 @@ "type": { "type": "reflection", "declaration": { - "id": 2926, + "id": 3124, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2927, + "id": 3125, "name": "client", "kind": 1024, "kindString": "Property", @@ -63710,7 +68178,7 @@ } }, { - "id": 2928, + "id": 3126, "name": "url", "kind": 1024, "kindString": "Property", @@ -63735,8 +68203,8 @@ "title": "Properties", "kind": 1024, "children": [ - 2927, - 2928 + 3125, + 3126 ] } ] @@ -63746,24 +68214,24 @@ ], "type": { "type": "reference", - "id": 2922, + "id": 3120, "name": "UserManager" }, "overwrites": { "type": "reference", - "id": 2834, + "id": 3032, "name": "Manager.constructor" } } ], "overwrites": { "type": "reference", - "id": 2833, + "id": 3031, "name": "Manager.constructor" } }, { - "id": 2933, + "id": 3131, "name": "client", "kind": 1024, "kindString": "Property", @@ -63782,12 +68250,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2839, + "id": 3037, "name": "Manager.client" } }, { - "id": 2934, + "id": 3132, "name": "url", "kind": 1024, "kindString": "Property", @@ -63807,12 +68275,12 @@ }, "inheritedFrom": { "type": "reference", - "id": 2840, + "id": 3038, "name": "Manager.url" } }, { - "id": 2929, + "id": 3127, "name": "fetch", "kind": 2048, "kindString": "Method", @@ -63828,14 +68296,14 @@ ], "signatures": [ { - "id": 2930, + "id": 3128, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2931, + "id": 3129, "name": "username", "kind": 32768, "kindString": "Parameter", @@ -63846,7 +68314,7 @@ } }, { - "id": 2932, + "id": 3130, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -63863,7 +68331,7 @@ "typeArguments": [ { "type": "reference", - "id": 2697, + "id": 2796, "name": "User" } ], @@ -63878,22 +68346,22 @@ "title": "Constructors", "kind": 512, "children": [ - 2923 + 3121 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2933, - 2934 + 3131, + 3132 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2929 + 3127 ] } ], @@ -63907,7 +68375,7 @@ "extendedTypes": [ { "type": "reference", - "id": 2832, + "id": 3030, "name": "Manager" } ] @@ -63919,22 +68387,22 @@ "kind": 128, "children": [ 109, - 2841, + 3039, 121, 126, 1, 142, - 323, - 348, - 2895, - 363, - 813, - 2904, - 2832, - 819, - 2913, - 2697, - 2922 + 422, + 447, + 3093, + 462, + 912, + 3102, + 3030, + 918, + 3111, + 2796, + 3120 ] } ], From 2a029eca38512f4a0861281a794d9d3e5c9a4b14 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Tue, 3 Aug 2021 15:42:54 +0530 Subject: [PATCH 61/79] feat: schedule tests and minor --- .github/workflows/docs.yml | 6 +++++- .github/workflows/tests.yml | 2 ++ .gitignore | 1 + .npmignore | Bin 26 -> 38 bytes .yarnrc.yml | 3 +++ 5 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .yarnrc.yml diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 188b2da..9e0d117 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -1,6 +1,10 @@ name: Docs -on: push +on: + push: + branches: [dev] + schedule: + - cron: "0 0 * * *" jobs: Docs: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9bcb3cf..9bba1a2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,6 +3,8 @@ name: Tests on: push: branches: [dev] + schedule: + - cron: "0 0 * * *" jobs: Test: diff --git a/.gitignore b/.gitignore index fe92cf6..f1b3711 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules dist .env inspect.js +.yarn diff --git a/.npmignore b/.npmignore index 175077a2c10d7008ab3f327a12e6c6ab5ee975b5..5a6ff83d8a991dd0d6f2bc708745a563dd87563c 100644 GIT binary patch delta 17 Ycmb1An;^xL!jR99%uvk0%fQ6|03Evmw*UYD delta 4 LcmY$Bnji%L0we(I diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..c627f6a --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,3 @@ +nodeLinker: node-modules + +yarnPath: .yarn/releases/yarn-berry.cjs From 591e59a180c77f068927b174fafb5cc590dd168d Mon Sep 17 00:00:00 2001 From: Gm Date: Tue, 3 Aug 2021 15:45:30 +0530 Subject: [PATCH 62/79] Delete .yarnrc.yml --- .yarnrc.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .yarnrc.yml diff --git a/.yarnrc.yml b/.yarnrc.yml deleted file mode 100644 index c627f6a..0000000 --- a/.yarnrc.yml +++ /dev/null @@ -1,3 +0,0 @@ -nodeLinker: node-modules - -yarnPath: .yarn/releases/yarn-berry.cjs From f1718210ca45c046c3f36e0c27e2b03344077ccd Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Tue, 3 Aug 2021 16:59:59 +0530 Subject: [PATCH 63/79] fix: tests --- tests/index.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/index.test.ts b/tests/index.test.ts index 2fe41e4..20c7375 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -25,7 +25,8 @@ describe("Login client and fetch a user", function () { expect(client.user, "user not null").not.to.be.equal(null); done(); console.log(`Logged in as ${client.user.login}`); - clientuser(client, getRandom); }); }); }); + +clientuser(client, getRandom); From 8c6f8187104436ede8922329beae484c57ba7fab Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Tue, 3 Aug 2021 17:01:59 +0530 Subject: [PATCH 64/79] fix: tests --- tests/index.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/index.test.ts b/tests/index.test.ts index 2fe41e4..20c7375 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -25,7 +25,8 @@ describe("Login client and fetch a user", function () { expect(client.user, "user not null").not.to.be.equal(null); done(); console.log(`Logged in as ${client.user.login}`); - clientuser(client, getRandom); }); }); }); + +clientuser(client, getRandom); From 1c807da62905d79bfdbf885809099f91826b4ad8 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Tue, 3 Aug 2021 17:03:15 +0530 Subject: [PATCH 65/79] fix: tests 001 --- tests/index.test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/index.test.ts b/tests/index.test.ts index 20c7375..2fe41e4 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -25,8 +25,7 @@ describe("Login client and fetch a user", function () { expect(client.user, "user not null").not.to.be.equal(null); done(); console.log(`Logged in as ${client.user.login}`); + clientuser(client, getRandom); }); }); }); - -clientuser(client, getRandom); From 7889deef2162d1cb2a01484eb481c8389cd297d0 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 4 Aug 2021 11:05:11 +0530 Subject: [PATCH 66/79] feat: minor --- .gitignore | 1 + src/managers/orgmanager.ts | 5 +++++ src/managers/pullmanager.ts | 5 +++++ src/managers/workflowmanager.ts | 5 +++++ src/structures/artifact.ts | 3 +++ typedoc.json | 2 +- 6 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 src/managers/workflowmanager.ts diff --git a/.gitignore b/.gitignore index f1b3711..ad89e5f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ dist .env inspect.js .yarn +.yarnrc.yml diff --git a/src/managers/orgmanager.ts b/src/managers/orgmanager.ts index e69de29..996c51a 100644 --- a/src/managers/orgmanager.ts +++ b/src/managers/orgmanager.ts @@ -0,0 +1,5 @@ +import { Manager } from "."; + +class OrgManager extends Manager {} + +export default OrgManager; diff --git a/src/managers/pullmanager.ts b/src/managers/pullmanager.ts index e69de29..33da1bc 100644 --- a/src/managers/pullmanager.ts +++ b/src/managers/pullmanager.ts @@ -0,0 +1,5 @@ +import { Manager } from "."; + +class PullManager extends Manager {} + +export default PullManager; diff --git a/src/managers/workflowmanager.ts b/src/managers/workflowmanager.ts new file mode 100644 index 0000000..70007d4 --- /dev/null +++ b/src/managers/workflowmanager.ts @@ -0,0 +1,5 @@ +import { Manager } from "."; + +class WorkflowManager extends Manager {} + +export default WorkflowManager; diff --git a/src/structures/artifact.ts b/src/structures/artifact.ts index e69de29..22dc2fe 100644 --- a/src/structures/artifact.ts +++ b/src/structures/artifact.ts @@ -0,0 +1,3 @@ +class Artifact {} + +export default Artifact; diff --git a/typedoc.json b/typedoc.json index 9ebeed7..c983451 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1 +1 @@ -{"entryPoints":["./src/index.ts"],"json":"docs/1.0.0.json"} +{ "entryPoints": ["./src/index.ts"], "json": "docs/1.0.0.json" } From 6443486a1d0bd61c6970042c08e474cfadd139d1 Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Wed, 4 Aug 2021 09:14:49 +0000 Subject: [PATCH 67/79] automated(docs): docs json file generated (actions) --- typedoc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typedoc.json b/typedoc.json index c983451..9ebeed7 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1 +1 @@ -{ "entryPoints": ["./src/index.ts"], "json": "docs/1.0.0.json" } +{"entryPoints":["./src/index.ts"],"json":"docs/1.0.0.json"} From 7fe8480d0074cda621cf45a52c9e330e19efc800 Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Wed, 4 Aug 2021 15:46:39 +0530 Subject: [PATCH 68/79] feat(tests): minor update --- tests/clientuser.test.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts index cdbc0d4..96915ff 100644 --- a/tests/clientuser.test.ts +++ b/tests/clientuser.test.ts @@ -11,10 +11,7 @@ export default function (client: Client, getRandom: any) { client.user?.setName(getRandom()).then(() => done()); }); it("change user's bio to a random value", (done) => { - client.user?.setBio(getRandom()); - client.user - ?.setBio("This is a test account for testing GmBodhi/github-api") - .then(() => done()); + client.user?.setBio(getRandom()).then(() => done()); }); it("change user's location to a random value", (done) => { client.user?.setLocation(getRandom()).then(() => done()); @@ -23,9 +20,12 @@ export default function (client: Client, getRandom: any) { client.user?.setTwitterUsername(getRandom()).then(() => done()); }); it("change user's blog url", (done) => { - client.user?.setBlog("http://eximstudio.com"); + client.user?.setBlog("http://eximstudio.com").then(() => done()); + }); + it("set everything to expected values", (done) => { + client.user?.setBlog("http://github.com/GmBodhi/github-api"); client.user - ?.setBlog("http://github.com/GmBodhi/github-api") + ?.setBio("This is a test account for testing GmBodhi/github-api") .then(() => done()); }); }); From 65a8d3eb93e34c86754a0e6c2258730cebbb17ed Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sat, 7 Aug 2021 17:09:25 +0530 Subject: [PATCH 69/79] feat: docs generated --- docs/1.0.0.json | 1693 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 1454 insertions(+), 239 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 03f2c5b..479dea2 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -12,6 +12,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 110, @@ -26,6 +29,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Actions." + }, "parameters": [ { "id": 112, @@ -33,6 +39,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reference", "id": 1, @@ -63,8 +70,8 @@ "sources": [ { "fileName": "src/structures/actions.ts", - "line": 9, - "character": 53 + "line": 40, + "character": 28 } ], "type": { @@ -81,8 +88,8 @@ "sources": [ { "fileName": "src/structures/actions.ts", - "line": 9, - "character": 67 + "line": 40, + "character": 42 } ], "type": { @@ -129,11 +136,14 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/actions.ts", - "line": 6, - "character": 13 + "line": 18, + "character": 11 } ], "type": { @@ -148,10 +158,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -172,11 +185,14 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/actions.ts", - "line": 7, - "character": 9 + "line": 24, + "character": 7 } ], "type": { @@ -190,11 +206,14 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/actions.ts", - "line": 8, - "character": 8 + "line": 30, + "character": 6 } ], "type": { @@ -225,7 +244,7 @@ "sources": [ { "fileName": "src/structures/actions.ts", - "line": 5, + "line": 12, "character": 13 } ], @@ -243,6 +262,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 3040, @@ -257,6 +279,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of ArtifactsManager." + }, "parameters": [ { "id": 3042, @@ -282,7 +307,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 10, + "line": 34, "character": 24 } ], @@ -329,7 +354,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 11, + "line": 35, "character": 28 } ], @@ -347,7 +372,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 11, + "line": 35, "character": 42 } ], @@ -395,10 +420,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -419,10 +447,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 7, + "line": 19, "character": 7 } ], @@ -437,10 +468,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 8, + "line": 25, "character": 6 } ], @@ -457,10 +491,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 21, "character": 5 } ], @@ -483,7 +520,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 43, + "line": 91, "character": 14 } ], @@ -494,6 +531,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 3087, @@ -501,6 +548,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "number" @@ -529,7 +577,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 51, + "line": 106, "character": 16 } ], @@ -540,6 +588,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 3090, @@ -547,6 +605,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "number" @@ -575,7 +634,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 33, + "line": 74, "character": 11 } ], @@ -586,6 +645,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 3073, @@ -593,6 +662,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "number" @@ -883,7 +953,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 17, + "line": 51, "character": 12 } ], @@ -894,6 +964,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 3053, @@ -921,7 +1001,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 18, + "line": 52, "character": 8 } ], @@ -941,7 +1021,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 19, + "line": 53, "character": 11 } ], @@ -1334,7 +1414,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 6, + "line": 13, "character": 22 } ], @@ -1352,6 +1432,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 122, @@ -1366,6 +1449,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Base." + }, "parameters": [ { "id": 124, @@ -1373,6 +1459,9 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "\n" + }, "type": { "type": "reference", "id": 1, @@ -1394,10 +1483,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -1427,7 +1519,7 @@ "sources": [ { "fileName": "src/structures/base.ts", - "line": 3, + "line": 9, "character": 10 } ], @@ -1465,6 +1557,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 127, @@ -1479,6 +1574,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Blocks." + }, "parameters": [ { "id": 129, @@ -1486,6 +1584,9 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "\n" + }, "type": { "type": "reference", "id": 1, @@ -1517,10 +1618,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -1544,7 +1648,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 54, + "line": 94, "character": 13 } ], @@ -1555,6 +1659,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 140, @@ -1562,6 +1676,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -1590,7 +1705,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 29, + "line": 55, "character": 11 } ], @@ -1601,6 +1716,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 134, @@ -1608,6 +1733,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -1636,7 +1762,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 13, + "line": 32, "character": 12 } ], @@ -1647,6 +1773,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "type": { "type": "reference", "typeArguments": [ @@ -1673,7 +1809,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 43, + "line": 76, "character": 15 } ], @@ -1684,6 +1820,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 137, @@ -1691,6 +1837,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -1740,7 +1887,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 8, + "line": 15, "character": 12 } ], @@ -1758,6 +1905,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 28, @@ -1772,6 +1922,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Client." + }, "parameters": [ { "id": 30, @@ -1811,10 +1964,19 @@ "isPublic": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 18, + "line": 81, "character": 21 } ], @@ -1833,10 +1995,19 @@ "isOptional": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 14, + "line": 51, "character": 23 } ], @@ -1862,10 +2033,13 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 15, + "line": 58, "character": 14 } ], @@ -1884,10 +2058,19 @@ "isOptional": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 13, + "line": 43, "character": 23 } ], @@ -1913,10 +2096,13 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 16, + "line": 65, "character": 13 } ], @@ -1944,10 +2130,19 @@ "isPublic": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 17, + "line": 73, "character": 23 } ], @@ -3774,7 +3969,7 @@ "sources": [ { "fileName": "src/structures/client.ts", - "line": 12, + "line": 35, "character": 12 } ], @@ -3791,6 +3986,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 143, @@ -3805,6 +4003,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of ClientUser." + }, "parameters": [ { "id": 145, @@ -3812,6 +4013,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "union", "types": [ @@ -5976,7 +6178,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 22, + "line": 81, "character": 56 } ], @@ -6024,10 +6226,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 17, + "line": 37, "character": 11 } ], @@ -6049,10 +6254,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 37, + "line": 157, "character": 5 } ], @@ -6072,10 +6280,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 14, + "line": 51, "character": 8 } ], @@ -6093,10 +6304,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 33, + "line": 133, "character": 6 } ], @@ -6156,10 +6370,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 13, + "line": 45, "character": 15 } ], @@ -6176,10 +6393,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 32, + "line": 127, "character": 9 } ], @@ -6201,10 +6421,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 43, + "line": 193, "character": 11 } ], @@ -6226,10 +6449,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 12, + "line": 39, "character": 11 } ], @@ -6246,10 +6472,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 35, + "line": 145, "character": 7 } ], @@ -6278,10 +6507,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 15, + "line": 57, "character": 8 } ], @@ -6299,10 +6531,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 28, + "line": 103, "character": 11 } ], @@ -6324,10 +6559,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 41, + "line": 181, "character": 11 } ], @@ -6349,10 +6587,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 22, + "line": 67, "character": 14 } ], @@ -6374,10 +6615,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 42, + "line": 187, "character": 11 } ], @@ -6399,10 +6643,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 21, + "line": 61, "character": 14 } ], @@ -6424,10 +6671,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 23, + "line": 73, "character": 10 } ], @@ -6447,10 +6697,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 18, + "line": 43, "character": 12 } ], @@ -6472,10 +6725,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 36, + "line": 151, "character": 10 } ], @@ -6504,10 +6760,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 20, + "line": 55, "character": 9 } ], @@ -6527,10 +6786,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 15, + "line": 25, "character": 4 } ], @@ -6552,10 +6814,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 34, + "line": 139, "character": 10 } ], @@ -6575,10 +6840,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 14, + "line": 19, "character": 7 } ], @@ -6598,10 +6866,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 16, + "line": 31, "character": 8 } ], @@ -6623,10 +6894,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 26, + "line": 91, "character": 18 } ], @@ -6648,10 +6922,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 11, + "line": 33, "character": 19 } ], @@ -6666,10 +6943,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 16, + "line": 68, "character": 6 } ], @@ -6693,7 +6973,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 20, + "line": 72, "character": 17 } ], @@ -6713,7 +6993,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 17, + "line": 69, "character": 8 } ], @@ -6733,7 +7013,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 19, + "line": 71, "character": 16 } ], @@ -6753,7 +7033,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 18, + "line": 70, "character": 9 } ], @@ -6786,10 +7066,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 9, + "line": 21, "character": 14 } ], @@ -6806,10 +7089,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 40, + "line": 175, "character": 13 } ], @@ -6831,10 +7117,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 39, + "line": 169, "character": 13 } ], @@ -6856,10 +7145,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 29, + "line": 109, "character": 19 } ], @@ -6881,10 +7173,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 27, + "line": 97, "character": 10 } ], @@ -6906,10 +7201,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 31, + "line": 121, "character": 11 } ], @@ -6931,10 +7229,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 24, + "line": 79, "character": 12 } ], @@ -6956,10 +7257,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 25, + "line": 85, "character": 18 } ], @@ -6981,10 +7285,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 10, + "line": 27, "character": 19 } ], @@ -7001,10 +7308,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 38, + "line": 163, "character": 17 } ], @@ -7035,10 +7345,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 30, + "line": 115, "character": 6 } ], @@ -7060,10 +7373,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 44, + "line": 199, "character": 11 } ], @@ -7083,10 +7399,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 19, + "line": 49, "character": 5 } ], @@ -7111,7 +7430,7 @@ "sources": [ { "fileName": "src/structures/user.ts", - "line": 80, + "line": 249, "character": 15 } ], @@ -7121,7 +7440,13 @@ "name": "_patch", "kind": 4096, "kindString": "Call signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "returns": "\n" + }, "parameters": [ { "id": 325, @@ -7129,6 +7454,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "union", "types": [ @@ -9344,7 +9670,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 86, + "line": 196, "character": 14 } ], @@ -9355,6 +9681,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 281, @@ -9382,7 +9718,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 94, + "line": 204, "character": 7 } ], @@ -9402,7 +9738,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 89, + "line": 199, "character": 8 } ], @@ -9422,7 +9758,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 91, + "line": 201, "character": 11 } ], @@ -9442,7 +9778,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 87, + "line": 197, "character": 9 } ], @@ -9462,7 +9798,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 93, + "line": 203, "character": 12 } ], @@ -9482,7 +9818,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 92, + "line": 202, "character": 12 } ], @@ -9502,7 +9838,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 88, + "line": 198, "character": 8 } ], @@ -9522,7 +9858,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 90, + "line": 200, "character": 19 } ], @@ -9575,7 +9911,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 82, + "line": 176, "character": 14 } ], @@ -9586,6 +9922,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 278, @@ -9593,6 +9939,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -9622,7 +9969,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 62, + "line": 121, "character": 15 } ], @@ -9675,7 +10022,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 70, + "line": 143, "character": 18 } ], @@ -9686,6 +10033,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 269, @@ -9693,6 +10050,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -9722,7 +10080,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 44, + "line": 103, "character": 16 } ], @@ -9776,7 +10134,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 78, + "line": 165, "character": 19 } ], @@ -9787,6 +10145,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 275, @@ -9794,6 +10162,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "boolean" @@ -9823,7 +10192,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 74, + "line": 154, "character": 19 } ], @@ -9834,6 +10203,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 272, @@ -9841,6 +10220,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -9870,7 +10250,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 53, + "line": 112, "character": 15 } ], @@ -9924,7 +10304,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 66, + "line": 132, "character": 26 } ], @@ -9935,6 +10315,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 266, @@ -9942,6 +10332,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -10037,7 +10428,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 8, + "line": 15, "character": 16 } ], @@ -10055,6 +10446,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 423, @@ -10069,6 +10463,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Emails." + }, "parameters": [ { "id": 425, @@ -10076,6 +10473,9 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "\n" + }, "type": { "type": "reference", "id": 1, @@ -10107,10 +10507,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -10134,7 +10537,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 36, + "line": 71, "character": 11 } ], @@ -10145,6 +10548,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 438, @@ -10154,6 +10567,7 @@ "flags": { "isRest": true }, + "comment": {}, "type": { "type": "array", "elementType": { @@ -10188,7 +10602,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 24, + "line": 52, "character": 12 } ], @@ -10199,6 +10613,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 432, @@ -10226,7 +10650,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 25, + "line": 53, "character": 19 } ], @@ -10246,7 +10670,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 25, + "line": 53, "character": 37 } ], @@ -10296,7 +10720,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 56, + "line": 105, "character": 18 } ], @@ -10307,6 +10731,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 444, @@ -10352,7 +10786,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 46, + "line": 88, "character": 14 } ], @@ -10363,6 +10797,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 441, @@ -10372,6 +10816,7 @@ "flags": { "isRest": true }, + "comment": {}, "type": { "type": "array", "elementType": { @@ -10406,7 +10851,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 11, + "line": 32, "character": 28 } ], @@ -10417,6 +10862,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 428, @@ -10424,6 +10879,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -10487,7 +10943,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 6, + "line": 13, "character": 12 } ], @@ -10505,6 +10961,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 448, @@ -10519,6 +10978,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Follows." + }, "parameters": [ { "id": 450, @@ -10526,6 +10988,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reference", "id": 1, @@ -10556,7 +11019,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 7, + "line": 30, "character": 54 } ], @@ -10593,10 +11056,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/follows.ts", - "line": 5, + "line": 16, "character": 8 } ], @@ -10612,10 +11078,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/follows.ts", - "line": 6, + "line": 22, "character": 10 } ], @@ -10633,7 +11102,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 12, + "line": 42, "character": 12 } ], @@ -10644,6 +11113,16 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 458, @@ -10651,6 +11130,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reflection", "declaration": { @@ -10671,7 +11151,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 12, + "line": 42, "character": 28 } ], @@ -10691,7 +11171,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 12, + "line": 42, "character": 46 } ], @@ -10759,7 +11239,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 4, + "line": 10, "character": 13 } ] @@ -10770,6 +11250,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 3094, @@ -10784,6 +11267,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of ForkManager." + }, "parameters": [ { "id": 3096, @@ -10791,6 +11277,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reference", "id": 1, @@ -10823,7 +11310,7 @@ "sources": [ { "fileName": "src/managers/forkmanager.ts", - "line": 5, + "line": 19, "character": 44 } ], @@ -10870,10 +11357,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -10896,10 +11386,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 21, "character": 5 } ], @@ -10934,7 +11427,7 @@ "sources": [ { "fileName": "src/managers/forkmanager.ts", - "line": 4, + "line": 11, "character": 17 } ], @@ -10952,6 +11445,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 463, @@ -10966,6 +11462,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Gist." + }, "parameters": [ { "id": 465, @@ -10973,6 +11472,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reflection", "declaration": { @@ -15775,7 +16275,7 @@ "sources": [ { "fileName": "src/structures/gist.ts", - "line": 9, + "line": 37, "character": 50 } ], @@ -15823,10 +16323,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -15850,10 +16353,19 @@ "isPrivate": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 7, + "line": 21, "character": 23 } ], @@ -20644,10 +21156,19 @@ "isPublic": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 8, + "line": 29, "character": 23 } ], @@ -20663,10 +21184,19 @@ "kind": 262144, "kindString": "Accessor", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 18, + "line": 58, "character": 13 } ], @@ -20677,6 +21207,15 @@ "kind": 524288, "kindString": "Get signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -20699,10 +21238,19 @@ "kind": 262144, "kindString": "Accessor", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 15, + "line": 49, "character": 9 } ], @@ -20713,6 +21261,15 @@ "kind": 524288, "kindString": "Get signature", "flags": {}, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -20759,7 +21316,7 @@ "sources": [ { "fileName": "src/structures/gist.ts", - "line": 6, + "line": 13, "character": 10 } ], @@ -20777,6 +21334,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 913, @@ -20791,6 +21351,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Issue." + }, "parameters": [ { "id": 915, @@ -20798,6 +21361,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reference", "typeArguments": [ @@ -20823,6 +21387,9 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "\n" + }, "type": { "type": "reference", "id": 1, @@ -20844,10 +21411,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/issue.ts", - "line": 5, + "line": 16, "character": 8 } ], @@ -20877,7 +21447,7 @@ "sources": [ { "fileName": "src/structures/issue.ts", - "line": 4, + "line": 10, "character": 11 } ] @@ -20888,6 +21458,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 3103, @@ -20902,6 +21475,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of IssueManager." + }, "parameters": [ { "id": 3105, @@ -20927,7 +21503,7 @@ "sources": [ { "fileName": "src/managers/issuemanager.ts", - "line": 6, + "line": 19, "character": 39 } ], @@ -20946,7 +21522,7 @@ "sources": [ { "fileName": "src/managers/issuemanager.ts", - "line": 6, + "line": 19, "character": 52 } ], @@ -20994,10 +21570,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -21020,10 +21599,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 21, "character": 5 } ], @@ -21058,7 +21640,7 @@ "sources": [ { "fileName": "src/managers/issuemanager.ts", - "line": 5, + "line": 12, "character": 18 } ], @@ -21076,6 +21658,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 3031, @@ -21090,6 +21675,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of BaseManager." + }, "parameters": [ { "id": 3033, @@ -21115,7 +21703,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 28, "character": 39 } ], @@ -21136,7 +21724,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 6, + "line": 28, "character": 52 } ], @@ -21174,10 +21762,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -21195,10 +21786,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 21, "character": 5 } ], @@ -21228,7 +21822,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 3, + "line": 9, "character": 17 } ], @@ -21266,6 +21860,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 919, @@ -21280,6 +21877,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of Repo." + }, "parameters": [ { "id": 921, @@ -21287,6 +21887,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "reference", "id": 1, @@ -21299,6 +21900,9 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": { + "text": "\n" + }, "type": { "type": "reflection", "declaration": { @@ -41553,10 +42157,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -41580,10 +42187,19 @@ "isPrivate": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 9, + "line": 37, "character": 23 } ], @@ -61825,10 +62441,19 @@ "isPublic": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 8, + "line": 29, "character": 23 } ], @@ -61847,10 +62472,19 @@ "isPublic": true, "isReadonly": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 7, + "line": 21, "character": 20 } ], @@ -61867,10 +62501,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 29, + "line": 92, "character": 29 } ], @@ -61880,7 +62523,18 @@ "name": "allowMergeCommit", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -61905,10 +62559,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 33, + "line": 103, "character": 29 } ], @@ -61918,7 +62581,18 @@ "name": "allowRebaseMerge", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -61943,10 +62617,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 37, + "line": 114, "character": 29 } ], @@ -61956,7 +62639,18 @@ "name": "allowSquashMerge", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -61981,10 +62675,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 41, + "line": 125, "character": 34 } ], @@ -61994,7 +62697,18 @@ "name": "anonymusAccessEnabled", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -62019,10 +62733,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 45, + "line": 136, "character": 23 } ], @@ -62032,7 +62755,18 @@ "name": "archiveUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62048,10 +62782,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 49, + "line": 147, "character": 21 } ], @@ -62061,7 +62804,18 @@ "name": "archived", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "boolean" @@ -62077,10 +62831,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 53, + "line": 158, "character": 25 } ], @@ -62090,7 +62853,18 @@ "name": "assigneesUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62106,10 +62880,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 57, + "line": 169, "character": 21 } ], @@ -62119,7 +62902,18 @@ "name": "blobsUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62135,10 +62929,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 61, + "line": 180, "character": 24 } ], @@ -62148,7 +62951,18 @@ "name": "branchesUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62164,10 +62978,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 65, + "line": 191, "character": 21 } ], @@ -62177,7 +63000,18 @@ "name": "cloneUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62193,10 +63027,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 69, + "line": 202, "character": 26 } ], @@ -62206,7 +63049,18 @@ "name": "codeOfConduct", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "union", "types": [ @@ -62340,10 +63194,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 73, + "line": 213, "character": 29 } ], @@ -62353,7 +63216,18 @@ "name": "collaboratorsUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62369,10 +63243,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 77, + "line": 224, "character": 24 } ], @@ -62382,7 +63265,18 @@ "name": "commentsUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62398,10 +63292,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 81, + "line": 235, "character": 23 } ], @@ -62411,7 +63314,18 @@ "name": "commitsUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62427,10 +63341,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 85, + "line": 246, "character": 23 } ], @@ -62440,7 +63363,18 @@ "name": "compareUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62456,10 +63390,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 89, + "line": 257, "character": 24 } ], @@ -62469,7 +63412,18 @@ "name": "contentsUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62485,10 +63439,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 93, + "line": 268, "character": 28 } ], @@ -62498,7 +63461,18 @@ "name": "contributorsUrl", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62514,10 +63488,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 97, + "line": 279, "character": 22 } ], @@ -62527,7 +63510,18 @@ "name": "createdAt", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62543,10 +63537,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 101, + "line": 290, "character": 26 } ], @@ -62556,7 +63559,18 @@ "name": "defaultBranch", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62572,10 +63586,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 21, + "line": 70, "character": 17 } ], @@ -62585,7 +63608,18 @@ "name": "fork", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "boolean" @@ -62601,10 +63635,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 17, + "line": 59, "character": 22 } ], @@ -62614,7 +63657,18 @@ "name": "forkCount", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "number" @@ -62630,10 +63684,19 @@ "flags": { "isPublic": true }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 25, + "line": 81, "character": 21 } ], @@ -62643,7 +63706,18 @@ "name": "fullName", "kind": 524288, "kindString": "Get signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "tags": [ + { + "tag": "readonly", + "text": "" + } + ] + }, "type": { "type": "intrinsic", "name": "string" @@ -62702,7 +63776,7 @@ "sources": [ { "fileName": "src/structures/repo.ts", - "line": 6, + "line": 13, "character": 10 } ], @@ -62720,6 +63794,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 3112, @@ -62734,6 +63811,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of RepoManager." + }, "parameters": [ { "id": 3114, @@ -62759,7 +63839,7 @@ "sources": [ { "fileName": "src/managers/repomanager.ts", - "line": 5, + "line": 18, "character": 39 } ], @@ -62778,7 +63858,7 @@ "sources": [ { "fileName": "src/managers/repomanager.ts", - "line": 5, + "line": 18, "character": 52 } ], @@ -62826,10 +63906,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -62852,10 +63935,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 21, "character": 5 } ], @@ -62890,7 +63976,7 @@ "sources": [ { "fileName": "src/managers/repomanager.ts", - "line": 4, + "line": 11, "character": 17 } ], @@ -62925,6 +64011,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of User." + }, "parameters": [ { "id": 2799, @@ -62932,6 +64021,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "union", "types": [ @@ -65129,7 +66219,7 @@ "sources": [ { "fileName": "src/structures/user.ts", - "line": 45, + "line": 207, "character": 50 } ], @@ -65167,10 +66257,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 17, + "line": 37, "character": 11 } ], @@ -65187,10 +66280,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 37, + "line": 157, "character": 5 } ], @@ -65207,10 +66303,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 33, + "line": 133, "character": 6 } ], @@ -65260,10 +66359,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 32, + "line": 127, "character": 9 } ], @@ -65280,10 +66382,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 43, + "line": 193, "character": 11 } ], @@ -65300,10 +66405,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 35, + "line": 145, "character": 7 } ], @@ -65329,10 +66437,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 28, + "line": 103, "character": 11 } ], @@ -65349,10 +66460,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 41, + "line": 181, "character": 11 } ], @@ -65369,10 +66483,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 22, + "line": 67, "character": 14 } ], @@ -65389,10 +66506,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 42, + "line": 187, "character": 11 } ], @@ -65409,10 +66529,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 21, + "line": 61, "character": 14 } ], @@ -65429,10 +66552,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 23, + "line": 73, "character": 10 } ], @@ -65447,10 +66573,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 18, + "line": 43, "character": 12 } ], @@ -65467,10 +66596,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 36, + "line": 151, "character": 10 } ], @@ -65494,10 +66626,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 20, + "line": 55, "character": 9 } ], @@ -65512,10 +66647,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 15, + "line": 25, "character": 4 } ], @@ -65532,10 +66670,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 34, + "line": 139, "character": 10 } ], @@ -65550,10 +66691,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 14, + "line": 19, "character": 7 } ], @@ -65568,10 +66712,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 16, + "line": 31, "character": 8 } ], @@ -65588,10 +66735,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 26, + "line": 91, "character": 18 } ], @@ -65608,10 +66758,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 40, + "line": 175, "character": 13 } ], @@ -65628,10 +66781,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 39, + "line": 169, "character": 13 } ], @@ -65648,10 +66804,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 29, + "line": 109, "character": 19 } ], @@ -65668,10 +66827,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 27, + "line": 97, "character": 10 } ], @@ -65688,10 +66850,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 31, + "line": 121, "character": 11 } ], @@ -65708,10 +66873,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 24, + "line": 79, "character": 12 } ], @@ -65728,10 +66896,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 25, + "line": 85, "character": 18 } ], @@ -65748,10 +66919,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 38, + "line": 163, "character": 17 } ], @@ -65777,10 +66951,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 30, + "line": 115, "character": 6 } ], @@ -65797,10 +66974,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 44, + "line": 199, "character": 11 } ], @@ -65815,10 +66995,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 19, + "line": 49, "character": 5 } ], @@ -65838,7 +67021,7 @@ "sources": [ { "fileName": "src/structures/user.ts", - "line": 80, + "line": 249, "character": 15 } ], @@ -65848,7 +67031,13 @@ "name": "_patch", "kind": 4096, "kindString": "Call signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "returns": "\n" + }, "parameters": [ { "id": 2933, @@ -65856,6 +67045,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "union", "types": [ @@ -68128,6 +69318,9 @@ "kind": 128, "kindString": "Class", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "children": [ { "id": 3121, @@ -68142,6 +69335,9 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, + "comment": { + "shortText": "Creates an instance of UserManager." + }, "parameters": [ { "id": 3123, @@ -68167,7 +69363,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 9, + "line": 22, "character": 39 } ], @@ -68188,7 +69384,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 9, + "line": 22, "character": 52 } ], @@ -68236,10 +69432,13 @@ "kind": 1024, "kindString": "Property", "flags": {}, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 4, + "line": 15, "character": 8 } ], @@ -68262,10 +69461,13 @@ "flags": { "isOptional": true }, + "comment": { + "shortText": "Description placeholder" + }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 5, + "line": 21, "character": 5 } ], @@ -68290,7 +69492,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 13, + "line": 35, "character": 20 } ], @@ -68300,7 +69502,19 @@ "name": "fetch", "kind": 4096, "kindString": "Call signature", - "flags": {}, + "flags": { + "isPublic": true + }, + "comment": { + "shortText": "Description placeholder", + "returns": "\n", + "tags": [ + { + "tag": "async", + "text": "" + } + ] + }, "parameters": [ { "id": 3129, @@ -68308,6 +69522,7 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, + "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -68368,7 +69583,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 8, + "line": 15, "character": 17 } ], From fcb200123ec22172ba0485985eada3b7cdf5c267 Mon Sep 17 00:00:00 2001 From: GmBodhi Date: Sat, 7 Aug 2021 11:40:05 +0000 Subject: [PATCH 70/79] automated(docs): docs json file generated (actions) --- docs/1.0.0.json | 1693 +++++++---------------------------------------- 1 file changed, 239 insertions(+), 1454 deletions(-) diff --git a/docs/1.0.0.json b/docs/1.0.0.json index 479dea2..03f2c5b 100644 --- a/docs/1.0.0.json +++ b/docs/1.0.0.json @@ -12,9 +12,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 110, @@ -29,9 +26,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Actions." - }, "parameters": [ { "id": 112, @@ -39,7 +33,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reference", "id": 1, @@ -70,8 +63,8 @@ "sources": [ { "fileName": "src/structures/actions.ts", - "line": 40, - "character": 28 + "line": 9, + "character": 53 } ], "type": { @@ -88,8 +81,8 @@ "sources": [ { "fileName": "src/structures/actions.ts", - "line": 40, - "character": 42 + "line": 9, + "character": 67 } ], "type": { @@ -136,14 +129,11 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/actions.ts", - "line": 18, - "character": 11 + "line": 6, + "character": 13 } ], "type": { @@ -158,13 +148,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -185,14 +172,11 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/actions.ts", - "line": 24, - "character": 7 + "line": 7, + "character": 9 } ], "type": { @@ -206,14 +190,11 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/actions.ts", - "line": 30, - "character": 6 + "line": 8, + "character": 8 } ], "type": { @@ -244,7 +225,7 @@ "sources": [ { "fileName": "src/structures/actions.ts", - "line": 12, + "line": 5, "character": 13 } ], @@ -262,9 +243,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 3040, @@ -279,9 +257,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of ArtifactsManager." - }, "parameters": [ { "id": 3042, @@ -307,7 +282,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 34, + "line": 10, "character": 24 } ], @@ -354,7 +329,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 35, + "line": 11, "character": 28 } ], @@ -372,7 +347,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 35, + "line": 11, "character": 42 } ], @@ -420,13 +395,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -447,13 +419,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 19, + "line": 7, "character": 7 } ], @@ -468,13 +437,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 25, + "line": 8, "character": 6 } ], @@ -491,13 +457,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 21, + "line": 5, "character": 5 } ], @@ -520,7 +483,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 91, + "line": 43, "character": 14 } ], @@ -531,16 +494,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 3087, @@ -548,7 +501,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "number" @@ -577,7 +529,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 106, + "line": 51, "character": 16 } ], @@ -588,16 +540,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 3090, @@ -605,7 +547,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "number" @@ -634,7 +575,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 74, + "line": 33, "character": 11 } ], @@ -645,16 +586,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 3073, @@ -662,7 +593,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "number" @@ -953,7 +883,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 51, + "line": 17, "character": 12 } ], @@ -964,16 +894,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 3053, @@ -1001,7 +921,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 52, + "line": 18, "character": 8 } ], @@ -1021,7 +941,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 53, + "line": 19, "character": 11 } ], @@ -1414,7 +1334,7 @@ "sources": [ { "fileName": "src/managers/artifactsManager.ts", - "line": 13, + "line": 6, "character": 22 } ], @@ -1432,9 +1352,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 122, @@ -1449,9 +1366,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Base." - }, "parameters": [ { "id": 124, @@ -1459,9 +1373,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "\n" - }, "type": { "type": "reference", "id": 1, @@ -1483,13 +1394,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -1519,7 +1427,7 @@ "sources": [ { "fileName": "src/structures/base.ts", - "line": 9, + "line": 3, "character": 10 } ], @@ -1557,9 +1465,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 127, @@ -1574,9 +1479,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Blocks." - }, "parameters": [ { "id": 129, @@ -1584,9 +1486,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "\n" - }, "type": { "type": "reference", "id": 1, @@ -1618,13 +1517,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -1648,7 +1544,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 94, + "line": 54, "character": 13 } ], @@ -1659,16 +1555,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 140, @@ -1676,7 +1562,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -1705,7 +1590,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 55, + "line": 29, "character": 11 } ], @@ -1716,16 +1601,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 134, @@ -1733,7 +1608,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -1762,7 +1636,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 32, + "line": 13, "character": 12 } ], @@ -1773,16 +1647,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "type": { "type": "reference", "typeArguments": [ @@ -1809,7 +1673,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 76, + "line": 43, "character": 15 } ], @@ -1820,16 +1684,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 137, @@ -1837,7 +1691,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -1887,7 +1740,7 @@ "sources": [ { "fileName": "src/structures/blocks.ts", - "line": 15, + "line": 8, "character": 12 } ], @@ -1905,9 +1758,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 28, @@ -1922,9 +1772,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Client." - }, "parameters": [ { "id": 30, @@ -1964,19 +1811,10 @@ "isPublic": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 81, + "line": 18, "character": 21 } ], @@ -1995,19 +1833,10 @@ "isOptional": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 51, + "line": 14, "character": 23 } ], @@ -2033,13 +1862,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 58, + "line": 15, "character": 14 } ], @@ -2058,19 +1884,10 @@ "isOptional": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 43, + "line": 13, "character": 23 } ], @@ -2096,13 +1913,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 65, + "line": 16, "character": 13 } ], @@ -2130,19 +1944,10 @@ "isPublic": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/client.ts", - "line": 73, + "line": 17, "character": 23 } ], @@ -3969,7 +3774,7 @@ "sources": [ { "fileName": "src/structures/client.ts", - "line": 35, + "line": 12, "character": 12 } ], @@ -3986,9 +3791,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 143, @@ -4003,9 +3805,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of ClientUser." - }, "parameters": [ { "id": 145, @@ -4013,7 +3812,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "union", "types": [ @@ -6178,7 +5976,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 81, + "line": 22, "character": 56 } ], @@ -6226,13 +6024,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 37, + "line": 17, "character": 11 } ], @@ -6254,13 +6049,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 157, + "line": 37, "character": 5 } ], @@ -6280,13 +6072,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 51, + "line": 14, "character": 8 } ], @@ -6304,13 +6093,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 133, + "line": 33, "character": 6 } ], @@ -6370,13 +6156,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 45, + "line": 13, "character": 15 } ], @@ -6393,13 +6176,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 127, + "line": 32, "character": 9 } ], @@ -6421,13 +6201,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 193, + "line": 43, "character": 11 } ], @@ -6449,13 +6226,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 39, + "line": 12, "character": 11 } ], @@ -6472,13 +6246,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 145, + "line": 35, "character": 7 } ], @@ -6507,13 +6278,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 57, + "line": 15, "character": 8 } ], @@ -6531,13 +6299,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 103, + "line": 28, "character": 11 } ], @@ -6559,13 +6324,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 181, + "line": 41, "character": 11 } ], @@ -6587,13 +6349,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 67, + "line": 22, "character": 14 } ], @@ -6615,13 +6374,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 187, + "line": 42, "character": 11 } ], @@ -6643,13 +6399,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 61, + "line": 21, "character": 14 } ], @@ -6671,13 +6424,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 73, + "line": 23, "character": 10 } ], @@ -6697,13 +6447,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 43, + "line": 18, "character": 12 } ], @@ -6725,13 +6472,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 151, + "line": 36, "character": 10 } ], @@ -6760,13 +6504,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 55, + "line": 20, "character": 9 } ], @@ -6786,13 +6527,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 25, + "line": 15, "character": 4 } ], @@ -6814,13 +6552,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 139, + "line": 34, "character": 10 } ], @@ -6840,13 +6575,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 19, + "line": 14, "character": 7 } ], @@ -6866,13 +6598,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 31, + "line": 16, "character": 8 } ], @@ -6894,13 +6623,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 91, + "line": 26, "character": 18 } ], @@ -6922,13 +6648,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 33, + "line": 11, "character": 19 } ], @@ -6943,13 +6666,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 68, + "line": 16, "character": 6 } ], @@ -6973,7 +6693,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 72, + "line": 20, "character": 17 } ], @@ -6993,7 +6713,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 69, + "line": 17, "character": 8 } ], @@ -7013,7 +6733,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 71, + "line": 19, "character": 16 } ], @@ -7033,7 +6753,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 70, + "line": 18, "character": 9 } ], @@ -7066,13 +6786,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 21, + "line": 9, "character": 14 } ], @@ -7089,13 +6806,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 175, + "line": 40, "character": 13 } ], @@ -7117,13 +6831,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 169, + "line": 39, "character": 13 } ], @@ -7145,13 +6856,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 109, + "line": 29, "character": 19 } ], @@ -7173,13 +6881,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 97, + "line": 27, "character": 10 } ], @@ -7201,13 +6906,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 121, + "line": 31, "character": 11 } ], @@ -7229,13 +6931,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 79, + "line": 24, "character": 12 } ], @@ -7257,13 +6956,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 85, + "line": 25, "character": 18 } ], @@ -7285,13 +6981,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 27, + "line": 10, "character": 19 } ], @@ -7308,13 +7001,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 163, + "line": 38, "character": 17 } ], @@ -7345,13 +7035,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 115, + "line": 30, "character": 6 } ], @@ -7373,13 +7060,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 199, + "line": 44, "character": 11 } ], @@ -7399,13 +7083,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 49, + "line": 19, "character": 5 } ], @@ -7430,7 +7111,7 @@ "sources": [ { "fileName": "src/structures/user.ts", - "line": 249, + "line": 80, "character": 15 } ], @@ -7440,13 +7121,7 @@ "name": "_patch", "kind": 4096, "kindString": "Call signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "returns": "\n" - }, + "flags": {}, "parameters": [ { "id": 325, @@ -7454,7 +7129,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "union", "types": [ @@ -9670,7 +9344,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 196, + "line": 86, "character": 14 } ], @@ -9681,16 +9355,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 281, @@ -9718,7 +9382,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 204, + "line": 94, "character": 7 } ], @@ -9738,7 +9402,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 199, + "line": 89, "character": 8 } ], @@ -9758,7 +9422,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 201, + "line": 91, "character": 11 } ], @@ -9778,7 +9442,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 197, + "line": 87, "character": 9 } ], @@ -9798,7 +9462,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 203, + "line": 93, "character": 12 } ], @@ -9818,7 +9482,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 202, + "line": 92, "character": 12 } ], @@ -9838,7 +9502,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 198, + "line": 88, "character": 8 } ], @@ -9858,7 +9522,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 200, + "line": 90, "character": 19 } ], @@ -9911,7 +9575,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 176, + "line": 82, "character": 14 } ], @@ -9922,16 +9586,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 278, @@ -9939,7 +9593,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -9969,7 +9622,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 121, + "line": 62, "character": 15 } ], @@ -10022,7 +9675,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 143, + "line": 70, "character": 18 } ], @@ -10033,16 +9686,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 269, @@ -10050,7 +9693,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -10080,7 +9722,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 103, + "line": 44, "character": 16 } ], @@ -10134,7 +9776,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 165, + "line": 78, "character": 19 } ], @@ -10145,16 +9787,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 275, @@ -10162,7 +9794,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "boolean" @@ -10192,7 +9823,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 154, + "line": 74, "character": 19 } ], @@ -10203,16 +9834,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 272, @@ -10220,7 +9841,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -10250,7 +9870,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 112, + "line": 53, "character": 15 } ], @@ -10304,7 +9924,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 132, + "line": 66, "character": 26 } ], @@ -10315,16 +9935,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 266, @@ -10332,7 +9942,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -10428,7 +10037,7 @@ "sources": [ { "fileName": "src/structures/clientuser.ts", - "line": 15, + "line": 8, "character": 16 } ], @@ -10446,9 +10055,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 423, @@ -10463,9 +10069,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Emails." - }, "parameters": [ { "id": 425, @@ -10473,9 +10076,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "\n" - }, "type": { "type": "reference", "id": 1, @@ -10507,13 +10107,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -10537,7 +10134,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 71, + "line": 36, "character": 11 } ], @@ -10548,16 +10145,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 438, @@ -10567,7 +10154,6 @@ "flags": { "isRest": true }, - "comment": {}, "type": { "type": "array", "elementType": { @@ -10602,7 +10188,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 52, + "line": 24, "character": 12 } ], @@ -10613,16 +10199,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 432, @@ -10650,7 +10226,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 53, + "line": 25, "character": 19 } ], @@ -10670,7 +10246,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 53, + "line": 25, "character": 37 } ], @@ -10720,7 +10296,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 105, + "line": 56, "character": 18 } ], @@ -10731,16 +10307,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 444, @@ -10786,7 +10352,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 88, + "line": 46, "character": 14 } ], @@ -10797,16 +10363,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 441, @@ -10816,7 +10372,6 @@ "flags": { "isRest": true }, - "comment": {}, "type": { "type": "array", "elementType": { @@ -10851,7 +10406,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 32, + "line": 11, "character": 28 } ], @@ -10862,16 +10417,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 428, @@ -10879,7 +10424,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -10943,7 +10487,7 @@ "sources": [ { "fileName": "src/structures/emails.ts", - "line": 13, + "line": 6, "character": 12 } ], @@ -10961,9 +10505,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 448, @@ -10978,9 +10519,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Follows." - }, "parameters": [ { "id": 450, @@ -10988,7 +10526,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reference", "id": 1, @@ -11019,7 +10556,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 30, + "line": 7, "character": 54 } ], @@ -11056,13 +10593,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/follows.ts", - "line": 16, + "line": 5, "character": 8 } ], @@ -11078,13 +10612,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/follows.ts", - "line": 22, + "line": 6, "character": 10 } ], @@ -11102,7 +10633,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 42, + "line": 12, "character": 12 } ], @@ -11113,16 +10644,6 @@ "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, "parameters": [ { "id": 458, @@ -11130,7 +10651,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reflection", "declaration": { @@ -11151,7 +10671,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 42, + "line": 12, "character": 28 } ], @@ -11171,7 +10691,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 42, + "line": 12, "character": 46 } ], @@ -11239,7 +10759,7 @@ "sources": [ { "fileName": "src/structures/follows.ts", - "line": 10, + "line": 4, "character": 13 } ] @@ -11250,9 +10770,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 3094, @@ -11267,9 +10784,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of ForkManager." - }, "parameters": [ { "id": 3096, @@ -11277,7 +10791,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reference", "id": 1, @@ -11310,7 +10823,7 @@ "sources": [ { "fileName": "src/managers/forkmanager.ts", - "line": 19, + "line": 5, "character": 44 } ], @@ -11357,13 +10870,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -11386,13 +10896,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 21, + "line": 5, "character": 5 } ], @@ -11427,7 +10934,7 @@ "sources": [ { "fileName": "src/managers/forkmanager.ts", - "line": 11, + "line": 4, "character": 17 } ], @@ -11445,9 +10952,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 463, @@ -11462,9 +10966,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Gist." - }, "parameters": [ { "id": 465, @@ -11472,7 +10973,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reflection", "declaration": { @@ -16275,7 +15775,7 @@ "sources": [ { "fileName": "src/structures/gist.ts", - "line": 37, + "line": 9, "character": 50 } ], @@ -16323,13 +15823,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -16353,19 +15850,10 @@ "isPrivate": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 21, + "line": 7, "character": 23 } ], @@ -21156,19 +20644,10 @@ "isPublic": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 29, + "line": 8, "character": 23 } ], @@ -21184,19 +20663,10 @@ "kind": 262144, "kindString": "Accessor", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 58, + "line": 18, "character": 13 } ], @@ -21207,15 +20677,6 @@ "kind": 524288, "kindString": "Get signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "type": { "type": "union", "types": [ @@ -21238,19 +20699,10 @@ "kind": 262144, "kindString": "Accessor", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/gist.ts", - "line": 49, + "line": 15, "character": 9 } ], @@ -21261,15 +20713,6 @@ "kind": 524288, "kindString": "Get signature", "flags": {}, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "type": { "type": "union", "types": [ @@ -21316,7 +20759,7 @@ "sources": [ { "fileName": "src/structures/gist.ts", - "line": 13, + "line": 6, "character": 10 } ], @@ -21334,9 +20777,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 913, @@ -21351,9 +20791,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Issue." - }, "parameters": [ { "id": 915, @@ -21361,7 +20798,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reference", "typeArguments": [ @@ -21387,9 +20823,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "\n" - }, "type": { "type": "reference", "id": 1, @@ -21411,13 +20844,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/issue.ts", - "line": 16, + "line": 5, "character": 8 } ], @@ -21447,7 +20877,7 @@ "sources": [ { "fileName": "src/structures/issue.ts", - "line": 10, + "line": 4, "character": 11 } ] @@ -21458,9 +20888,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 3103, @@ -21475,9 +20902,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of IssueManager." - }, "parameters": [ { "id": 3105, @@ -21503,7 +20927,7 @@ "sources": [ { "fileName": "src/managers/issuemanager.ts", - "line": 19, + "line": 6, "character": 39 } ], @@ -21522,7 +20946,7 @@ "sources": [ { "fileName": "src/managers/issuemanager.ts", - "line": 19, + "line": 6, "character": 52 } ], @@ -21570,13 +20994,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -21599,13 +21020,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 21, + "line": 5, "character": 5 } ], @@ -21640,7 +21058,7 @@ "sources": [ { "fileName": "src/managers/issuemanager.ts", - "line": 12, + "line": 5, "character": 18 } ], @@ -21658,9 +21076,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 3031, @@ -21675,9 +21090,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of BaseManager." - }, "parameters": [ { "id": 3033, @@ -21703,7 +21115,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 28, + "line": 6, "character": 39 } ], @@ -21724,7 +21136,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 28, + "line": 6, "character": 52 } ], @@ -21762,13 +21174,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -21786,13 +21195,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 21, + "line": 5, "character": 5 } ], @@ -21822,7 +21228,7 @@ "sources": [ { "fileName": "src/managers/manager.ts", - "line": 9, + "line": 3, "character": 17 } ], @@ -21860,9 +21266,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 919, @@ -21877,9 +21280,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of Repo." - }, "parameters": [ { "id": 921, @@ -21887,7 +21287,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "reference", "id": 1, @@ -21900,9 +21299,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "\n" - }, "type": { "type": "reflection", "declaration": { @@ -42157,13 +41553,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/base.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -42187,19 +41580,10 @@ "isPrivate": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 37, + "line": 9, "character": 23 } ], @@ -62441,19 +61825,10 @@ "isPublic": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 29, + "line": 8, "character": 23 } ], @@ -62472,19 +61847,10 @@ "isPublic": true, "isReadonly": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 21, + "line": 7, "character": 20 } ], @@ -62501,19 +61867,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 92, + "line": 29, "character": 29 } ], @@ -62523,18 +61880,7 @@ "name": "allowMergeCommit", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -62559,19 +61905,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 103, + "line": 33, "character": 29 } ], @@ -62581,18 +61918,7 @@ "name": "allowRebaseMerge", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -62617,19 +61943,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 114, + "line": 37, "character": 29 } ], @@ -62639,18 +61956,7 @@ "name": "allowSquashMerge", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -62675,19 +61981,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 125, + "line": 41, "character": 34 } ], @@ -62697,18 +61994,7 @@ "name": "anonymusAccessEnabled", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -62733,19 +62019,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 136, + "line": 45, "character": 23 } ], @@ -62755,18 +62032,7 @@ "name": "archiveUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -62782,19 +62048,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 147, + "line": 49, "character": 21 } ], @@ -62804,18 +62061,7 @@ "name": "archived", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "boolean" @@ -62831,19 +62077,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 158, + "line": 53, "character": 25 } ], @@ -62853,18 +62090,7 @@ "name": "assigneesUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -62880,19 +62106,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 169, + "line": 57, "character": 21 } ], @@ -62902,18 +62119,7 @@ "name": "blobsUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -62929,19 +62135,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 180, + "line": 61, "character": 24 } ], @@ -62951,18 +62148,7 @@ "name": "branchesUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -62978,19 +62164,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 191, + "line": 65, "character": 21 } ], @@ -63000,18 +62177,7 @@ "name": "cloneUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63027,19 +62193,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 202, + "line": 69, "character": 26 } ], @@ -63049,18 +62206,7 @@ "name": "codeOfConduct", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "union", "types": [ @@ -63194,19 +62340,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 213, + "line": 73, "character": 29 } ], @@ -63216,18 +62353,7 @@ "name": "collaboratorsUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63243,19 +62369,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 224, + "line": 77, "character": 24 } ], @@ -63265,18 +62382,7 @@ "name": "commentsUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63292,19 +62398,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 235, + "line": 81, "character": 23 } ], @@ -63314,18 +62411,7 @@ "name": "commitsUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63341,19 +62427,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 246, + "line": 85, "character": 23 } ], @@ -63363,18 +62440,7 @@ "name": "compareUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63390,19 +62456,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 257, + "line": 89, "character": 24 } ], @@ -63412,18 +62469,7 @@ "name": "contentsUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63439,19 +62485,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 268, + "line": 93, "character": 28 } ], @@ -63461,18 +62498,7 @@ "name": "contributorsUrl", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63488,19 +62514,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 279, + "line": 97, "character": 22 } ], @@ -63510,18 +62527,7 @@ "name": "createdAt", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63537,19 +62543,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 290, + "line": 101, "character": 26 } ], @@ -63559,18 +62556,7 @@ "name": "defaultBranch", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63586,19 +62572,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 70, + "line": 21, "character": 17 } ], @@ -63608,18 +62585,7 @@ "name": "fork", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "boolean" @@ -63635,19 +62601,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 59, + "line": 17, "character": 22 } ], @@ -63657,18 +62614,7 @@ "name": "forkCount", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "number" @@ -63684,19 +62630,10 @@ "flags": { "isPublic": true }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, "sources": [ { "fileName": "src/structures/repo.ts", - "line": 81, + "line": 25, "character": 21 } ], @@ -63706,18 +62643,7 @@ "name": "fullName", "kind": 524288, "kindString": "Get signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "tags": [ - { - "tag": "readonly", - "text": "" - } - ] - }, + "flags": {}, "type": { "type": "intrinsic", "name": "string" @@ -63776,7 +62702,7 @@ "sources": [ { "fileName": "src/structures/repo.ts", - "line": 13, + "line": 6, "character": 10 } ], @@ -63794,9 +62720,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 3112, @@ -63811,9 +62734,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of RepoManager." - }, "parameters": [ { "id": 3114, @@ -63839,7 +62759,7 @@ "sources": [ { "fileName": "src/managers/repomanager.ts", - "line": 18, + "line": 5, "character": 39 } ], @@ -63858,7 +62778,7 @@ "sources": [ { "fileName": "src/managers/repomanager.ts", - "line": 18, + "line": 5, "character": 52 } ], @@ -63906,13 +62826,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -63935,13 +62852,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 21, + "line": 5, "character": 5 } ], @@ -63976,7 +62890,7 @@ "sources": [ { "fileName": "src/managers/repomanager.ts", - "line": 11, + "line": 4, "character": 17 } ], @@ -64011,9 +62925,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of User." - }, "parameters": [ { "id": 2799, @@ -64021,7 +62932,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "union", "types": [ @@ -66219,7 +65129,7 @@ "sources": [ { "fileName": "src/structures/user.ts", - "line": 207, + "line": 45, "character": 50 } ], @@ -66257,13 +65167,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 37, + "line": 17, "character": 11 } ], @@ -66280,13 +65187,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 157, + "line": 37, "character": 5 } ], @@ -66303,13 +65207,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 133, + "line": 33, "character": 6 } ], @@ -66359,13 +65260,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 127, + "line": 32, "character": 9 } ], @@ -66382,13 +65280,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 193, + "line": 43, "character": 11 } ], @@ -66405,13 +65300,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 145, + "line": 35, "character": 7 } ], @@ -66437,13 +65329,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 103, + "line": 28, "character": 11 } ], @@ -66460,13 +65349,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 181, + "line": 41, "character": 11 } ], @@ -66483,13 +65369,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 67, + "line": 22, "character": 14 } ], @@ -66506,13 +65389,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 187, + "line": 42, "character": 11 } ], @@ -66529,13 +65409,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 61, + "line": 21, "character": 14 } ], @@ -66552,13 +65429,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 73, + "line": 23, "character": 10 } ], @@ -66573,13 +65447,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 43, + "line": 18, "character": 12 } ], @@ -66596,13 +65467,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 151, + "line": 36, "character": 10 } ], @@ -66626,13 +65494,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 55, + "line": 20, "character": 9 } ], @@ -66647,13 +65512,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 25, + "line": 15, "character": 4 } ], @@ -66670,13 +65532,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 139, + "line": 34, "character": 10 } ], @@ -66691,13 +65550,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 19, + "line": 14, "character": 7 } ], @@ -66712,13 +65568,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 31, + "line": 16, "character": 8 } ], @@ -66735,13 +65588,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 91, + "line": 26, "character": 18 } ], @@ -66758,13 +65608,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 175, + "line": 40, "character": 13 } ], @@ -66781,13 +65628,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 169, + "line": 39, "character": 13 } ], @@ -66804,13 +65648,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 109, + "line": 29, "character": 19 } ], @@ -66827,13 +65668,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 97, + "line": 27, "character": 10 } ], @@ -66850,13 +65688,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 121, + "line": 31, "character": 11 } ], @@ -66873,13 +65708,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 79, + "line": 24, "character": 12 } ], @@ -66896,13 +65728,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 85, + "line": 25, "character": 18 } ], @@ -66919,13 +65748,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 163, + "line": 38, "character": 17 } ], @@ -66951,13 +65777,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 115, + "line": 30, "character": 6 } ], @@ -66974,13 +65797,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 199, + "line": 44, "character": 11 } ], @@ -66995,13 +65815,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/structures/user.ts", - "line": 49, + "line": 19, "character": 5 } ], @@ -67021,7 +65838,7 @@ "sources": [ { "fileName": "src/structures/user.ts", - "line": 249, + "line": 80, "character": 15 } ], @@ -67031,13 +65848,7 @@ "name": "_patch", "kind": 4096, "kindString": "Call signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "returns": "\n" - }, + "flags": {}, "parameters": [ { "id": 2933, @@ -67045,7 +65856,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "union", "types": [ @@ -69318,9 +68128,6 @@ "kind": 128, "kindString": "Class", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "children": [ { "id": 3121, @@ -69335,9 +68142,6 @@ "kind": 16384, "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Creates an instance of UserManager." - }, "parameters": [ { "id": 3123, @@ -69363,7 +68167,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 22, + "line": 9, "character": 39 } ], @@ -69384,7 +68188,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 22, + "line": 9, "character": 52 } ], @@ -69432,13 +68236,10 @@ "kind": 1024, "kindString": "Property", "flags": {}, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 15, + "line": 4, "character": 8 } ], @@ -69461,13 +68262,10 @@ "flags": { "isOptional": true }, - "comment": { - "shortText": "Description placeholder" - }, "sources": [ { "fileName": "src/managers/manager.ts", - "line": 21, + "line": 5, "character": 5 } ], @@ -69492,7 +68290,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 35, + "line": 13, "character": 20 } ], @@ -69502,19 +68300,7 @@ "name": "fetch", "kind": 4096, "kindString": "Call signature", - "flags": { - "isPublic": true - }, - "comment": { - "shortText": "Description placeholder", - "returns": "\n", - "tags": [ - { - "tag": "async", - "text": "" - } - ] - }, + "flags": {}, "parameters": [ { "id": 3129, @@ -69522,7 +68308,6 @@ "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": {}, "type": { "type": "intrinsic", "name": "string" @@ -69583,7 +68368,7 @@ "sources": [ { "fileName": "src/managers/usermanager.ts", - "line": 15, + "line": 8, "character": 17 } ], From af1f753df7b69e3092876fae1336b8b71c27b18a Mon Sep 17 00:00:00 2001 From: GmBodhi <71921036+GmBodhi@users.noreply.github.com> Date: Sun, 8 Aug 2021 17:28:10 +0530 Subject: [PATCH 71/79] feat: minro --- .gitignore | 1 + docgen.sh | 2 - package.json | 6 +- yarn.lock | 440 ++++++++++++++++++++++++++++++++++++++++++++++++++- 4 files changed, 444 insertions(+), 5 deletions(-) delete mode 100644 docgen.sh diff --git a/.gitignore b/.gitignore index ad89e5f..97920c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ node_modules dist +extras .env inspect.js .yarn diff --git a/docgen.sh b/docgen.sh deleted file mode 100644 index d2a2061..0000000 --- a/docgen.sh +++ /dev/null @@ -1,2 +0,0 @@ -node docgen -yarn gendoc diff --git a/package.json b/package.json index 573b535..2341e74 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,10 @@ "main": "dist/index.js", "scripts": { "test": "mocha -r ts-node/register tests/index.test.ts", - "docs": "sh docgen.sh", + "docs": "run-s docs:mod docs:gen", + "docs:mod": "node docgen", + "docs:gen": "typedoc", "lint": "eslint . --ext .ts --max-warnings=0", - "gendoc": "typedoc", "build": "tsc -p tsconfig.json" }, "keywords": [], @@ -31,6 +32,7 @@ "eslint": "^7.30.0", "jsdoc-json": "^2.0.2", "mocha": "^9.0.2", + "npm-run-all": "^4.1.5", "ts-node": "^10.0.0", "tslib": "^2.3.0", "typedoc": "^0.21.2", diff --git a/yarn.lock b/yarn.lock index b021375..b181742 100644 --- a/yarn.lock +++ b/yarn.lock @@ -369,6 +369,14 @@ buffer-from@^1.0.0: resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + callsites@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" @@ -391,7 +399,7 @@ chai@^4.3.4: pathval "^1.1.1" type-detect "^4.0.5" -chalk@^2.0.0: +chalk@^2.0.0, chalk@^2.4.1: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -478,6 +486,17 @@ create-require@^1.1.0: resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + cross-spawn@^7.0.2: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" @@ -518,6 +537,13 @@ deep-is@^0.1.3: resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= +define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -564,6 +590,45 @@ enquirer@^2.3.5: dependencies: ansi-colors "^4.1.1" +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.18.0-next.2: + version "1.18.5" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.5.tgz#9b10de7d4c206a3581fd5b2124233e04db49ae19" + integrity sha512-DDggyJLoS91CkJjgauM5c0yZMjiD1uK3KcaCeAmffGwZ+ODWzOkPN4QwRbsK5DOFf06fywmyLci3ZD8jLGhVYA== + dependencies: + call-bind "^1.0.2" + es-to-primitive "^1.2.1" + function-bind "^1.1.1" + get-intrinsic "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.2" + internal-slot "^1.0.3" + is-callable "^1.2.3" + is-negative-zero "^2.0.1" + is-regex "^1.1.3" + is-string "^1.0.6" + object-inspect "^1.11.0" + object-keys "^1.1.1" + object.assign "^4.1.2" + string.prototype.trimend "^1.0.4" + string.prototype.trimstart "^1.0.4" + unbox-primitive "^1.0.1" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + escalade@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" @@ -792,6 +857,11 @@ fsevents@~2.3.2: resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" @@ -807,6 +877,15 @@ get-func-name@^2.0.0: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41" integrity sha1-6td0q+5y4gQJQzoGY2YCPdaIekE= +get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-symbols "^1.0.1" + glob-parent@^5.1.2, glob-parent@~5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" @@ -845,6 +924,11 @@ globby@^11.0.3: merge2 "^1.3.0" slash "^3.0.0" +graceful-fs@^4.1.2: + version "4.2.8" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" + integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== + growl@1.10.5: version "1.10.5" resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" @@ -862,6 +946,11 @@ handlebars@^4.7.7: optionalDependencies: uglify-js "^3.1.4" +has-bigints@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" + integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" @@ -872,11 +961,35 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== +has-symbols@^1.0.1, has-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + he@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== +hosted-git-info@^2.1.4: + version "2.8.9" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== + ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" @@ -913,6 +1026,25 @@ inherits@2: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +internal-slot@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" + integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== + dependencies: + get-intrinsic "^1.1.0" + has "^1.0.3" + side-channel "^1.0.4" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-bigint@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.3.tgz#fc9d9e364210480675653ddaea0518528d49a581" + integrity sha512-ZU538ajmYJmzysE5yU4Y7uIrPQ2j704u+hXFiIPQExpqzzUbpe5jCPdTfmz7jXRxZdvjY3KZ3ZNenoXQovX+Dg== + is-binary-path@~2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" @@ -920,6 +1052,33 @@ is-binary-path@~2.1.0: dependencies: binary-extensions "^2.0.0" +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.4, is-callable@^1.2.3: + version "1.2.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" + integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== + +is-core-module@^2.2.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.5.0.tgz#f754843617c70bfd29b7bd87327400cda5c18491" + integrity sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg== + dependencies: + has "^1.0.3" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + is-extglob@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" @@ -942,6 +1101,18 @@ is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: dependencies: is-extglob "^2.1.1" +is-negative-zero@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" + integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== + +is-number-object@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.6.tgz#6a7aaf838c7f0686a50b4553f7e54a96494e89f0" + integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== + dependencies: + has-tostringtag "^1.0.0" + is-number@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" @@ -952,6 +1123,28 @@ is-plain-obj@^2.1.0: resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== +is-regex@^1.1.3: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-string@^1.0.5, is-string@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + is-unicode-supported@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" @@ -987,6 +1180,11 @@ jsdoc-json@^2.0.2: resolved "https://registry.yarnpkg.com/jsdoc-json/-/jsdoc-json-2.0.2.tgz#a6452d001f5eefa0918a53a9a934458b9d72eae3" integrity sha512-n0vVkWvBMHFNUsW6HUhMrVCk+nJZwW3kpd9/JiCgdYvjjZV3NcP5fV3+lTgOkOA/bTKJxbCKT8Au92FHII3pnA== +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -1017,6 +1215,16 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" +load-json-file@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" + integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= + dependencies: + graceful-fs "^4.1.2" + parse-json "^4.0.0" + pify "^3.0.0" + strip-bom "^3.0.0" + locate-path@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" @@ -1081,6 +1289,11 @@ marked@^2.1.1: resolved "https://registry.yarnpkg.com/marked/-/marked-2.1.3.tgz#bd017cef6431724fd4b27e0657f5ceb14bff3753" integrity sha512-/Q+7MGzaETqifOMWYEA7HVMaZb4XbcRfaOzcSsHZEith83KGlvaSG33u0SKu89Mj5h+T8V2hM+8O45Qc5XTgwA== +memorystream@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" + integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= + merge2@^1.3.0: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" @@ -1174,16 +1387,66 @@ neo-async@^2.6.0: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + node-fetch@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + normalize-path@^3.0.0, normalize-path@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +npm-run-all@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" + integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== + dependencies: + ansi-styles "^3.2.1" + chalk "^2.4.1" + cross-spawn "^6.0.5" + memorystream "^0.3.1" + minimatch "^3.0.4" + pidtree "^0.3.0" + read-pkg "^3.0.0" + shell-quote "^1.6.1" + string.prototype.padend "^3.0.0" + +object-inspect@^1.11.0, object-inspect@^1.9.0: + version "1.11.0" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.11.0.tgz#9dceb146cedd4148a0d9e51ab88d34cf509922b1" + integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== + +object-keys@^1.0.12, object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" + integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== + dependencies: + call-bind "^1.0.0" + define-properties "^1.1.3" + has-symbols "^1.0.1" + object-keys "^1.1.1" + once@^1.3.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" @@ -1231,6 +1494,14 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + path-exists@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" @@ -1241,11 +1512,28 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= +path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + path-key@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== +path-parse@^1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" @@ -1261,6 +1549,16 @@ picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== +pidtree@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" + integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + prelude-ls@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" @@ -1288,6 +1586,15 @@ randombytes@^2.1.0: dependencies: safe-buffer "^5.1.0" +read-pkg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" + integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= + dependencies: + load-json-file "^4.0.0" + normalize-package-data "^2.3.2" + path-type "^3.0.0" + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -1315,6 +1622,14 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +resolve@^1.10.0: + version "1.20.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" + integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== + dependencies: + is-core-module "^2.2.0" + path-parse "^1.0.6" + reusify@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" @@ -1339,6 +1654,11 @@ safe-buffer@^5.1.0: resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== +"semver@2 || 3 || 4 || 5", semver@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" + integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + semver@^7.2.1, semver@^7.3.5: version "7.3.5" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" @@ -1353,6 +1673,13 @@ serialize-javascript@6.0.0: dependencies: randombytes "^2.1.0" +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -1360,11 +1687,21 @@ shebang-command@^2.0.0: dependencies: shebang-regex "^3.0.0" +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + shebang-regex@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== +shell-quote@^1.6.1: + version "1.7.2" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" + integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + shiki@^0.9.3: version "0.9.5" resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.9.5.tgz#c8da81a05fbfd1810729c6873901a729a72ec541" @@ -1374,6 +1711,15 @@ shiki@^0.9.3: onigasm "^2.2.5" vscode-textmate "5.2.0" +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -1401,6 +1747,32 @@ source-map@^0.6.0, source-map@^0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +spdx-correct@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" + integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" + integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== + +spdx-expression-parse@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" + integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.9" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.9.tgz#8a595135def9592bda69709474f1cbeea7c2467f" + integrity sha512-Ki212dKK4ogX+xDo4CtOZBVIwhsKBEfsEEcwmJfLQzirgc2jIWdzg40Unxz/HzEUqM1WFzVlQSMF9kZZ2HboLQ== + sprintf-js@~1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" @@ -1423,6 +1795,31 @@ string-width@^4.1.0, string-width@^4.2.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.0" +string.prototype.padend@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz#6858ca4f35c5268ebd5e8615e1327d55f59ee311" + integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.18.0-next.2" + +string.prototype.trimend@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" + integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + +string.prototype.trimstart@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" + integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + strip-ansi@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" @@ -1437,6 +1834,11 @@ strip-ansi@^6.0.0: dependencies: ansi-regex "^5.0.0" +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: version "3.1.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" @@ -1567,6 +1969,16 @@ uglify-js@^3.1.4: resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.10.tgz#a6bd0d28d38f592c3adb6b180ea6e07e1e540a8d" integrity sha512-57H3ACYFXeo1IaZ1w02sfA71wI60MGco/IQFjOqK+WtKoprh7Go2/yvd2HPtoJILO2Or84ncLccI4xoHMTSbGg== +unbox-primitive@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" + integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== + dependencies: + function-bind "^1.1.1" + has-bigints "^1.0.1" + has-symbols "^1.0.2" + which-boxed-primitive "^1.0.2" + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -1579,11 +1991,30 @@ v8-compile-cache@^2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + vscode-textmate@5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + which@2.0.2, which@^2.0.1: version "2.0.2" resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" @@ -1591,6 +2022,13 @@ which@2.0.2, which@^2.0.1: dependencies: isexe "^2.0.0" +which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + wide-align@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" From d093dbfcbffe51f9ace55c48d726f31bea260d24 Mon Sep 17 00:00:00 2001 From: Gm Date: Tue, 10 Aug 2021 11:03:57 +0530 Subject: [PATCH 72/79] Update docs.yml --- .github/workflows/docs.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9e0d117..9cb3eee 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,7 +2,6 @@ name: Docs on: push: - branches: [dev] schedule: - cron: "0 0 * * *" From ee4d55159ce8b6ac50e1b2d148ece9d342136976 Mon Sep 17 00:00:00 2001 From: Gm Date: Tue, 10 Aug 2021 11:06:16 +0530 Subject: [PATCH 73/79] Update docs.yml --- .github/workflows/docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9cb3eee..73cac01 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,6 +2,9 @@ name: Docs on: push: + branches: + - "**" + - "!docs" schedule: - cron: "0 0 * * *" From 1c4af2e156980e0b46174974d40a123d39b882de Mon Sep 17 00:00:00 2001 From: Gm Date: Mon, 20 Sep 2021 07:38:03 +0530 Subject: [PATCH 74/79] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40c31a3..1078820 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Github-api Information -**This package is still in development.** +**This package is still in development. Updated: Monday, 20 September 2021** An Object-Oriented wrapper for interacting with GitHub's api.
Fast as hell
From 4c92cd406ded805dedd642985592312b7964fd87 Mon Sep 17 00:00:00 2001 From: Gm Date: Thu, 14 Oct 2021 08:54:54 +0530 Subject: [PATCH 75/79] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1078820..1d67a9e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Github-api Information -**This package is still in development. Updated: Monday, 20 September 2021** +**This package is still in development. Updated: Thursday, 14 October 2021** An Object-Oriented wrapper for interacting with GitHub's api.
Fast as hell
From fa6dfac8cf477e26e3fd0abe01c561305b22137c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Jan 2022 21:56:42 +0000 Subject: [PATCH 76/79] build(deps): bump node-fetch from 2.6.1 to 3.1.1 Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 3.1.1. - [Release notes](https://github.com/node-fetch/node-fetch/releases) - [Changelog](https://github.com/node-fetch/node-fetch/blob/main/docs/CHANGELOG.md) - [Commits](https://github.com/node-fetch/node-fetch/compare/v2.6.1...v3.1.1) --- updated-dependencies: - dependency-name: node-fetch dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- package.json | 2 +- yarn.lock | 42 ++++++++++++++++++++++++++++++++++++++---- 2 files changed, 39 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 2341e74..d61612a 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "license": "ISC", "dependencies": { "@discordjs/collection": "^0.1.6", - "node-fetch": "^2.6.1" + "node-fetch": "^3.1.1" }, "devDependencies": { "@octokit/types": "^6.18.0", diff --git a/yarn.lock b/yarn.lock index b181742..620b32a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -506,6 +506,11 @@ cross-spawn@^7.0.2: shebang-command "^2.0.0" which "^2.0.1" +data-uri-to-buffer@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz#b5db46aea50f6176428ac05b73be39a57701a64b" + integrity sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA== + debug@4.3.1: version "4.3.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" @@ -798,6 +803,14 @@ fastq@^1.6.0: dependencies: reusify "^1.0.4" +fetch-blob@^3.1.2, fetch-blob@^3.1.3: + version "3.1.4" + resolved "https://registry.yarnpkg.com/fetch-blob/-/fetch-blob-3.1.4.tgz#e8c6567f80ad7fc22fd302e7dcb72bafde9c1717" + integrity sha512-Eq5Xv5+VlSrYWEqKrusxY1C3Hm/hjeAsCGVG3ft7pZahlUAChpGZT/Ms1WmSLnEAisEXszjzu/s+ce6HZB2VHA== + dependencies: + node-domexception "^1.0.0" + web-streams-polyfill "^3.0.3" + file-entry-cache@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" @@ -847,6 +860,13 @@ form-data@^3.0.0: combined-stream "^1.0.8" mime-types "^2.1.12" +formdata-polyfill@^4.0.10: + version "4.0.10" + resolved "https://registry.yarnpkg.com/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz#24807c31c9d402e002ab3d8c720144ceb8848423" + integrity sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g== + dependencies: + fetch-blob "^3.1.2" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" @@ -1392,10 +1412,19 @@ nice-try@^1.0.4: resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -node-fetch@^2.6.1: - version "2.6.1" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" - integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== +node-domexception@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + +node-fetch@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-3.1.1.tgz#d0d9607e455b3087e3092b821b5b1f1ebf4c2147" + integrity sha512-SMk+vKgU77PYotRdWzqZGTZeuFKlsJ0hu4KPviQKkfY+N3vn2MIzr0rvpnYpR8MtB3IEuhlEcuOLbGvLRlA+yg== + dependencies: + data-uri-to-buffer "^4.0.0" + fetch-blob "^3.1.3" + formdata-polyfill "^4.0.10" normalize-package-data@^2.3.2: version "2.5.0" @@ -2004,6 +2033,11 @@ vscode-textmate@5.2.0: resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-5.2.0.tgz#01f01760a391e8222fe4f33fbccbd1ad71aed74e" integrity sha512-Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ== +web-streams-polyfill@^3.0.3: + version "3.2.0" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.2.0.tgz#a6b74026b38e4885869fb5c589e90b95ccfc7965" + integrity sha512-EqPmREeOzttaLRm5HS7io98goBgZ7IVz79aDvqjD0kYXLtFZTc0T/U6wHTPKyIjb+MdN7DFIIX6hgdBEpWmfPA== + which-boxed-primitive@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" From 143a4895aeca372e182a085875ad28988c8fd51f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 05:59:52 +0000 Subject: [PATCH 77/79] build(deps): bump minimist from 1.2.5 to 1.2.6 Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 620b32a..7d4eb48 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1347,9 +1347,9 @@ minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.4: brace-expansion "^1.1.7" minimist@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" - integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== + version "1.2.6" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" + integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== mocha@^9.0.2: version "9.0.2" From 5b10e7b1b81f6e9f6c5a05cfb59fa996c4317a81 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 Apr 2022 13:00:24 +0000 Subject: [PATCH 78/79] build(deps): bump ansi-regex from 3.0.0 to 3.0.1 Bumps [ansi-regex](https://github.com/chalk/ansi-regex) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/chalk/ansi-regex/releases) - [Commits](https://github.com/chalk/ansi-regex/compare/v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: ansi-regex dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 7d4eb48..8dd6cb7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -266,9 +266,9 @@ ansi-colors@4.1.1, ansi-colors@^4.1.1: integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== ansi-regex@^5.0.0: version "5.0.0" From c0beef0485b7214ac3d41b4498de5c5071044936 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jun 2022 10:37:49 +0000 Subject: [PATCH 79/79] build(deps): bump shell-quote from 1.7.2 to 1.7.3 Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.7.2 to 1.7.3. - [Release notes](https://github.com/substack/node-shell-quote/releases) - [Changelog](https://github.com/substack/node-shell-quote/blob/master/CHANGELOG.md) - [Commits](https://github.com/substack/node-shell-quote/compare/v1.7.2...1.7.3) --- updated-dependencies: - dependency-name: shell-quote dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 7d4eb48..414e243 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1727,9 +1727,9 @@ shebang-regex@^3.0.0: integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== shell-quote@^1.6.1: - version "1.7.2" - resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2" - integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== + version "1.7.3" + resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" + integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== shiki@^0.9.3: version "0.9.5"