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..3d7a56b
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,17 @@
+{
+ "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/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
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
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
new file mode 100644
index 0000000..73cac01
--- /dev/null
+++ b/.github/workflows/docs.yml
@@ -0,0 +1,31 @@
+name: Docs
+
+on:
+ push:
+ branches:
+ - "**"
+ - "!docs"
+ schedule:
+ - cron: "0 0 * * *"
+
+jobs:
+ Docs:
+ 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 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/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 0000000..d91ab91
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,22 @@
+name: Lint
+
+on:
+ push:
+ pull_request:
+ schedule:
+ - cron: "0 0 * * *"
+
+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
new file mode 100644
index 0000000..9bba1a2
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,26 @@
+name: Tests
+
+on:
+ push:
+ branches: [dev]
+ schedule:
+ - cron: "0 0 * * *"
+
+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
+ - name: Build
+ run: yarn build
+ - name: Run Tests
+ run: yarn test
+ env:
+ TEST: ${{ secrets.TEST }}
diff --git a/.gitignore b/.gitignore
index d137720..97920c1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,7 @@
node_modules
-test.js
-dist
\ No newline at end of file
+dist
+extras
+.env
+inspect.js
+.yarn
+.yarnrc.yml
diff --git a/.npmignore b/.npmignore
new file mode 100644
index 0000000..5a6ff83
Binary files /dev/null and b/.npmignore differ
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
+ }
+}
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.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 0000000..c8e1236
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,36 @@
+# 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).
+
+We're currently interested in covering all the available endpoints.
+
+
+## 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)
+
+#### Committing
+ 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..!
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.
diff --git a/README.md b/README.md
index f0fb6b6..1d67a9e 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,12 @@
-# github-api
+# Github-api Information
-**Still in Development.**
+**This package is still in development. Updated: Thursday, 14 October 2021**
-A wrapper for interacting with GitHub's api.
-[Discord](https://discord.gg/U8c8H3sRZW)
+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
+
+## Contributing
+Please refer [Contributing Guide](./CONTRIBUTING.md)
diff --git a/docgen.js b/docgen.js
new file mode 100644
index 0000000..5a5ab80
--- /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) + "\n");
diff --git a/docs/1.0.0.json b/docs/1.0.0.json
new file mode 100644
index 0000000..03f2c5b
--- /dev/null
+++ b/docs/1.0.0.json
@@ -0,0 +1,68416 @@
+{
+ "id": 0,
+ "name": "github-api",
+ "kind": 0,
+ "kindString": "Project",
+ "flags": {},
+ "originalName": "",
+ "children": [
+ {
+ "id": 109,
+ "name": "Actions",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 110,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 111,
+ "name": "new Actions",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 112,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "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": 109,
+ "name": "Actions"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 123,
+ "name": "Base.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 122,
+ "name": "Base.constructor"
+ }
+ },
+ {
+ "id": 117,
+ "name": "artifacts",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/actions.ts",
+ "line": 6,
+ "character": 13
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3039,
+ "name": "ArtifactsManager"
+ }
+ },
+ {
+ "id": 120,
+ "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": 118,
+ "name": "owner",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/actions.ts",
+ "line": 7,
+ "character": 9
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 119,
+ "name": "repo",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/actions.ts",
+ "line": 8,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 110
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 117,
+ 120,
+ 118,
+ 119
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/actions.ts",
+ "line": 5,
+ "character": 13
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 121,
+ "name": "Base"
+ }
+ ]
+ },
+ {
+ "id": 3039,
+ "name": "ArtifactsManager",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 3040,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 3041,
+ "name": "new ArtifactsManager",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3042,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3043,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3044,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 10,
+ "character": 24
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3044
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 3045,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3046,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3047,
+ "name": "owner",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 11,
+ "character": 28
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 3048,
+ "name": "repo",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 11,
+ "character": 42
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3047,
+ 3048
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3039,
+ "name": "ArtifactsManager"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 3032,
+ "name": "Manager.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 3031,
+ "name": "Manager.constructor"
+ }
+ },
+ {
+ "id": 3091,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3037,
+ "name": "Manager.client"
+ }
+ },
+ {
+ "id": 3049,
+ "name": "owner",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 7,
+ "character": 7
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 3050,
+ "name": "repo",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 8,
+ "character": 6
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 3092,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 5,
+ "character": 5
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3038,
+ "name": "Manager.url"
+ }
+ },
+ {
+ "id": 3085,
+ "name": "delete",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 43,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 3086,
+ "name": "delete",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3087,
+ "name": "artifactId",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 3088,
+ "name": "download",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 51,
+ "character": 16
+ }
+ ],
+ "signatures": [
+ {
+ "id": 3089,
+ "name": "download",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3090,
+ "name": "artifactId",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 3071,
+ "name": "get",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 33,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 3072,
+ "name": "get",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3073,
+ "name": "artifactId",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 3074,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3080,
+ "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": 3082,
+ "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": 3081,
+ "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": 3083,
+ "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": 3075,
+ "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": 3077,
+ "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": 3076,
+ "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": 3078,
+ "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": 3084,
+ "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": 3079,
+ "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": [
+ 3080,
+ 3082,
+ 3081,
+ 3083,
+ 3075,
+ 3077,
+ 3076,
+ 3078,
+ 3084,
+ 3079
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 3051,
+ "name": "list",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 17,
+ "character": 12
+ }
+ ],
+ "signatures": [
+ {
+ "id": 3052,
+ "name": "list",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3053,
+ "name": "options",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3054,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3055,
+ "name": "page",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 18,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 3056,
+ "name": "perPage",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 19,
+ "character": 11
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3055,
+ 3056
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 3057,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3059,
+ "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": 3060,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3066,
+ "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": 3068,
+ "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": 3067,
+ "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": 3069,
+ "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": 3061,
+ "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": 3063,
+ "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": 3062,
+ "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": 3064,
+ "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": 3070,
+ "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": 3065,
+ "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": [
+ 3066,
+ 3068,
+ 3067,
+ 3069,
+ 3061,
+ 3063,
+ 3062,
+ 3064,
+ 3070,
+ 3065
+ ]
+ }
+ ]
+ }
+ }
+ }
+ },
+ {
+ "id": 3058,
+ "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": [
+ 3059,
+ 3058
+ ]
+ }
+ ]
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 3040
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3091,
+ 3049,
+ 3050,
+ 3092
+ ]
+ },
+ {
+ "title": "Methods",
+ "kind": 2048,
+ "children": [
+ 3085,
+ 3088,
+ 3071,
+ 3051
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/managers/artifactsManager.ts",
+ "line": 6,
+ "character": 22
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 3030,
+ "name": "Manager"
+ }
+ ]
+ },
+ {
+ "id": 121,
+ "name": "Base",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 122,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 123,
+ "name": "new Base",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 124,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 121,
+ "name": "Base"
+ }
+ }
+ ]
+ },
+ {
+ "id": 125,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/base.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 122
+ ]
+ },
+ {
+ "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": 422,
+ "name": "Emails"
+ },
+ {
+ "type": "reference",
+ "id": 462,
+ "name": "Gist"
+ },
+ {
+ "type": "reference",
+ "id": 918,
+ "name": "Repo"
+ }
+ ]
+ },
+ {
+ "id": 126,
+ "name": "Blocks",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 127,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 128,
+ "name": "new Blocks",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 129,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 126,
+ "name": "Blocks"
+ },
+ "overwrites": {
+ "type": "reference",
+ "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",
+ "id": 125,
+ "name": "Base.client"
+ }
+ },
+ {
+ "id": 138,
+ "name": "block",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/blocks.ts",
+ "line": 54,
+ "character": 13
+ }
+ ],
+ "signatures": [
+ {
+ "id": 139,
+ "name": "block",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 140,
+ "name": "username",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "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": 134,
+ "name": "username",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "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
+ }
+ ],
+ "signatures": [
+ {
+ "id": 131,
+ "name": "list",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 135,
+ "name": "unBlock",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/blocks.ts",
+ "line": 43,
+ "character": 15
+ }
+ ],
+ "signatures": [
+ {
+ "id": 136,
+ "name": "unBlock",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 137,
+ "name": "username",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "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": 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",
+ "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": 3120,
+ "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": 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": 2798,
+ "name": "User.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 2797,
+ "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": 2903,
+ "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": 2923,
+ "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": 2919,
+ "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": 2899,
+ "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": 2918,
+ "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": 2929,
+ "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": 2921,
+ "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": 422,
+ "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": 2914,
+ "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": 2927,
+ "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": 2908,
+ "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": 2928,
+ "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": 2907,
+ "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": 2909,
+ "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": 2904,
+ "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": 2922,
+ "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": 2906,
+ "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": 2901,
+ "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": 2920,
+ "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": 2900,
+ "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": 2902,
+ "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": 2912,
+ "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": 2926,
+ "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": 2925,
+ "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": 2915,
+ "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": 2913,
+ "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": 2917,
+ "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": 2910,
+ "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": 2911,
+ "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": 2924,
+ "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": 2916,
+ "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": 2930,
+ "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": 2905,
+ "name": "User.url"
+ }
+ },
+ {
+ "id": 323,
+ "name": "_patch",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 80,
+ "character": 15
+ }
+ ],
+ "signatures": [
+ {
+ "id": 324,
+ "name": "_patch",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 325,
+ "name": "data",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 326,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "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"
+ }
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "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"
+ }
+ },
+ {
+ "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"
+ }
+ },
+ {
+ "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"
+ }
+ ]
+ }
+ },
+ {
+ "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"
+ }
+ },
+ {
+ "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": 2796,
+ "name": "User"
+ }
+ ],
+ "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": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ ],
+ "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": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ ],
+ "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": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ ],
+ "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": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ ],
+ "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": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ ],
+ "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": 2796,
+ "name": "User"
+ }
+ ]
+ },
+ {
+ "id": 422,
+ "name": "Emails",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 423,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 424,
+ "name": "new Emails",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 425,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 422,
+ "name": "Emails"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 123,
+ "name": "Base.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 122,
+ "name": "Base.constructor"
+ }
+ },
+ {
+ "id": 446,
+ "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": 436,
+ "name": "add",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 36,
+ "character": 11
+ }
+ ],
+ "signatures": [
+ {
+ "id": 437,
+ "name": "add",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 438,
+ "name": "emails",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "name": "Email"
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 430,
+ "name": "list",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 24,
+ "character": 12
+ }
+ ],
+ "signatures": [
+ {
+ "id": 431,
+ "name": "list",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 432,
+ "name": "options",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 433,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 434,
+ "name": "page",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 25,
+ "character": 19
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 435,
+ "name": "perPage",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 25,
+ "character": 37
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 434,
+ 435
+ ]
+ }
+ ]
+ }
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "name": "Email"
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 442,
+ "name": "listPublic",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 56,
+ "character": 18
+ }
+ ],
+ "signatures": [
+ {
+ "id": 443,
+ "name": "listPublic",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 444,
+ "name": "options",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 445,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {}
+ }
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "name": "Email"
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 439,
+ "name": "remove",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 46,
+ "character": 14
+ }
+ ],
+ "signatures": [
+ {
+ "id": 440,
+ "name": "remove",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 441,
+ "name": "emails",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {
+ "isRest": true
+ },
+ "type": {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "reference",
+ "name": "Email"
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ },
+ {
+ "id": 426,
+ "name": "setPrimaryVisibility",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 11,
+ "character": 28
+ }
+ ],
+ "signatures": [
+ {
+ "id": 427,
+ "name": "setPrimaryVisibility",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 428,
+ "name": "visibility",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 429,
+ "name": "email",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {
+ "isOptional": true
+ },
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "reference",
+ "name": "Email"
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 423
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 446
+ ]
+ },
+ {
+ "title": "Methods",
+ "kind": 2048,
+ "children": [
+ 436,
+ 430,
+ 442,
+ 439,
+ 426
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/emails.ts",
+ "line": 6,
+ "character": 12
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 121,
+ "name": "Base"
+ }
+ ]
+ },
+ {
+ "id": 447,
+ "name": "Follows",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 448,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 449,
+ "name": "new Follows",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 450,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ },
+ {
+ "id": 451,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 452,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 453,
+ "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": [
+ 453
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 447,
+ "name": "Follows"
+ }
+ }
+ ]
+ },
+ {
+ "id": 454,
+ "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": 455,
+ "name": "username",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/follows.ts",
+ "line": 6,
+ "character": 10
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 456,
+ "name": "list",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/follows.ts",
+ "line": 12,
+ "character": 12
+ }
+ ],
+ "signatures": [
+ {
+ "id": 457,
+ "name": "list",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 458,
+ "name": "options",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 459,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 460,
+ "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": 461,
+ "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": [
+ 460,
+ 461
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "array",
+ "elementType": {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 448
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 454,
+ 455
+ ]
+ },
+ {
+ "title": "Methods",
+ "kind": 2048,
+ "children": [
+ 456
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/follows.ts",
+ "line": 4,
+ "character": 13
+ }
+ ]
+ },
+ {
+ "id": 3093,
+ "name": "ForkManager",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 3094,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 3095,
+ "name": "new ForkManager",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3096,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ },
+ {
+ "id": 3097,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3098,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3099,
+ "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": [
+ 3099
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3093,
+ "name": "ForkManager"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 3032,
+ "name": "Manager.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 3031,
+ "name": "Manager.constructor"
+ }
+ },
+ {
+ "id": 3100,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3037,
+ "name": "Manager.client"
+ }
+ },
+ {
+ "id": 3101,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 5,
+ "character": 5
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3038,
+ "name": "Manager.url"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 3094
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3100,
+ 3101
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/managers/forkmanager.ts",
+ "line": 4,
+ "character": 17
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 3030,
+ "name": "Manager"
+ }
+ ]
+ },
+ {
+ "id": 462,
+ "name": "Gist",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 463,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 464,
+ "name": "new Gist",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 465,
+ "name": "data",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 466,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 657,
+ "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": 659,
+ "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": 635,
+ "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": 654,
+ "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": 656,
+ "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": 641,
+ "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": 642,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 643,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 644,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 645,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 652,
+ "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": 646,
+ "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": 648,
+ "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": 649,
+ "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": 650,
+ "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": 651,
+ "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": 647,
+ "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": [
+ 652,
+ 646,
+ 648,
+ 649,
+ 650,
+ 651,
+ 647
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "node_modules/@octokit/openapi-types/types.d.ts",
+ "line": 6333,
+ "character": 22
+ }
+ ]
+ }
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 552,
+ "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": 553,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 576,
+ "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": 600,
+ "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": 556,
+ "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": 573,
+ "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": 575,
+ "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": 562,
+ "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": 563,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 564,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 565,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 566,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 567,
+ "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": 569,
+ "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": 570,
+ "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": 571,
+ "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": 568,
+ "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": [
+ 567,
+ 569,
+ 570,
+ 571,
+ 568
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "node_modules/@octokit/openapi-types/types.d.ts",
+ "line": 6304,
+ "character": 24
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 625,
+ "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": 626,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 627,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 628,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 555,
+ "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": 559,
+ "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": 560,
+ "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": 629,
+ "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": 630,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 631,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 632,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 561,
+ "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": 557,
+ "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": 558,
+ "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": 601,
+ "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": 602,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 608,
+ "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": 604,
+ "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": 619,
+ "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": 612,
+ "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": 613,
+ "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": 614,
+ "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": 609,
+ "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": 611,
+ "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": 606,
+ "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": 605,
+ "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": 603,
+ "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": 607,
+ "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": 617,
+ "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": 620,
+ "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": 618,
+ "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": 622,
+ "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": 623,
+ "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": 615,
+ "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": 616,
+ "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": 621,
+ "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": 610,
+ "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": [
+ 608,
+ 604,
+ 619,
+ 612,
+ 613,
+ 614,
+ 609,
+ 611,
+ 606,
+ 605,
+ 603,
+ 607,
+ 617,
+ 620,
+ 618,
+ 622,
+ 623,
+ 615,
+ 616,
+ 621,
+ 610
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 572,
+ "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": 624,
+ "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": 574,
+ "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": 554,
+ "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": 577,
+ "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": 578,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 584,
+ "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": 580,
+ "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": 595,
+ "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": 588,
+ "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": 589,
+ "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": 590,
+ "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": 585,
+ "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": 587,
+ "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": 582,
+ "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": 581,
+ "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": 579,
+ "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": 583,
+ "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": 593,
+ "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": 596,
+ "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": 594,
+ "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": 598,
+ "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": 599,
+ "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": 591,
+ "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": 592,
+ "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": 597,
+ "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": 586,
+ "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": [
+ 584,
+ 580,
+ 595,
+ 588,
+ 589,
+ 590,
+ 585,
+ 587,
+ 582,
+ 581,
+ 579,
+ 583,
+ 593,
+ 596,
+ 594,
+ 598,
+ 599,
+ 591,
+ 592,
+ 597,
+ 586
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 576,
+ 600,
+ 556,
+ 573,
+ 575,
+ 562,
+ 625,
+ 555,
+ 559,
+ 560,
+ 629,
+ 561,
+ 557,
+ 558,
+ 601,
+ 572,
+ 624,
+ 574,
+ 554,
+ 577
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 467,
+ "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": 468,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 517,
+ "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": 469,
+ "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": 518,
+ "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": 470,
+ "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": 471,
+ "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": 472,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 476,
+ "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": 497,
+ "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": 493,
+ "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": 516,
+ "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": 492,
+ "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": 503,
+ "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": 515,
+ "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": 495,
+ "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": 487,
+ "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": 501,
+ "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": 480,
+ "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": 502,
+ "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": 481,
+ "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": 482,
+ "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": 477,
+ "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": 496,
+ "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": 479,
+ "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": 474,
+ "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": 494,
+ "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": 473,
+ "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": 491,
+ "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": 475,
+ "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": 485,
+ "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": 514,
+ "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": 505,
+ "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": 506,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 507,
+ "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": 508,
+ "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": 510,
+ "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": 509,
+ "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": [
+ 507,
+ 508,
+ 510,
+ 509
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 512,
+ "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": 500,
+ "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": 499,
+ "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": 488,
+ "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": 486,
+ "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": 490,
+ "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": 483,
+ "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": 484,
+ "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": 511,
+ "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": 513,
+ "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": 498,
+ "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": 489,
+ "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": 504,
+ "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": 478,
+ "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": [
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 517,
+ 469,
+ 518,
+ 470,
+ 471
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 634,
+ "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": 638,
+ "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": 639,
+ "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": 519,
+ "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": 520,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 546,
+ "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": 547,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 549,
+ "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": 550,
+ "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": 548,
+ "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": [
+ 549,
+ 550,
+ 548
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 545,
+ "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": 551,
+ "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": 521,
+ "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": 522,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 528,
+ "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": 524,
+ "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": 539,
+ "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": 532,
+ "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": 533,
+ "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": 534,
+ "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": 529,
+ "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": 531,
+ "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": 526,
+ "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": 525,
+ "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": 523,
+ "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": 527,
+ "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": 537,
+ "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": 540,
+ "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": 538,
+ "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": 542,
+ "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": 543,
+ "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": 535,
+ "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": 536,
+ "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": 541,
+ "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": 530,
+ "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": [
+ 528,
+ 524,
+ 539,
+ 532,
+ 533,
+ 534,
+ 529,
+ 531,
+ 526,
+ 525,
+ 523,
+ 527,
+ 537,
+ 540,
+ 538,
+ 542,
+ 543,
+ 535,
+ 536,
+ 541,
+ 530
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 544,
+ "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": [
+ 546,
+ 545,
+ 551,
+ 521,
+ 544
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 640,
+ "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": 636,
+ "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": 637,
+ "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": 660,
+ "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": 661,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 667,
+ "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": 663,
+ "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": 678,
+ "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": 671,
+ "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": 672,
+ "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": 673,
+ "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": 668,
+ "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": 670,
+ "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": 665,
+ "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": 664,
+ "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": 662,
+ "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": 666,
+ "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": 676,
+ "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": 679,
+ "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": 677,
+ "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": 681,
+ "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": 682,
+ "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": 674,
+ "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": 675,
+ "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": 680,
+ "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": 669,
+ "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": [
+ 667,
+ 663,
+ 678,
+ 671,
+ 672,
+ 673,
+ 668,
+ 670,
+ 665,
+ 664,
+ 662,
+ 666,
+ 676,
+ 679,
+ 677,
+ 681,
+ 682,
+ 674,
+ 675,
+ 680,
+ 669
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 653,
+ "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": 683,
+ "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": 655,
+ "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": 633,
+ "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": 658,
+ "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": [
+ 657,
+ 659,
+ 635,
+ 654,
+ 656,
+ 641,
+ 552,
+ 467,
+ 634,
+ 638,
+ 639,
+ 519,
+ 640,
+ 636,
+ 637,
+ 660,
+ 653,
+ 683,
+ 655,
+ 633,
+ 658
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 684,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 685,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 686,
+ "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": [
+ 686
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 462,
+ "name": "Gist"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 123,
+ "name": "Base.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 122,
+ "name": "Base.constructor"
+ }
+ },
+ {
+ "id": 911,
+ "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": 687,
+ "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": 688,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 879,
+ "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": 881,
+ "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": 857,
+ "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": 876,
+ "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": 878,
+ "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": 863,
+ "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": 864,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 865,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 866,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 867,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 874,
+ "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": 868,
+ "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": 870,
+ "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": 871,
+ "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": 872,
+ "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": 873,
+ "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": 869,
+ "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": [
+ 874,
+ 868,
+ 870,
+ 871,
+ 872,
+ 873,
+ 869
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "node_modules/@octokit/openapi-types/types.d.ts",
+ "line": 6333,
+ "character": 22
+ }
+ ]
+ }
+ },
+ {
+ "type": "literal",
+ "value": null
+ }
+ ]
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 774,
+ "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": 775,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 798,
+ "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": 822,
+ "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": 778,
+ "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": 795,
+ "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": 797,
+ "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": 784,
+ "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": 785,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 786,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 787,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 788,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 789,
+ "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": 791,
+ "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": 792,
+ "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": 793,
+ "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": 790,
+ "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": [
+ 789,
+ 791,
+ 792,
+ 793,
+ 790
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "node_modules/@octokit/openapi-types/types.d.ts",
+ "line": 6304,
+ "character": 24
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 847,
+ "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": 848,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 849,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 850,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 777,
+ "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": 781,
+ "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": 782,
+ "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": 851,
+ "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": 852,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 853,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 854,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ }
+ }
+ },
+ {
+ "id": 783,
+ "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": 779,
+ "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": 780,
+ "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": 823,
+ "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": 824,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 830,
+ "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": 826,
+ "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": 841,
+ "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": 834,
+ "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": 835,
+ "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": 836,
+ "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": 831,
+ "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": 833,
+ "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": 828,
+ "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": 827,
+ "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": 825,
+ "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": 829,
+ "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": 839,
+ "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": 842,
+ "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": 840,
+ "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": 844,
+ "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": 845,
+ "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": 837,
+ "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": 838,
+ "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": 843,
+ "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": 832,
+ "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": [
+ 830,
+ 826,
+ 841,
+ 834,
+ 835,
+ 836,
+ 831,
+ 833,
+ 828,
+ 827,
+ 825,
+ 829,
+ 839,
+ 842,
+ 840,
+ 844,
+ 845,
+ 837,
+ 838,
+ 843,
+ 832
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 794,
+ "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": 846,
+ "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": 796,
+ "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": 776,
+ "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": 799,
+ "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": 800,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 806,
+ "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": 802,
+ "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": 817,
+ "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": 810,
+ "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": 811,
+ "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": 812,
+ "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": 807,
+ "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": 809,
+ "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": 804,
+ "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": 803,
+ "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": 801,
+ "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": 805,
+ "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": 815,
+ "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": 818,
+ "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": 816,
+ "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": 820,
+ "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": 821,
+ "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": 813,
+ "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": 814,
+ "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": 819,
+ "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": 808,
+ "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": [
+ 806,
+ 802,
+ 817,
+ 810,
+ 811,
+ 812,
+ 807,
+ 809,
+ 804,
+ 803,
+ 801,
+ 805,
+ 815,
+ 818,
+ 816,
+ 820,
+ 821,
+ 813,
+ 814,
+ 819,
+ 808
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 798,
+ 822,
+ 778,
+ 795,
+ 797,
+ 784,
+ 847,
+ 777,
+ 781,
+ 782,
+ 851,
+ 783,
+ 779,
+ 780,
+ 823,
+ 794,
+ 846,
+ 796,
+ 776,
+ 799
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 689,
+ "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": 690,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 739,
+ "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": 691,
+ "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": 740,
+ "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": 692,
+ "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": 693,
+ "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": 694,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 698,
+ "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": 719,
+ "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": 715,
+ "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": 738,
+ "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": 714,
+ "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": 725,
+ "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": 737,
+ "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": 717,
+ "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": 709,
+ "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": 723,
+ "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": 702,
+ "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": 724,
+ "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": 703,
+ "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": 704,
+ "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": 699,
+ "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": 718,
+ "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": 701,
+ "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": 696,
+ "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": 716,
+ "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": 695,
+ "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": 713,
+ "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": 697,
+ "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": 707,
+ "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": 736,
+ "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": 727,
+ "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": 728,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 729,
+ "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": 730,
+ "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": 732,
+ "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": 731,
+ "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": [
+ 729,
+ 730,
+ 732,
+ 731
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 734,
+ "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": 722,
+ "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": 721,
+ "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": 710,
+ "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": 708,
+ "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": 712,
+ "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": 705,
+ "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": 706,
+ "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": 733,
+ "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": 735,
+ "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": 720,
+ "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": 711,
+ "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": 726,
+ "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": 700,
+ "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": [
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 739,
+ 691,
+ 740,
+ 692,
+ 693
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 856,
+ "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": 860,
+ "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": 861,
+ "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": 741,
+ "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": 742,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 768,
+ "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": 769,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 771,
+ "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": 772,
+ "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": 770,
+ "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": [
+ 771,
+ 772,
+ 770
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 767,
+ "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": 773,
+ "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": 743,
+ "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": 744,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 750,
+ "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": 746,
+ "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": 761,
+ "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": 754,
+ "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": 755,
+ "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": 756,
+ "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": 751,
+ "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": 753,
+ "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": 748,
+ "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": 747,
+ "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": 745,
+ "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": 749,
+ "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": 759,
+ "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": 762,
+ "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": 760,
+ "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": 764,
+ "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": 765,
+ "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": 757,
+ "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": 758,
+ "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": 763,
+ "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": 752,
+ "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": [
+ 750,
+ 746,
+ 761,
+ 754,
+ 755,
+ 756,
+ 751,
+ 753,
+ 748,
+ 747,
+ 745,
+ 749,
+ 759,
+ 762,
+ 760,
+ 764,
+ 765,
+ 757,
+ 758,
+ 763,
+ 752
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 766,
+ "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": [
+ 768,
+ 767,
+ 773,
+ 743,
+ 766
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 862,
+ "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": 858,
+ "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": 859,
+ "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": 882,
+ "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": 883,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 889,
+ "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": 885,
+ "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": 900,
+ "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": 893,
+ "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": 894,
+ "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": 895,
+ "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": 890,
+ "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": 892,
+ "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": 887,
+ "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": 886,
+ "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": 884,
+ "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": 888,
+ "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": 898,
+ "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": 901,
+ "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": 899,
+ "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": 903,
+ "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": 904,
+ "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": 896,
+ "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": 897,
+ "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": 902,
+ "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": 891,
+ "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": [
+ 889,
+ 885,
+ 900,
+ 893,
+ 894,
+ 895,
+ 890,
+ 892,
+ 887,
+ 886,
+ 884,
+ 888,
+ 898,
+ 901,
+ 899,
+ 903,
+ 904,
+ 896,
+ 897,
+ 902,
+ 891
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 875,
+ "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": 905,
+ "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": 877,
+ "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": 855,
+ "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": 880,
+ "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": [
+ 879,
+ 881,
+ 857,
+ 876,
+ 878,
+ 863,
+ 774,
+ 689,
+ 856,
+ 860,
+ 861,
+ 741,
+ 862,
+ 858,
+ 859,
+ 882,
+ 875,
+ 905,
+ 877,
+ 855,
+ 880
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 906,
+ "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": 3093,
+ "name": "ForkManager"
+ }
+ },
+ {
+ "id": 909,
+ "name": "htmlUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/gist.ts",
+ "line": 18,
+ "character": 13
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 910,
+ "name": "htmlUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "id": 907,
+ "name": "url",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/gist.ts",
+ "line": 15,
+ "character": 9
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 908,
+ "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": [
+ 463
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 911,
+ 687,
+ 906
+ ]
+ },
+ {
+ "title": "Accessors",
+ "kind": 262144,
+ "children": [
+ 909,
+ 907
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/gist.ts",
+ "line": 6,
+ "character": 10
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 121,
+ "name": "Base"
+ }
+ ]
+ },
+ {
+ "id": 912,
+ "name": "Issue",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 913,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 914,
+ "name": "new Issue",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 915,
+ "name": "data",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "literal",
+ "value": "/repos/{owner}/{repo}/issues/{issue_number}"
+ },
+ {
+ "type": "literal",
+ "value": "get"
+ },
+ {
+ "type": "intrinsic",
+ "name": "unknown"
+ }
+ ],
+ "name": "Operation"
+ }
+ },
+ {
+ "id": 916,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 912,
+ "name": "Issue"
+ }
+ }
+ ]
+ },
+ {
+ "id": 917,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/issue.ts",
+ "line": 5,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 913
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 917
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/issue.ts",
+ "line": 4,
+ "character": 11
+ }
+ ]
+ },
+ {
+ "id": 3102,
+ "name": "IssueManager",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 3103,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 3104,
+ "name": "new IssueManager",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3105,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3106,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3107,
+ "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": 3108,
+ "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": [
+ 3107,
+ 3108
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3102,
+ "name": "IssueManager"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 3032,
+ "name": "Manager.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 3031,
+ "name": "Manager.constructor"
+ }
+ },
+ {
+ "id": 3109,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3037,
+ "name": "Manager.client"
+ }
+ },
+ {
+ "id": 3110,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 5,
+ "character": 5
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3038,
+ "name": "Manager.url"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 3103
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3109,
+ 3110
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/managers/issuemanager.ts",
+ "line": 5,
+ "character": 18
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 3030,
+ "name": "Manager"
+ }
+ ]
+ },
+ {
+ "id": 3030,
+ "name": "Manager",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 3031,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 3032,
+ "name": "new Manager",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3033,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3034,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3035,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 6,
+ "character": 39
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ },
+ {
+ "id": 3036,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 6,
+ "character": 52
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3035,
+ 3036
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3030,
+ "name": "BaseManager"
+ }
+ }
+ ]
+ },
+ {
+ "id": 3037,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ },
+ {
+ "id": 3038,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 5,
+ "character": 5
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 3031
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3037,
+ 3038
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 3,
+ "character": 17
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "id": 3039,
+ "name": "ArtifactsManager"
+ },
+ {
+ "type": "reference",
+ "id": 3093,
+ "name": "ForkManager"
+ },
+ {
+ "type": "reference",
+ "id": 3102,
+ "name": "IssueManager"
+ },
+ {
+ "type": "reference",
+ "id": 3111,
+ "name": "RepoManager"
+ },
+ {
+ "type": "reference",
+ "id": 3120,
+ "name": "UserManager"
+ }
+ ]
+ },
+ {
+ "id": 918,
+ "name": "Repo",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 919,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 920,
+ "name": "new Repo",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 921,
+ "name": "client",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ },
+ {
+ "id": 922,
+ "name": "data",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 923,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1278,
+ "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": 1023,
+ "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": 1276,
+ "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": 1818,
+ "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": 956,
+ "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": 1012,
+ "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": 957,
+ "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": 958,
+ "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": 959,
+ "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": 993,
+ "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": 1819,
+ "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": 1820,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1824,
+ "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": 1822,
+ "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": 1823,
+ "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": 1821,
+ "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": [
+ 1824,
+ 1822,
+ 1823,
+ 1821
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 960,
+ "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": 961,
+ "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": 962,
+ "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": 963,
+ "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": 964,
+ "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": 965,
+ "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": 1016,
+ "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": 1003,
+ "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": 1277,
+ "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": 966,
+ "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": 953,
+ "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": 1013,
+ "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": 967,
+ "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": 968,
+ "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": 954,
+ "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": 1814,
+ "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": 999,
+ "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": 969,
+ "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": 927,
+ "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": 970,
+ "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": 971,
+ "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": 972,
+ "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": 973,
+ "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": 1011,
+ "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": 1007,
+ "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": 1010,
+ "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": 1008,
+ "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": 1009,
+ "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": 997,
+ "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": 995,
+ "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": 952,
+ "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": 924,
+ "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": 1005,
+ "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": 974,
+ "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": 975,
+ "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": 976,
+ "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": 977,
+ "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": 978,
+ "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": 998,
+ "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": 979,
+ "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": 1281,
+ "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": 1282,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1288,
+ "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": 1283,
+ "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": 1284,
+ "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": 1287,
+ "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": 1286,
+ "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": 1285,
+ "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": [
+ 1288,
+ 1283,
+ 1284,
+ 1287,
+ 1286,
+ 1285
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1815,
+ "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": 980,
+ "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": 981,
+ "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": 994,
+ "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": 926,
+ "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": 1280,
+ "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": 925,
+ "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": 982,
+ "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": 1816,
+ "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": 1004,
+ "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": 1289,
+ "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": 1290,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1296,
+ "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": 1292,
+ "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": 1307,
+ "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": 1300,
+ "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": 1301,
+ "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": 1302,
+ "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": 1297,
+ "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": 1299,
+ "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": 1294,
+ "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": 1293,
+ "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": 1291,
+ "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": 1295,
+ "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": 1305,
+ "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": 1308,
+ "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": 1306,
+ "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": 1310,
+ "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": 1311,
+ "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": 1303,
+ "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": 1304,
+ "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": 1309,
+ "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": 1298,
+ "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": [
+ 1296,
+ 1292,
+ 1307,
+ 1300,
+ 1301,
+ 1302,
+ 1297,
+ 1299,
+ 1294,
+ 1293,
+ 1291,
+ 1295,
+ 1305,
+ 1308,
+ 1306,
+ 1310,
+ 1311,
+ 1303,
+ 1304,
+ 1309,
+ 1298
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 928,
+ "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": 929,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 935,
+ "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": 931,
+ "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": 946,
+ "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": 939,
+ "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": 940,
+ "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": 941,
+ "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": 936,
+ "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": 938,
+ "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": 933,
+ "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": 932,
+ "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": 930,
+ "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": 934,
+ "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": 944,
+ "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": 947,
+ "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": 945,
+ "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": 949,
+ "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": 950,
+ "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": 942,
+ "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": 943,
+ "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": 948,
+ "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": 937,
+ "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": [
+ 935,
+ 931,
+ 946,
+ 939,
+ 940,
+ 941,
+ 936,
+ 938,
+ 933,
+ 932,
+ 930,
+ 934,
+ 944,
+ 947,
+ 945,
+ 949,
+ 950,
+ 942,
+ 943,
+ 948,
+ 937
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1312,
+ "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": 1313,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1556,
+ "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": 1447,
+ "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": 1554,
+ "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": 1385,
+ "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": 1441,
+ "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": 1386,
+ "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": 1387,
+ "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": 1388,
+ "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": 1422,
+ "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": 1389,
+ "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": 1390,
+ "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": 1391,
+ "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": 1392,
+ "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": 1393,
+ "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": 1394,
+ "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": 1445,
+ "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": 1432,
+ "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": 1555,
+ "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": 1395,
+ "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": 1382,
+ "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": 1442,
+ "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": 1396,
+ "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": 1397,
+ "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": 1383,
+ "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": 1349,
+ "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": 1428,
+ "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": 1398,
+ "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": 1317,
+ "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": 1399,
+ "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": 1400,
+ "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": 1401,
+ "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": 1402,
+ "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": 1440,
+ "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": 1436,
+ "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": 1439,
+ "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": 1437,
+ "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": 1438,
+ "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": 1426,
+ "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": 1424,
+ "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": 1381,
+ "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": 1314,
+ "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": 1434,
+ "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": 1403,
+ "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": 1404,
+ "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": 1405,
+ "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": 1406,
+ "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": 1407,
+ "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": 1427,
+ "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": 1408,
+ "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": 1318,
+ "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": 1319,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1325,
+ "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": 1320,
+ "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": 1321,
+ "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": 1324,
+ "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": 1323,
+ "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": 1322,
+ "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": [
+ 1325,
+ 1320,
+ 1321,
+ 1324,
+ 1323,
+ 1322
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1561,
+ "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": 1409,
+ "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": 1410,
+ "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": 1423,
+ "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": 1316,
+ "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": 1558,
+ "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": 1315,
+ "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": 1411,
+ "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": 1559,
+ "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": 1433,
+ "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": 1326,
+ "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": 1327,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1333,
+ "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": 1329,
+ "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": 1344,
+ "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": 1337,
+ "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": 1338,
+ "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": 1339,
+ "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": 1334,
+ "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": 1336,
+ "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": 1331,
+ "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": 1330,
+ "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": 1328,
+ "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": 1332,
+ "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": 1342,
+ "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": 1345,
+ "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": 1343,
+ "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": 1347,
+ "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": 1348,
+ "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": 1340,
+ "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": 1341,
+ "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": 1346,
+ "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": 1335,
+ "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": [
+ 1333,
+ 1329,
+ 1344,
+ 1337,
+ 1338,
+ 1339,
+ 1334,
+ 1336,
+ 1331,
+ 1330,
+ 1328,
+ 1332,
+ 1342,
+ 1345,
+ 1343,
+ 1347,
+ 1348,
+ 1340,
+ 1341,
+ 1346,
+ 1335
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1357,
+ "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": 1358,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1364,
+ "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": 1360,
+ "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": 1375,
+ "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": 1368,
+ "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": 1369,
+ "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": 1370,
+ "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": 1365,
+ "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": 1367,
+ "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": 1362,
+ "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": 1361,
+ "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": 1359,
+ "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": 1363,
+ "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": 1373,
+ "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": 1376,
+ "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": 1374,
+ "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": 1378,
+ "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": 1379,
+ "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": 1371,
+ "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": 1372,
+ "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": 1377,
+ "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": 1366,
+ "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": [
+ 1364,
+ 1360,
+ 1375,
+ 1368,
+ 1369,
+ 1370,
+ 1365,
+ 1367,
+ 1362,
+ 1361,
+ 1359,
+ 1363,
+ 1373,
+ 1376,
+ 1374,
+ 1378,
+ 1379,
+ 1371,
+ 1372,
+ 1377,
+ 1366
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1350,
+ "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": 1351,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1352,
+ "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": 1356,
+ "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": 1353,
+ "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": 1355,
+ "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": 1354,
+ "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": [
+ 1352,
+ 1356,
+ 1353,
+ 1355,
+ 1354
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1380,
+ "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": 1412,
+ "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": 1444,
+ "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": 1413,
+ "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": 1431,
+ "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": 1414,
+ "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": 1429,
+ "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": 1415,
+ "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": 1562,
+ "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": 1416,
+ "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": 1557,
+ "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": 1417,
+ "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": 1418,
+ "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": 1425,
+ "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": 1419,
+ "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": 1420,
+ "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": 1553,
+ "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": 1448,
+ "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": 1449,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1550,
+ "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": 1546,
+ "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": 1548,
+ "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": 1479,
+ "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": 1535,
+ "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": 1480,
+ "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": 1481,
+ "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": 1482,
+ "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": 1516,
+ "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": 1483,
+ "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": 1484,
+ "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": 1485,
+ "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": 1486,
+ "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": 1487,
+ "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": 1488,
+ "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": 1539,
+ "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": 1526,
+ "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": 1549,
+ "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": 1489,
+ "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": 1476,
+ "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": 1536,
+ "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": 1490,
+ "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": 1491,
+ "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": 1477,
+ "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": 1522,
+ "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": 1492,
+ "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": 1453,
+ "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": 1493,
+ "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": 1494,
+ "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": 1495,
+ "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": 1496,
+ "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": 1534,
+ "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": 1530,
+ "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": 1533,
+ "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": 1531,
+ "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": 1532,
+ "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": 1520,
+ "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": 1518,
+ "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": 1475,
+ "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": 1450,
+ "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": 1528,
+ "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": 1497,
+ "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": 1498,
+ "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": 1499,
+ "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": 1500,
+ "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": 1501,
+ "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": 1521,
+ "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": 1502,
+ "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": 1503,
+ "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": 1504,
+ "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": 1517,
+ "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": 1452,
+ "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": 1552,
+ "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": 1451,
+ "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": 1505,
+ "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": 1527,
+ "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": 1454,
+ "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": 1455,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1459,
+ "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": 1470,
+ "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": 1463,
+ "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": 1464,
+ "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": 1465,
+ "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": 1460,
+ "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": 1462,
+ "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": 1457,
+ "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": 1456,
+ "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": 1458,
+ "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": 1468,
+ "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": 1471,
+ "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": 1469,
+ "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": 1473,
+ "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": 1466,
+ "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": 1467,
+ "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": 1472,
+ "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": 1461,
+ "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": [
+ 1459,
+ 1470,
+ 1463,
+ 1464,
+ 1465,
+ 1460,
+ 1462,
+ 1457,
+ 1456,
+ 1458,
+ 1468,
+ 1471,
+ 1469,
+ 1473,
+ 1466,
+ 1467,
+ 1472,
+ 1461
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1541,
+ "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": 1542,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1543,
+ "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": 1545,
+ "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": 1544,
+ "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": [
+ 1543,
+ 1545,
+ 1544
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1474,
+ "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": 1506,
+ "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": 1538,
+ "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": 1507,
+ "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": 1525,
+ "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": 1508,
+ "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": 1523,
+ "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": 1509,
+ "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": 1510,
+ "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": 1551,
+ "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": 1511,
+ "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": 1512,
+ "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": 1519,
+ "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": 1513,
+ "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": 1514,
+ "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": 1547,
+ "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": 1529,
+ "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": 1515,
+ "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": 1540,
+ "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": 1478,
+ "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": 1537,
+ "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": 1524,
+ "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": [
+ 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,
+ 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,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1435,
+ "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": 1421,
+ "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": 1446,
+ "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": 1384,
+ "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": 1443,
+ "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": 1560,
+ "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": 1430,
+ "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": [
+ 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,
+ 1399,
+ 1400,
+ 1401,
+ 1402,
+ 1440,
+ 1436,
+ 1439,
+ 1437,
+ 1438,
+ 1426,
+ 1424,
+ 1381,
+ 1314,
+ 1434,
+ 1403,
+ 1404,
+ 1405,
+ 1406,
+ 1407,
+ 1427,
+ 1408,
+ 1318,
+ 1561,
+ 1409,
+ 1410,
+ 1423,
+ 1316,
+ 1558,
+ 1315,
+ 1411,
+ 1559,
+ 1433,
+ 1326,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1018,
+ "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": 1019,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1020,
+ "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": 1021,
+ "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": 1022,
+ "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": [
+ 1020,
+ 1021,
+ 1022
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 951,
+ "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": 983,
+ "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": 1015,
+ "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": 984,
+ "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": 1825,
+ "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": 1826,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1827,
+ "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": 1828,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1829,
+ "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": [
+ 1829
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1830,
+ "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": 1831,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1832,
+ "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": [
+ 1832
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 1827,
+ 1830
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1002,
+ "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": 1563,
+ "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": 1564,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1807,
+ "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": 1698,
+ "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": 1805,
+ "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": 1636,
+ "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": 1692,
+ "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": 1637,
+ "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": 1638,
+ "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": 1639,
+ "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": 1673,
+ "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": 1640,
+ "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": 1641,
+ "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": 1642,
+ "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": 1643,
+ "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": 1644,
+ "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": 1645,
+ "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": 1696,
+ "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": 1683,
+ "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": 1806,
+ "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": 1646,
+ "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": 1633,
+ "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": 1693,
+ "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": 1647,
+ "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": 1648,
+ "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": 1634,
+ "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": 1600,
+ "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": 1679,
+ "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": 1649,
+ "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": 1568,
+ "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": 1650,
+ "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": 1651,
+ "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": 1652,
+ "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": 1653,
+ "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": 1691,
+ "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": 1687,
+ "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": 1690,
+ "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": 1688,
+ "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": 1689,
+ "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": 1677,
+ "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": 1675,
+ "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": 1632,
+ "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": 1565,
+ "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": 1685,
+ "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": 1654,
+ "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": 1655,
+ "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": 1656,
+ "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": 1657,
+ "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": 1658,
+ "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": 1678,
+ "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": 1659,
+ "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": 1569,
+ "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": 1570,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1576,
+ "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": 1571,
+ "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": 1572,
+ "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": 1575,
+ "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": 1574,
+ "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": 1573,
+ "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": [
+ 1576,
+ 1571,
+ 1572,
+ 1575,
+ 1574,
+ 1573
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1812,
+ "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": 1660,
+ "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": 1661,
+ "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": 1674,
+ "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": 1567,
+ "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": 1809,
+ "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": 1566,
+ "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": 1662,
+ "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": 1810,
+ "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": 1684,
+ "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": 1577,
+ "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": 1578,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1584,
+ "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": 1580,
+ "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": 1595,
+ "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": 1588,
+ "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": 1589,
+ "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": 1590,
+ "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": 1585,
+ "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": 1587,
+ "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": 1582,
+ "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": 1581,
+ "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": 1579,
+ "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": 1583,
+ "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": 1593,
+ "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": 1596,
+ "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": 1594,
+ "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": 1598,
+ "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": 1599,
+ "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": 1591,
+ "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": 1592,
+ "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": 1597,
+ "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": 1586,
+ "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": [
+ 1584,
+ 1580,
+ 1595,
+ 1588,
+ 1589,
+ 1590,
+ 1585,
+ 1587,
+ 1582,
+ 1581,
+ 1579,
+ 1583,
+ 1593,
+ 1596,
+ 1594,
+ 1598,
+ 1599,
+ 1591,
+ 1592,
+ 1597,
+ 1586
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1608,
+ "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": 1609,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1615,
+ "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": 1611,
+ "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": 1626,
+ "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": 1619,
+ "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": 1620,
+ "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": 1621,
+ "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": 1616,
+ "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": 1618,
+ "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": 1613,
+ "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": 1612,
+ "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": 1610,
+ "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": 1614,
+ "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": 1624,
+ "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": 1627,
+ "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": 1625,
+ "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": 1629,
+ "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": 1630,
+ "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": 1622,
+ "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": 1623,
+ "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": 1628,
+ "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": 1617,
+ "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": [
+ 1615,
+ 1611,
+ 1626,
+ 1619,
+ 1620,
+ 1621,
+ 1616,
+ 1618,
+ 1613,
+ 1612,
+ 1610,
+ 1614,
+ 1624,
+ 1627,
+ 1625,
+ 1629,
+ 1630,
+ 1622,
+ 1623,
+ 1628,
+ 1617
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1601,
+ "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": 1602,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1603,
+ "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": 1607,
+ "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": 1604,
+ "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": 1606,
+ "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": 1605,
+ "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": [
+ 1603,
+ 1607,
+ 1604,
+ 1606,
+ 1605
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1631,
+ "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": 1663,
+ "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": 1695,
+ "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": 1664,
+ "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": 1682,
+ "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": 1665,
+ "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": 1680,
+ "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": 1666,
+ "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": 1813,
+ "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": 1667,
+ "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": 1808,
+ "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": 1668,
+ "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": 1669,
+ "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": 1676,
+ "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": 1670,
+ "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": 1671,
+ "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": 1804,
+ "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": 1699,
+ "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": 1700,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1801,
+ "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": 1797,
+ "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": 1799,
+ "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": 1730,
+ "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": 1786,
+ "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": 1731,
+ "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": 1732,
+ "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": 1733,
+ "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": 1767,
+ "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": 1734,
+ "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": 1735,
+ "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": 1736,
+ "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": 1737,
+ "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": 1738,
+ "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": 1739,
+ "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": 1790,
+ "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": 1777,
+ "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": 1800,
+ "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": 1740,
+ "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": 1727,
+ "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": 1787,
+ "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": 1741,
+ "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": 1742,
+ "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": 1728,
+ "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": 1773,
+ "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": 1743,
+ "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": 1704,
+ "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": 1744,
+ "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": 1745,
+ "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": 1746,
+ "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": 1747,
+ "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": 1785,
+ "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": 1781,
+ "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": 1784,
+ "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": 1782,
+ "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": 1783,
+ "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": 1771,
+ "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": 1769,
+ "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": 1726,
+ "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": 1701,
+ "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": 1779,
+ "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": 1748,
+ "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": 1749,
+ "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": 1750,
+ "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": 1751,
+ "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": 1752,
+ "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": 1772,
+ "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": 1753,
+ "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": 1754,
+ "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": 1755,
+ "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": 1768,
+ "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": 1703,
+ "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": 1803,
+ "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": 1702,
+ "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": 1756,
+ "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": 1778,
+ "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": 1705,
+ "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": 1706,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1710,
+ "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": 1721,
+ "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": 1714,
+ "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": 1715,
+ "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": 1716,
+ "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": 1711,
+ "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": 1713,
+ "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": 1708,
+ "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": 1707,
+ "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": 1709,
+ "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": 1719,
+ "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": 1722,
+ "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": 1720,
+ "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": 1724,
+ "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": 1717,
+ "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": 1718,
+ "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": 1723,
+ "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": 1712,
+ "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": [
+ 1710,
+ 1721,
+ 1714,
+ 1715,
+ 1716,
+ 1711,
+ 1713,
+ 1708,
+ 1707,
+ 1709,
+ 1719,
+ 1722,
+ 1720,
+ 1724,
+ 1717,
+ 1718,
+ 1723,
+ 1712
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1792,
+ "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": 1793,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1794,
+ "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": 1796,
+ "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": 1795,
+ "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": [
+ 1794,
+ 1796,
+ 1795
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1725,
+ "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": 1757,
+ "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": 1789,
+ "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": 1758,
+ "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": 1776,
+ "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": 1759,
+ "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": 1774,
+ "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": 1760,
+ "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": 1761,
+ "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": 1802,
+ "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": 1762,
+ "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": 1763,
+ "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": 1770,
+ "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": 1764,
+ "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": 1765,
+ "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": 1798,
+ "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": 1780,
+ "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": 1766,
+ "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": 1791,
+ "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": 1729,
+ "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": 1788,
+ "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": 1775,
+ "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": [
+ 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,
+ 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,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1686,
+ "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": 1672,
+ "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": 1697,
+ "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": 1635,
+ "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": 1694,
+ "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": 1811,
+ "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": 1681,
+ "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": [
+ 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,
+ 1650,
+ 1651,
+ 1652,
+ 1653,
+ 1691,
+ 1687,
+ 1690,
+ 1688,
+ 1689,
+ 1677,
+ 1675,
+ 1632,
+ 1565,
+ 1685,
+ 1654,
+ 1655,
+ 1656,
+ 1657,
+ 1658,
+ 1678,
+ 1659,
+ 1569,
+ 1812,
+ 1660,
+ 1661,
+ 1674,
+ 1567,
+ 1809,
+ 1566,
+ 1662,
+ 1810,
+ 1684,
+ 1577,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 985,
+ "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": 1000,
+ "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": 986,
+ "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": 987,
+ "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": 1279,
+ "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": 988,
+ "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": 989,
+ "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": 996,
+ "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": 990,
+ "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": 991,
+ "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": 1275,
+ "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": 1024,
+ "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": 1025,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1268,
+ "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": 1159,
+ "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": 1266,
+ "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": 1097,
+ "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": 1153,
+ "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": 1098,
+ "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": 1099,
+ "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": 1100,
+ "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": 1134,
+ "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": 1101,
+ "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": 1102,
+ "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": 1103,
+ "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": 1104,
+ "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": 1105,
+ "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": 1106,
+ "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": 1157,
+ "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": 1144,
+ "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": 1267,
+ "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": 1107,
+ "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": 1094,
+ "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": 1154,
+ "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": 1108,
+ "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": 1109,
+ "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": 1095,
+ "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": 1061,
+ "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": 1140,
+ "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": 1110,
+ "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": 1029,
+ "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": 1111,
+ "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": 1112,
+ "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": 1113,
+ "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": 1114,
+ "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": 1152,
+ "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": 1148,
+ "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": 1151,
+ "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": 1149,
+ "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": 1150,
+ "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": 1138,
+ "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": 1136,
+ "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": 1093,
+ "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": 1026,
+ "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": 1146,
+ "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": 1115,
+ "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": 1116,
+ "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": 1117,
+ "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": 1118,
+ "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": 1119,
+ "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": 1139,
+ "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": 1120,
+ "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": 1030,
+ "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": 1031,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1037,
+ "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": 1032,
+ "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": 1033,
+ "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": 1036,
+ "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": 1035,
+ "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": 1034,
+ "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": [
+ 1037,
+ 1032,
+ 1033,
+ 1036,
+ 1035,
+ 1034
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1273,
+ "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": 1121,
+ "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": 1122,
+ "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": 1135,
+ "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": 1028,
+ "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": 1270,
+ "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": 1027,
+ "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": 1123,
+ "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": 1271,
+ "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": 1145,
+ "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": 1038,
+ "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": 1039,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1045,
+ "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": 1041,
+ "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": 1056,
+ "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": 1049,
+ "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": 1050,
+ "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": 1051,
+ "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": 1046,
+ "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": 1048,
+ "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": 1043,
+ "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": 1042,
+ "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": 1040,
+ "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": 1044,
+ "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": 1054,
+ "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": 1057,
+ "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": 1055,
+ "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": 1059,
+ "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": 1060,
+ "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": 1052,
+ "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": 1053,
+ "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": 1058,
+ "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": 1047,
+ "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": [
+ 1045,
+ 1041,
+ 1056,
+ 1049,
+ 1050,
+ 1051,
+ 1046,
+ 1048,
+ 1043,
+ 1042,
+ 1040,
+ 1044,
+ 1054,
+ 1057,
+ 1055,
+ 1059,
+ 1060,
+ 1052,
+ 1053,
+ 1058,
+ 1047
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1069,
+ "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": 1070,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1076,
+ "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": 1072,
+ "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": 1087,
+ "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": 1080,
+ "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": 1081,
+ "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": 1082,
+ "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": 1077,
+ "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": 1079,
+ "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": 1074,
+ "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": 1073,
+ "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": 1071,
+ "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": 1075,
+ "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": 1085,
+ "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": 1088,
+ "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": 1086,
+ "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": 1090,
+ "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": 1091,
+ "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": 1083,
+ "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": 1084,
+ "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": 1089,
+ "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": 1078,
+ "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": [
+ 1076,
+ 1072,
+ 1087,
+ 1080,
+ 1081,
+ 1082,
+ 1077,
+ 1079,
+ 1074,
+ 1073,
+ 1071,
+ 1075,
+ 1085,
+ 1088,
+ 1086,
+ 1090,
+ 1091,
+ 1083,
+ 1084,
+ 1089,
+ 1078
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1062,
+ "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": 1063,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1064,
+ "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": 1068,
+ "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": 1065,
+ "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": 1067,
+ "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": 1066,
+ "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": [
+ 1064,
+ 1068,
+ 1065,
+ 1067,
+ 1066
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1092,
+ "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": 1124,
+ "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": 1156,
+ "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": 1125,
+ "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": 1143,
+ "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": 1126,
+ "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": 1141,
+ "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": 1127,
+ "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": 1274,
+ "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": 1128,
+ "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": 1269,
+ "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": 1129,
+ "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": 1130,
+ "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": 1137,
+ "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": 1131,
+ "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": 1132,
+ "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": 1265,
+ "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": 1160,
+ "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": 1161,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1262,
+ "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": 1258,
+ "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": 1260,
+ "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": 1191,
+ "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": 1247,
+ "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": 1192,
+ "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": 1193,
+ "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": 1194,
+ "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": 1228,
+ "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": 1195,
+ "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": 1196,
+ "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": 1197,
+ "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": 1198,
+ "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": 1199,
+ "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": 1200,
+ "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": 1251,
+ "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": 1238,
+ "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": 1261,
+ "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": 1201,
+ "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": 1188,
+ "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": 1248,
+ "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": 1202,
+ "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": 1203,
+ "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": 1189,
+ "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": 1234,
+ "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": 1204,
+ "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": 1165,
+ "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": 1205,
+ "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": 1206,
+ "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": 1207,
+ "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": 1208,
+ "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": 1246,
+ "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": 1242,
+ "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": 1245,
+ "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": 1243,
+ "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": 1244,
+ "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": 1232,
+ "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": 1230,
+ "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": 1187,
+ "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": 1162,
+ "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": 1240,
+ "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": 1209,
+ "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": 1210,
+ "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": 1211,
+ "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": 1212,
+ "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": 1213,
+ "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": 1233,
+ "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": 1214,
+ "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": 1215,
+ "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": 1216,
+ "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": 1229,
+ "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": 1164,
+ "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": 1264,
+ "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": 1163,
+ "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": 1217,
+ "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": 1239,
+ "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": 1166,
+ "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": 1167,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1171,
+ "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": 1182,
+ "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": 1175,
+ "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": 1176,
+ "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": 1177,
+ "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": 1172,
+ "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": 1174,
+ "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": 1169,
+ "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": 1168,
+ "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": 1170,
+ "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": 1180,
+ "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": 1183,
+ "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": 1181,
+ "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": 1185,
+ "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": 1178,
+ "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": 1179,
+ "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": 1184,
+ "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": 1173,
+ "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": [
+ 1171,
+ 1182,
+ 1175,
+ 1176,
+ 1177,
+ 1172,
+ 1174,
+ 1169,
+ 1168,
+ 1170,
+ 1180,
+ 1183,
+ 1181,
+ 1185,
+ 1178,
+ 1179,
+ 1184,
+ 1173
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1253,
+ "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": 1254,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1255,
+ "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": 1257,
+ "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": 1256,
+ "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": [
+ 1255,
+ 1257,
+ 1256
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1186,
+ "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": 1218,
+ "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": 1250,
+ "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": 1219,
+ "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": 1237,
+ "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": 1220,
+ "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": 1235,
+ "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": 1221,
+ "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": 1222,
+ "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": 1263,
+ "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": 1223,
+ "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": 1224,
+ "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": 1231,
+ "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": 1225,
+ "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": 1226,
+ "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": 1259,
+ "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": 1241,
+ "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": 1227,
+ "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": 1252,
+ "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": 1190,
+ "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": 1249,
+ "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": 1236,
+ "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": [
+ 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,
+ 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,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1147,
+ "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": 1133,
+ "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": 1158,
+ "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": 1096,
+ "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": 1155,
+ "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": 1272,
+ "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": 1142,
+ "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": [
+ 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,
+ 1111,
+ 1112,
+ 1113,
+ 1114,
+ 1152,
+ 1148,
+ 1151,
+ 1149,
+ 1150,
+ 1138,
+ 1136,
+ 1093,
+ 1026,
+ 1146,
+ 1115,
+ 1116,
+ 1117,
+ 1118,
+ 1119,
+ 1139,
+ 1120,
+ 1030,
+ 1273,
+ 1121,
+ 1122,
+ 1135,
+ 1028,
+ 1270,
+ 1027,
+ 1123,
+ 1271,
+ 1145,
+ 1038,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1006,
+ "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": 992,
+ "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": 1017,
+ "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": 955,
+ "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": 1014,
+ "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": 1817,
+ "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": 1001,
+ "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": [
+ 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,
+ 1005,
+ 974,
+ 975,
+ 976,
+ 977,
+ 978,
+ 998,
+ 979,
+ 1281,
+ 1815,
+ 980,
+ 981,
+ 994,
+ 926,
+ 1280,
+ 925,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 918,
+ "name": "Repo"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 123,
+ "name": "Base.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 122,
+ "name": "Base.constructor"
+ }
+ },
+ {
+ "id": 2795,
+ "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": 1835,
+ "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": 1836,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2191,
+ "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": 1936,
+ "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": 2189,
+ "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": 2731,
+ "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": 1869,
+ "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": 1925,
+ "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": 1870,
+ "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": 1871,
+ "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": 1872,
+ "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": 1906,
+ "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": 2732,
+ "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": 2733,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2737,
+ "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": 2735,
+ "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": 2736,
+ "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": 2734,
+ "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": [
+ 2737,
+ 2735,
+ 2736,
+ 2734
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1873,
+ "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": 1874,
+ "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": 1875,
+ "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": 1876,
+ "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": 1877,
+ "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": 1878,
+ "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": 1929,
+ "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": 1916,
+ "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": 2190,
+ "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": 1879,
+ "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": 1866,
+ "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": 1926,
+ "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": 1880,
+ "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": 1881,
+ "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": 1867,
+ "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": 2727,
+ "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": 1912,
+ "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": 1882,
+ "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": 1840,
+ "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": 1883,
+ "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": 1884,
+ "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": 1885,
+ "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": 1886,
+ "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": 1924,
+ "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": 1920,
+ "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": 1923,
+ "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": 1921,
+ "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": 1922,
+ "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": 1910,
+ "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": 1908,
+ "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": 1865,
+ "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": 1837,
+ "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": 1918,
+ "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": 1887,
+ "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": 1888,
+ "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": 1889,
+ "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": 1890,
+ "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": 1891,
+ "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": 1911,
+ "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": 1892,
+ "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": 2194,
+ "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": 2195,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2201,
+ "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": 2196,
+ "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": 2197,
+ "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": 2200,
+ "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": 2199,
+ "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": 2198,
+ "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": [
+ 2201,
+ 2196,
+ 2197,
+ 2200,
+ 2199,
+ 2198
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2728,
+ "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": 1893,
+ "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": 1894,
+ "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": 1907,
+ "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": 1839,
+ "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": 2193,
+ "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": 1838,
+ "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": 1895,
+ "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": 2729,
+ "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": 1917,
+ "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": 2202,
+ "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": 2203,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2209,
+ "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": 2205,
+ "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": 2220,
+ "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": 2213,
+ "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": 2214,
+ "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": 2215,
+ "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": 2210,
+ "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": 2212,
+ "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": 2207,
+ "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": 2206,
+ "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": 2204,
+ "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": 2208,
+ "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": 2218,
+ "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": 2221,
+ "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": 2219,
+ "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": 2223,
+ "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": 2224,
+ "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": 2216,
+ "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": 2217,
+ "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": 2222,
+ "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": 2211,
+ "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": [
+ 2209,
+ 2205,
+ 2220,
+ 2213,
+ 2214,
+ 2215,
+ 2210,
+ 2212,
+ 2207,
+ 2206,
+ 2204,
+ 2208,
+ 2218,
+ 2221,
+ 2219,
+ 2223,
+ 2224,
+ 2216,
+ 2217,
+ 2222,
+ 2211
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1841,
+ "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": 1842,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1848,
+ "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": 1844,
+ "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": 1859,
+ "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": 1852,
+ "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": 1853,
+ "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": 1854,
+ "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": 1849,
+ "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": 1851,
+ "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": 1846,
+ "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": 1845,
+ "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": 1843,
+ "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": 1847,
+ "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": 1857,
+ "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": 1860,
+ "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": 1858,
+ "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": 1862,
+ "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": 1863,
+ "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": 1855,
+ "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": 1856,
+ "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": 1861,
+ "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": 1850,
+ "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": [
+ 1848,
+ 1844,
+ 1859,
+ 1852,
+ 1853,
+ 1854,
+ 1849,
+ 1851,
+ 1846,
+ 1845,
+ 1843,
+ 1847,
+ 1857,
+ 1860,
+ 1858,
+ 1862,
+ 1863,
+ 1855,
+ 1856,
+ 1861,
+ 1850
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2225,
+ "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": 2226,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2469,
+ "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": 2360,
+ "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": 2467,
+ "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": 2298,
+ "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": 2354,
+ "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": 2299,
+ "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": 2300,
+ "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": 2301,
+ "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": 2335,
+ "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": 2302,
+ "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": 2303,
+ "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": 2304,
+ "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": 2305,
+ "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": 2306,
+ "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": 2307,
+ "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": 2358,
+ "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": 2345,
+ "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": 2468,
+ "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": 2308,
+ "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": 2295,
+ "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": 2355,
+ "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": 2309,
+ "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": 2310,
+ "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": 2296,
+ "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": 2262,
+ "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": 2341,
+ "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": 2311,
+ "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": 2230,
+ "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": 2312,
+ "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": 2313,
+ "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": 2314,
+ "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": 2315,
+ "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": 2353,
+ "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": 2349,
+ "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": 2352,
+ "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": 2350,
+ "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": 2351,
+ "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": 2339,
+ "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": 2337,
+ "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": 2294,
+ "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": 2227,
+ "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": 2347,
+ "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": 2316,
+ "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": 2317,
+ "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": 2318,
+ "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": 2319,
+ "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": 2320,
+ "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": 2340,
+ "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": 2321,
+ "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": 2231,
+ "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": 2232,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2238,
+ "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": 2233,
+ "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": 2234,
+ "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": 2237,
+ "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": 2236,
+ "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": 2235,
+ "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": [
+ 2238,
+ 2233,
+ 2234,
+ 2237,
+ 2236,
+ 2235
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2474,
+ "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": 2322,
+ "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": 2323,
+ "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": 2336,
+ "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": 2229,
+ "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": 2471,
+ "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": 2228,
+ "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": 2324,
+ "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": 2472,
+ "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": 2346,
+ "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": 2239,
+ "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": 2240,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2246,
+ "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": 2242,
+ "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": 2257,
+ "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": 2250,
+ "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": 2251,
+ "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": 2252,
+ "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": 2247,
+ "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": 2249,
+ "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": 2244,
+ "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": 2243,
+ "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": 2241,
+ "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": 2245,
+ "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": 2255,
+ "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": 2258,
+ "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": 2256,
+ "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": 2260,
+ "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": 2261,
+ "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": 2253,
+ "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": 2254,
+ "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": 2259,
+ "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": 2248,
+ "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": [
+ 2246,
+ 2242,
+ 2257,
+ 2250,
+ 2251,
+ 2252,
+ 2247,
+ 2249,
+ 2244,
+ 2243,
+ 2241,
+ 2245,
+ 2255,
+ 2258,
+ 2256,
+ 2260,
+ 2261,
+ 2253,
+ 2254,
+ 2259,
+ 2248
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2270,
+ "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": 2271,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2277,
+ "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": 2273,
+ "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": 2288,
+ "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": 2281,
+ "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": 2282,
+ "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": 2283,
+ "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": 2278,
+ "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": 2280,
+ "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": 2275,
+ "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": 2274,
+ "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": 2272,
+ "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": 2276,
+ "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": 2286,
+ "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": 2289,
+ "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": 2287,
+ "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": 2291,
+ "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": 2292,
+ "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": 2284,
+ "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": 2285,
+ "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": 2290,
+ "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": 2279,
+ "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": [
+ 2277,
+ 2273,
+ 2288,
+ 2281,
+ 2282,
+ 2283,
+ 2278,
+ 2280,
+ 2275,
+ 2274,
+ 2272,
+ 2276,
+ 2286,
+ 2289,
+ 2287,
+ 2291,
+ 2292,
+ 2284,
+ 2285,
+ 2290,
+ 2279
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2263,
+ "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": 2264,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2265,
+ "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": 2269,
+ "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": 2266,
+ "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": 2268,
+ "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": 2267,
+ "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": [
+ 2265,
+ 2269,
+ 2266,
+ 2268,
+ 2267
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2293,
+ "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": 2325,
+ "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": 2357,
+ "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": 2326,
+ "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": 2344,
+ "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": 2327,
+ "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": 2342,
+ "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": 2328,
+ "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": 2475,
+ "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": 2329,
+ "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": 2470,
+ "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": 2330,
+ "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": 2331,
+ "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": 2338,
+ "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": 2332,
+ "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": 2333,
+ "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": 2466,
+ "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": 2361,
+ "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": 2362,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2463,
+ "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": 2459,
+ "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": 2461,
+ "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": 2392,
+ "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": 2448,
+ "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": 2393,
+ "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": 2394,
+ "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": 2395,
+ "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": 2429,
+ "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": 2396,
+ "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": 2397,
+ "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": 2398,
+ "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": 2399,
+ "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": 2400,
+ "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": 2401,
+ "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": 2452,
+ "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": 2439,
+ "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": 2462,
+ "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": 2402,
+ "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": 2389,
+ "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": 2449,
+ "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": 2403,
+ "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": 2404,
+ "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": 2390,
+ "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": 2435,
+ "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": 2405,
+ "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": 2366,
+ "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": 2406,
+ "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": 2407,
+ "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": 2408,
+ "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": 2409,
+ "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": 2447,
+ "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": 2443,
+ "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": 2446,
+ "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": 2444,
+ "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": 2445,
+ "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": 2433,
+ "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": 2431,
+ "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": 2388,
+ "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": 2363,
+ "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": 2441,
+ "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": 2410,
+ "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": 2411,
+ "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": 2412,
+ "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": 2413,
+ "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": 2414,
+ "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": 2434,
+ "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": 2415,
+ "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": 2416,
+ "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": 2417,
+ "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": 2430,
+ "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": 2365,
+ "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": 2465,
+ "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": 2364,
+ "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": 2418,
+ "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": 2440,
+ "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": 2367,
+ "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": 2368,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2372,
+ "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": 2383,
+ "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": 2376,
+ "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": 2377,
+ "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": 2378,
+ "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": 2373,
+ "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": 2375,
+ "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": 2370,
+ "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": 2369,
+ "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": 2371,
+ "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": 2381,
+ "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": 2384,
+ "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": 2382,
+ "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": 2386,
+ "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": 2379,
+ "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": 2380,
+ "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": 2385,
+ "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": 2374,
+ "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": [
+ 2372,
+ 2383,
+ 2376,
+ 2377,
+ 2378,
+ 2373,
+ 2375,
+ 2370,
+ 2369,
+ 2371,
+ 2381,
+ 2384,
+ 2382,
+ 2386,
+ 2379,
+ 2380,
+ 2385,
+ 2374
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2454,
+ "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": 2455,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2456,
+ "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": 2458,
+ "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": 2457,
+ "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": [
+ 2456,
+ 2458,
+ 2457
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2387,
+ "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": 2419,
+ "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": 2451,
+ "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": 2420,
+ "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": 2438,
+ "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": 2421,
+ "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": 2436,
+ "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": 2422,
+ "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": 2423,
+ "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": 2464,
+ "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": 2424,
+ "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": 2425,
+ "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": 2432,
+ "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": 2426,
+ "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": 2427,
+ "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": 2460,
+ "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": 2442,
+ "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": 2428,
+ "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": 2453,
+ "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": 2391,
+ "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": 2450,
+ "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": 2437,
+ "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": [
+ 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,
+ 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,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2348,
+ "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": 2334,
+ "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": 2359,
+ "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": 2297,
+ "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": 2356,
+ "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": 2473,
+ "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": 2343,
+ "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": [
+ 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,
+ 2312,
+ 2313,
+ 2314,
+ 2315,
+ 2353,
+ 2349,
+ 2352,
+ 2350,
+ 2351,
+ 2339,
+ 2337,
+ 2294,
+ 2227,
+ 2347,
+ 2316,
+ 2317,
+ 2318,
+ 2319,
+ 2320,
+ 2340,
+ 2321,
+ 2231,
+ 2474,
+ 2322,
+ 2323,
+ 2336,
+ 2229,
+ 2471,
+ 2228,
+ 2324,
+ 2472,
+ 2346,
+ 2239,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1931,
+ "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": 1932,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1933,
+ "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": 1934,
+ "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": 1935,
+ "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": [
+ 1933,
+ 1934,
+ 1935
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1864,
+ "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": 1896,
+ "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": 1928,
+ "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": 1897,
+ "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": 2738,
+ "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": 2739,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2740,
+ "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": 2741,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2742,
+ "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": [
+ 2742
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2743,
+ "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": 2744,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2745,
+ "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": [
+ 2745
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 2740,
+ 2743
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1915,
+ "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": 2476,
+ "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": 2477,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2720,
+ "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": 2611,
+ "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": 2718,
+ "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": 2549,
+ "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": 2605,
+ "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": 2550,
+ "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": 2551,
+ "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": 2552,
+ "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": 2586,
+ "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": 2553,
+ "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": 2554,
+ "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": 2555,
+ "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": 2556,
+ "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": 2557,
+ "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": 2558,
+ "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": 2609,
+ "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": 2596,
+ "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": 2719,
+ "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": 2559,
+ "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": 2546,
+ "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": 2606,
+ "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": 2560,
+ "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": 2561,
+ "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": 2547,
+ "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": 2513,
+ "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": 2592,
+ "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": 2562,
+ "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": 2481,
+ "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": 2563,
+ "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": 2564,
+ "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": 2565,
+ "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": 2566,
+ "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": 2604,
+ "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": 2600,
+ "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": 2603,
+ "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": 2601,
+ "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": 2602,
+ "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": 2590,
+ "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": 2588,
+ "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": 2545,
+ "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": 2478,
+ "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": 2598,
+ "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": 2567,
+ "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": 2568,
+ "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": 2569,
+ "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": 2570,
+ "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": 2571,
+ "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": 2591,
+ "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": 2572,
+ "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": 2482,
+ "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": 2483,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2489,
+ "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": 2484,
+ "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": 2485,
+ "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": 2488,
+ "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": 2487,
+ "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": 2486,
+ "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": [
+ 2489,
+ 2484,
+ 2485,
+ 2488,
+ 2487,
+ 2486
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2725,
+ "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": 2573,
+ "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": 2574,
+ "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": 2587,
+ "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": 2480,
+ "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": 2722,
+ "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": 2479,
+ "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": 2575,
+ "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": 2723,
+ "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": 2597,
+ "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": 2490,
+ "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": 2491,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2497,
+ "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": 2493,
+ "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": 2508,
+ "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": 2501,
+ "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": 2502,
+ "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": 2503,
+ "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": 2498,
+ "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": 2500,
+ "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": 2495,
+ "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": 2494,
+ "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": 2492,
+ "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": 2496,
+ "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": 2506,
+ "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": 2509,
+ "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": 2507,
+ "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": 2511,
+ "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": 2512,
+ "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": 2504,
+ "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": 2505,
+ "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": 2510,
+ "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": 2499,
+ "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": [
+ 2497,
+ 2493,
+ 2508,
+ 2501,
+ 2502,
+ 2503,
+ 2498,
+ 2500,
+ 2495,
+ 2494,
+ 2492,
+ 2496,
+ 2506,
+ 2509,
+ 2507,
+ 2511,
+ 2512,
+ 2504,
+ 2505,
+ 2510,
+ 2499
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2521,
+ "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": 2522,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2528,
+ "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": 2524,
+ "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": 2539,
+ "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": 2532,
+ "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": 2533,
+ "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": 2534,
+ "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": 2529,
+ "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": 2531,
+ "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": 2526,
+ "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": 2525,
+ "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": 2523,
+ "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": 2527,
+ "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": 2537,
+ "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": 2540,
+ "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": 2538,
+ "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": 2542,
+ "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": 2543,
+ "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": 2535,
+ "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": 2536,
+ "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": 2541,
+ "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": 2530,
+ "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": [
+ 2528,
+ 2524,
+ 2539,
+ 2532,
+ 2533,
+ 2534,
+ 2529,
+ 2531,
+ 2526,
+ 2525,
+ 2523,
+ 2527,
+ 2537,
+ 2540,
+ 2538,
+ 2542,
+ 2543,
+ 2535,
+ 2536,
+ 2541,
+ 2530
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2514,
+ "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": 2515,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2516,
+ "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": 2520,
+ "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": 2517,
+ "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": 2519,
+ "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": 2518,
+ "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": [
+ 2516,
+ 2520,
+ 2517,
+ 2519,
+ 2518
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2544,
+ "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": 2576,
+ "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": 2608,
+ "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": 2577,
+ "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": 2595,
+ "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": 2578,
+ "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": 2593,
+ "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": 2579,
+ "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": 2726,
+ "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": 2580,
+ "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": 2721,
+ "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": 2581,
+ "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": 2582,
+ "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": 2589,
+ "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": 2583,
+ "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": 2584,
+ "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": 2717,
+ "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": 2612,
+ "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": 2613,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2714,
+ "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": 2710,
+ "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": 2712,
+ "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": 2643,
+ "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": 2699,
+ "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": 2644,
+ "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": 2645,
+ "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": 2646,
+ "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": 2680,
+ "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": 2647,
+ "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": 2648,
+ "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": 2649,
+ "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": 2650,
+ "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": 2651,
+ "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": 2652,
+ "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": 2703,
+ "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": 2690,
+ "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": 2713,
+ "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": 2653,
+ "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": 2640,
+ "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": 2700,
+ "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": 2654,
+ "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": 2655,
+ "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": 2641,
+ "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": 2686,
+ "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": 2656,
+ "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": 2617,
+ "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": 2657,
+ "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": 2658,
+ "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": 2659,
+ "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": 2660,
+ "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": 2698,
+ "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": 2694,
+ "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": 2697,
+ "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": 2695,
+ "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": 2696,
+ "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": 2684,
+ "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": 2682,
+ "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": 2639,
+ "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": 2614,
+ "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": 2692,
+ "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": 2661,
+ "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": 2662,
+ "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": 2663,
+ "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": 2664,
+ "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": 2665,
+ "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": 2685,
+ "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": 2666,
+ "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": 2667,
+ "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": 2668,
+ "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": 2681,
+ "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": 2616,
+ "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": 2716,
+ "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": 2615,
+ "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": 2669,
+ "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": 2691,
+ "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": 2618,
+ "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": 2619,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2623,
+ "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": 2634,
+ "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": 2627,
+ "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": 2628,
+ "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": 2629,
+ "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": 2624,
+ "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": 2626,
+ "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": 2621,
+ "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": 2620,
+ "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": 2622,
+ "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": 2632,
+ "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": 2635,
+ "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": 2633,
+ "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": 2637,
+ "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": 2630,
+ "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": 2631,
+ "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": 2636,
+ "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": 2625,
+ "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": [
+ 2623,
+ 2634,
+ 2627,
+ 2628,
+ 2629,
+ 2624,
+ 2626,
+ 2621,
+ 2620,
+ 2622,
+ 2632,
+ 2635,
+ 2633,
+ 2637,
+ 2630,
+ 2631,
+ 2636,
+ 2625
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2705,
+ "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": 2706,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2707,
+ "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": 2709,
+ "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": 2708,
+ "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": [
+ 2707,
+ 2709,
+ 2708
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2638,
+ "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": 2670,
+ "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": 2702,
+ "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": 2671,
+ "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": 2689,
+ "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": 2672,
+ "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": 2687,
+ "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": 2673,
+ "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": 2674,
+ "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": 2715,
+ "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": 2675,
+ "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": 2676,
+ "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": 2683,
+ "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": 2677,
+ "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": 2678,
+ "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": 2711,
+ "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": 2693,
+ "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": 2679,
+ "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": 2704,
+ "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": 2642,
+ "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": 2701,
+ "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": 2688,
+ "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": [
+ 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,
+ 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,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2599,
+ "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": 2585,
+ "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": 2610,
+ "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": 2548,
+ "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": 2607,
+ "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": 2724,
+ "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": 2594,
+ "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": [
+ 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,
+ 2563,
+ 2564,
+ 2565,
+ 2566,
+ 2604,
+ 2600,
+ 2603,
+ 2601,
+ 2602,
+ 2590,
+ 2588,
+ 2545,
+ 2478,
+ 2598,
+ 2567,
+ 2568,
+ 2569,
+ 2570,
+ 2571,
+ 2591,
+ 2572,
+ 2482,
+ 2725,
+ 2573,
+ 2574,
+ 2587,
+ 2480,
+ 2722,
+ 2479,
+ 2575,
+ 2723,
+ 2597,
+ 2490,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1898,
+ "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": 1913,
+ "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": 1899,
+ "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": 1900,
+ "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": 2192,
+ "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": 1901,
+ "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": 1902,
+ "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": 1909,
+ "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": 1903,
+ "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": 1904,
+ "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": 2188,
+ "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": 1937,
+ "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": 1938,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2181,
+ "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": 2072,
+ "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": 2179,
+ "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": 2010,
+ "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": 2066,
+ "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": 2011,
+ "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": 2012,
+ "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": 2013,
+ "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": 2047,
+ "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": 2014,
+ "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": 2015,
+ "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": 2016,
+ "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": 2017,
+ "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": 2018,
+ "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": 2019,
+ "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": 2070,
+ "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": 2057,
+ "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": 2180,
+ "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": 2020,
+ "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": 2007,
+ "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": 2067,
+ "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": 2021,
+ "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": 2022,
+ "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": 2008,
+ "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": 1974,
+ "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": 2053,
+ "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": 2023,
+ "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": 1942,
+ "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": 2024,
+ "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": 2025,
+ "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": 2026,
+ "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": 2027,
+ "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": 2065,
+ "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": 2061,
+ "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": 2064,
+ "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": 2062,
+ "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": 2063,
+ "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": 2051,
+ "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": 2049,
+ "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": 2006,
+ "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": 1939,
+ "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": 2059,
+ "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": 2028,
+ "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": 2029,
+ "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": 2030,
+ "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": 2031,
+ "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": 2032,
+ "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": 2052,
+ "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": 2033,
+ "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": 1943,
+ "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": 1944,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1950,
+ "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": 1945,
+ "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": 1946,
+ "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": 1949,
+ "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": 1948,
+ "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": 1947,
+ "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": [
+ 1950,
+ 1945,
+ 1946,
+ 1949,
+ 1948,
+ 1947
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2186,
+ "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": 2034,
+ "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": 2035,
+ "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": 2048,
+ "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": 1941,
+ "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": 2183,
+ "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": 1940,
+ "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": 2036,
+ "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": 2184,
+ "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": 2058,
+ "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": 1951,
+ "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": 1952,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1958,
+ "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": 1954,
+ "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": 1969,
+ "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": 1962,
+ "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": 1963,
+ "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": 1964,
+ "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": 1959,
+ "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": 1961,
+ "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": 1956,
+ "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": 1955,
+ "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": 1953,
+ "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": 1957,
+ "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": 1967,
+ "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": 1970,
+ "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": 1968,
+ "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": 1972,
+ "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": 1973,
+ "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": 1965,
+ "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": 1966,
+ "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": 1971,
+ "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": 1960,
+ "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": [
+ 1958,
+ 1954,
+ 1969,
+ 1962,
+ 1963,
+ 1964,
+ 1959,
+ 1961,
+ 1956,
+ 1955,
+ 1953,
+ 1957,
+ 1967,
+ 1970,
+ 1968,
+ 1972,
+ 1973,
+ 1965,
+ 1966,
+ 1971,
+ 1960
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1982,
+ "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": 1983,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1989,
+ "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": 1985,
+ "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": 2000,
+ "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": 1993,
+ "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": 1994,
+ "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": 1995,
+ "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": 1990,
+ "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": 1992,
+ "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": 1987,
+ "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": 1986,
+ "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": 1984,
+ "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": 1988,
+ "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": 1998,
+ "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": 2001,
+ "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": 1999,
+ "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": 2003,
+ "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": 2004,
+ "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": 1996,
+ "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": 1997,
+ "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": 2002,
+ "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": 1991,
+ "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": [
+ 1989,
+ 1985,
+ 2000,
+ 1993,
+ 1994,
+ 1995,
+ 1990,
+ 1992,
+ 1987,
+ 1986,
+ 1984,
+ 1988,
+ 1998,
+ 2001,
+ 1999,
+ 2003,
+ 2004,
+ 1996,
+ 1997,
+ 2002,
+ 1991
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1975,
+ "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": 1976,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 1977,
+ "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": 1981,
+ "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": 1978,
+ "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": 1980,
+ "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": 1979,
+ "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": [
+ 1977,
+ 1981,
+ 1978,
+ 1980,
+ 1979
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2005,
+ "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": 2037,
+ "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": 2069,
+ "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": 2038,
+ "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": 2056,
+ "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": 2039,
+ "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": 2054,
+ "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": 2040,
+ "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": 2187,
+ "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": 2041,
+ "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": 2182,
+ "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": 2042,
+ "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": 2043,
+ "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": 2050,
+ "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": 2044,
+ "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": 2045,
+ "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": 2178,
+ "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": 2073,
+ "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": 2074,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2175,
+ "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": 2171,
+ "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": 2173,
+ "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": 2104,
+ "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": 2160,
+ "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": 2105,
+ "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": 2106,
+ "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": 2107,
+ "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": 2141,
+ "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": 2108,
+ "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": 2109,
+ "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": 2110,
+ "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": 2111,
+ "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": 2112,
+ "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": 2113,
+ "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": 2164,
+ "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": 2151,
+ "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": 2174,
+ "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": 2114,
+ "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": 2101,
+ "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": 2161,
+ "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": 2115,
+ "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": 2116,
+ "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": 2102,
+ "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": 2147,
+ "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": 2117,
+ "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": 2078,
+ "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": 2118,
+ "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": 2119,
+ "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": 2120,
+ "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": 2121,
+ "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": 2159,
+ "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": 2155,
+ "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": 2158,
+ "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": 2156,
+ "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": 2157,
+ "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": 2145,
+ "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": 2143,
+ "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": 2100,
+ "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": 2075,
+ "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": 2153,
+ "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": 2122,
+ "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": 2123,
+ "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": 2124,
+ "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": 2125,
+ "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": 2126,
+ "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": 2146,
+ "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": 2127,
+ "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": 2128,
+ "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": 2129,
+ "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": 2142,
+ "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": 2077,
+ "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": 2177,
+ "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": 2076,
+ "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": 2130,
+ "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": 2152,
+ "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": 2079,
+ "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": 2080,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2084,
+ "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": 2095,
+ "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": 2088,
+ "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": 2089,
+ "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": 2090,
+ "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": 2085,
+ "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": 2087,
+ "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": 2082,
+ "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": 2081,
+ "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": 2083,
+ "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": 2093,
+ "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": 2096,
+ "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": 2094,
+ "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": 2098,
+ "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": 2091,
+ "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": 2092,
+ "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": 2097,
+ "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": 2086,
+ "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": [
+ 2084,
+ 2095,
+ 2088,
+ 2089,
+ 2090,
+ 2085,
+ 2087,
+ 2082,
+ 2081,
+ 2083,
+ 2093,
+ 2096,
+ 2094,
+ 2098,
+ 2091,
+ 2092,
+ 2097,
+ 2086
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2166,
+ "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": 2167,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2168,
+ "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": 2170,
+ "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": 2169,
+ "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": [
+ 2168,
+ 2170,
+ 2169
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2099,
+ "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": 2131,
+ "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": 2163,
+ "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": 2132,
+ "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": 2150,
+ "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": 2133,
+ "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": 2148,
+ "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": 2134,
+ "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": 2135,
+ "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": 2176,
+ "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": 2136,
+ "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": 2137,
+ "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": 2144,
+ "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": 2138,
+ "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": 2139,
+ "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": 2172,
+ "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": 2154,
+ "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": 2140,
+ "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": 2165,
+ "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": 2103,
+ "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": 2162,
+ "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": 2149,
+ "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": [
+ 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,
+ 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,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2060,
+ "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": 2046,
+ "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": 2071,
+ "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": 2009,
+ "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": 2068,
+ "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": 2185,
+ "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": 2055,
+ "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": [
+ 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,
+ 2024,
+ 2025,
+ 2026,
+ 2027,
+ 2065,
+ 2061,
+ 2064,
+ 2062,
+ 2063,
+ 2051,
+ 2049,
+ 2006,
+ 1939,
+ 2059,
+ 2028,
+ 2029,
+ 2030,
+ 2031,
+ 2032,
+ 2052,
+ 2033,
+ 1943,
+ 2186,
+ 2034,
+ 2035,
+ 2048,
+ 1941,
+ 2183,
+ 1940,
+ 2036,
+ 2184,
+ 2058,
+ 1951,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 1919,
+ "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": 1905,
+ "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": 1930,
+ "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": 1868,
+ "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": 1927,
+ "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": 2730,
+ "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": 1914,
+ "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": [
+ 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,
+ 1918,
+ 1887,
+ 1888,
+ 1889,
+ 1890,
+ 1891,
+ 1911,
+ 1892,
+ 2194,
+ 2728,
+ 1893,
+ 1894,
+ 1907,
+ 1839,
+ 2193,
+ 1838,
+ 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
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 1834,
+ "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": 3093,
+ "name": "ForkManager"
+ }
+ },
+ {
+ "id": 1833,
+ "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": 2752,
+ "name": "allowMergeCommit",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 29,
+ "character": 29
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2753,
+ "name": "allowMergeCommit",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "id": 2754,
+ "name": "allowRebaseMerge",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 33,
+ "character": 29
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2755,
+ "name": "allowRebaseMerge",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "id": 2756,
+ "name": "allowSquashMerge",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 37,
+ "character": 29
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2757,
+ "name": "allowSquashMerge",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "id": 2758,
+ "name": "anonymusAccessEnabled",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 41,
+ "character": 34
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2759,
+ "name": "anonymusAccessEnabled",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "id": 2760,
+ "name": "archiveUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 45,
+ "character": 23
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2761,
+ "name": "archiveUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2762,
+ "name": "archived",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 49,
+ "character": 21
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2763,
+ "name": "archived",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2764,
+ "name": "assigneesUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 53,
+ "character": 25
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2765,
+ "name": "assigneesUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2766,
+ "name": "blobsUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 57,
+ "character": 21
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2767,
+ "name": "blobsUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2768,
+ "name": "branchesUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 61,
+ "character": 24
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2769,
+ "name": "branchesUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2770,
+ "name": "cloneUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 65,
+ "character": 21
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2771,
+ "name": "cloneUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2772,
+ "name": "codeOfConduct",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 69,
+ "character": 26
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2773,
+ "name": "codeOfConduct",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "intrinsic",
+ "name": "undefined"
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2774,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2778,
+ "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": 2776,
+ "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": 2777,
+ "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": 2775,
+ "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": [
+ 2778,
+ 2776,
+ 2777,
+ 2775
+ ]
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+ },
+ {
+ "id": 2779,
+ "name": "collaboratorsUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 73,
+ "character": 29
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2780,
+ "name": "collaboratorsUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2781,
+ "name": "commentsUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 77,
+ "character": 24
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2782,
+ "name": "commentsUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2783,
+ "name": "commitsUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 81,
+ "character": 23
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2784,
+ "name": "commitsUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2785,
+ "name": "compareUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 85,
+ "character": 23
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2786,
+ "name": "compareUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2787,
+ "name": "contentsUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 89,
+ "character": 24
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2788,
+ "name": "contentsUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2789,
+ "name": "contributorsUrl",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 93,
+ "character": 28
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2790,
+ "name": "contributorsUrl",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2791,
+ "name": "createdAt",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 97,
+ "character": 22
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2792,
+ "name": "createdAt",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2793,
+ "name": "defaultBranch",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 101,
+ "character": 26
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2794,
+ "name": "defaultBranch",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2748,
+ "name": "fork",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 21,
+ "character": 17
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2749,
+ "name": "fork",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "boolean"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2746,
+ "name": "forkCount",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 17,
+ "character": 22
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2747,
+ "name": "forkCount",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2750,
+ "name": "fullName",
+ "kind": 262144,
+ "kindString": "Accessor",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 25,
+ "character": 21
+ }
+ ],
+ "getSignature": [
+ {
+ "id": 2751,
+ "name": "fullName",
+ "kind": 524288,
+ "kindString": "Get signature",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 919
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 2795,
+ 1835,
+ 1834,
+ 1833
+ ]
+ },
+ {
+ "title": "Accessors",
+ "kind": 262144,
+ "children": [
+ 2752,
+ 2754,
+ 2756,
+ 2758,
+ 2760,
+ 2762,
+ 2764,
+ 2766,
+ 2768,
+ 2770,
+ 2772,
+ 2779,
+ 2781,
+ 2783,
+ 2785,
+ 2787,
+ 2789,
+ 2791,
+ 2793,
+ 2748,
+ 2746,
+ 2750
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/repo.ts",
+ "line": 6,
+ "character": 10
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 121,
+ "name": "Base"
+ }
+ ]
+ },
+ {
+ "id": 3111,
+ "name": "RepoManager",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 3112,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 3113,
+ "name": "new RepoManager",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3114,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3115,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3116,
+ "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": 3117,
+ "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": [
+ 3116,
+ 3117
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3111,
+ "name": "RepoManager"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 3032,
+ "name": "Manager.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 3031,
+ "name": "Manager.constructor"
+ }
+ },
+ {
+ "id": 3118,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3037,
+ "name": "Manager.client"
+ }
+ },
+ {
+ "id": 3119,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 5,
+ "character": 5
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3038,
+ "name": "Manager.url"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 3112
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3118,
+ 3119
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/managers/repomanager.ts",
+ "line": 4,
+ "character": 17
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 3030,
+ "name": "Manager"
+ }
+ ]
+ },
+ {
+ "id": 2796,
+ "name": "User",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "comment": {
+ "shortText": "GitHub user object."
+ },
+ "children": [
+ {
+ "id": 2797,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 2798,
+ "name": "new User",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 2799,
+ "name": "data",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "union",
+ "types": [
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2800,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2804,
+ "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": 2825,
+ "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": 2821,
+ "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": 2846,
+ "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": 2837,
+ "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": 2820,
+ "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": 2831,
+ "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": 2836,
+ "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": 2823,
+ "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": 2815,
+ "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": 2829,
+ "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": 2808,
+ "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": 2830,
+ "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": 2809,
+ "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": 2810,
+ "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": 2805,
+ "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": 2824,
+ "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": 2807,
+ "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": 2802,
+ "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": 2847,
+ "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": 2822,
+ "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": 2801,
+ "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": 2819,
+ "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": 2803,
+ "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": 2813,
+ "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": 2835,
+ "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": 2839,
+ "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": 2840,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2841,
+ "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": 2842,
+ "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": 2844,
+ "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": 2843,
+ "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": [
+ 2841,
+ 2842,
+ 2844,
+ 2843
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2833,
+ "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": 2828,
+ "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": 2827,
+ "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": 2816,
+ "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": 2814,
+ "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": 2818,
+ "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": 2811,
+ "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": 2812,
+ "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": 2845,
+ "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": 2834,
+ "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": 2826,
+ "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": 2838,
+ "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": 2817,
+ "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": 2832,
+ "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": 2806,
+ "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": [
+ 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
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2848,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2852,
+ "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": 2873,
+ "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": 2869,
+ "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": 2892,
+ "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": 2868,
+ "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": 2879,
+ "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": 2891,
+ "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": 2871,
+ "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": 2863,
+ "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": 2877,
+ "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": 2856,
+ "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": 2878,
+ "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": 2857,
+ "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": 2858,
+ "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": 2853,
+ "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": 2872,
+ "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": 2855,
+ "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": 2850,
+ "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": 2870,
+ "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": 2849,
+ "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": 2867,
+ "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": 2851,
+ "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": 2861,
+ "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": 2890,
+ "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": 2881,
+ "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": 2882,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2883,
+ "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": 2884,
+ "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": 2886,
+ "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": 2885,
+ "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": [
+ 2883,
+ 2884,
+ 2886,
+ 2885
+ ]
+ }
+ ]
+ }
+ }
+ },
+ {
+ "id": 2888,
+ "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": 2876,
+ "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": 2875,
+ "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": 2864,
+ "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": 2862,
+ "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": 2866,
+ "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": 2859,
+ "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": 2860,
+ "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": 2887,
+ "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": 2889,
+ "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": 2874,
+ "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": 2865,
+ "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": 2880,
+ "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": 2854,
+ "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": [
+ 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
+ ]
+ }
+ ]
+ }
+ },
+ {
+ "type": "reflection",
+ "declaration": {
+ "id": 2893,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "indexSignature": {
+ "id": 2894,
+ "name": "__index",
+ "kind": 8192,
+ "kindString": "Index signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 2895,
+ "name": "key",
+ "kind": 32768,
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "any"
+ }
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "id": 2896,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 2897,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 2898,
+ "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": [
+ 2898
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ }
+ ]
+ },
+ {
+ "id": 2903,
+ "name": "avatarUrl",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 17,
+ "character": 11
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2923,
+ "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": 2919,
+ "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": 2899,
+ "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": 2918,
+ "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": 2929,
+ "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": 2921,
+ "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": 2914,
+ "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": 2927,
+ "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": 2908,
+ "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": 2928,
+ "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": 2907,
+ "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": 2909,
+ "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": 2904,
+ "name": "gravatarId",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 18,
+ "character": 12
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2922,
+ "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": 2906,
+ "name": "htmlUrl",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 20,
+ "character": 9
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2901,
+ "name": "id",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 15,
+ "character": 4
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "number"
+ }
+ },
+ {
+ "id": 2920,
+ "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": 2900,
+ "name": "login",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 14,
+ "character": 7
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2902,
+ "name": "nodeId",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 16,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 2912,
+ "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": 2926,
+ "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": 2925,
+ "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": 2915,
+ "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": 2913,
+ "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": 2917,
+ "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": 2910,
+ "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": 2911,
+ "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": 2924,
+ "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": 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"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 2797
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 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
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/structures/user.ts",
+ "line": 7,
+ "character": 10
+ }
+ ],
+ "extendedBy": [
+ {
+ "type": "reference",
+ "id": 142,
+ "name": "ClientUser"
+ }
+ ]
+ },
+ {
+ "id": 3120,
+ "name": "UserManager",
+ "kind": 128,
+ "kindString": "Class",
+ "flags": {},
+ "children": [
+ {
+ "id": 3121,
+ "name": "constructor",
+ "kind": 512,
+ "kindString": "Constructor",
+ "flags": {},
+ "signatures": [
+ {
+ "id": 3122,
+ "name": "new UserManager",
+ "kind": 16384,
+ "kindString": "Constructor signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3123,
+ "name": "__namedParameters",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reflection",
+ "declaration": {
+ "id": 3124,
+ "name": "__type",
+ "kind": 65536,
+ "kindString": "Type literal",
+ "flags": {},
+ "children": [
+ {
+ "id": 3125,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/usermanager.ts",
+ "line": 9,
+ "character": 39
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ }
+ },
+ {
+ "id": 3126,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/usermanager.ts",
+ "line": 9,
+ "character": 52
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ }
+ ],
+ "groups": [
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3125,
+ 3126
+ ]
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 3120,
+ "name": "UserManager"
+ },
+ "overwrites": {
+ "type": "reference",
+ "id": 3032,
+ "name": "Manager.constructor"
+ }
+ }
+ ],
+ "overwrites": {
+ "type": "reference",
+ "id": 3031,
+ "name": "Manager.constructor"
+ }
+ },
+ {
+ "id": 3131,
+ "name": "client",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {},
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 4,
+ "character": 8
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "id": 1,
+ "name": "Client"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3037,
+ "name": "Manager.client"
+ }
+ },
+ {
+ "id": 3132,
+ "name": "url",
+ "kind": 1024,
+ "kindString": "Property",
+ "flags": {
+ "isOptional": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/manager.ts",
+ "line": 5,
+ "character": 5
+ }
+ ],
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ },
+ "inheritedFrom": {
+ "type": "reference",
+ "id": 3038,
+ "name": "Manager.url"
+ }
+ },
+ {
+ "id": 3127,
+ "name": "fetch",
+ "kind": 2048,
+ "kindString": "Method",
+ "flags": {
+ "isPublic": true
+ },
+ "sources": [
+ {
+ "fileName": "src/managers/usermanager.ts",
+ "line": 13,
+ "character": 20
+ }
+ ],
+ "signatures": [
+ {
+ "id": 3128,
+ "name": "fetch",
+ "kind": 4096,
+ "kindString": "Call signature",
+ "flags": {},
+ "parameters": [
+ {
+ "id": 3129,
+ "name": "username",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "intrinsic",
+ "name": "string"
+ }
+ },
+ {
+ "id": 3130,
+ "name": "options",
+ "kind": 32768,
+ "kindString": "Parameter",
+ "flags": {},
+ "type": {
+ "type": "reference",
+ "name": "FetchOptions"
+ },
+ "defaultValue": "{}"
+ }
+ ],
+ "type": {
+ "type": "reference",
+ "typeArguments": [
+ {
+ "type": "reference",
+ "id": 2796,
+ "name": "User"
+ }
+ ],
+ "name": "Promise"
+ }
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Constructors",
+ "kind": 512,
+ "children": [
+ 3121
+ ]
+ },
+ {
+ "title": "Properties",
+ "kind": 1024,
+ "children": [
+ 3131,
+ 3132
+ ]
+ },
+ {
+ "title": "Methods",
+ "kind": 2048,
+ "children": [
+ 3127
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/managers/usermanager.ts",
+ "line": 8,
+ "character": 17
+ }
+ ],
+ "extendedTypes": [
+ {
+ "type": "reference",
+ "id": 3030,
+ "name": "Manager"
+ }
+ ]
+ }
+ ],
+ "groups": [
+ {
+ "title": "Classes",
+ "kind": 128,
+ "children": [
+ 109,
+ 3039,
+ 121,
+ 126,
+ 1,
+ 142,
+ 422,
+ 447,
+ 3093,
+ 462,
+ 912,
+ 3102,
+ 3030,
+ 918,
+ 3111,
+ 2796,
+ 3120
+ ]
+ }
+ ],
+ "sources": [
+ {
+ "fileName": "src/index.ts",
+ "line": 1,
+ "character": 0
+ }
+ ]
+}
\ No newline at end of file
diff --git a/docs/doc.json b/docs/doc.json
deleted file mode 100644
index f637244..0000000
--- a/docs/doc.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
diff --git a/package.json b/package.json
index 7ed0994..d61612a 100644
--- a/package.json
+++ b/package.json
@@ -4,22 +4,35 @@
"description": "",
"main": "dist/index.js",
"scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "docs": "typedoc src/index.ts --json docs/doc.json"
+ "test": "mocha -r ts-node/register tests/index.test.ts",
+ "docs": "run-s docs:mod docs:gen",
+ "docs:mod": "node docgen",
+ "docs:gen": "typedoc",
+ "lint": "eslint . --ext .ts --max-warnings=0",
+ "build": "tsc -p tsconfig.json"
},
"keywords": [],
"author": "",
"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"
+ "node-fetch": "^3.1.1"
},
"devDependencies": {
- "@types/node": "^15.12.2",
+ "@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",
+ "npm-run-all": "^4.1.5",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typedoc": "^0.21.2",
diff --git a/src/managers/artifactsManager.ts b/src/managers/artifactsManager.ts
new file mode 100644
index 0000000..c688455
--- /dev/null
+++ b/src/managers/artifactsManager.ts
@@ -0,0 +1,63 @@
+import { Response } from "node-fetch";
+import Client from "../structures/client";
+import { ArtifactData, ArtifactListData } from "../utils";
+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;
+ perPage?: number;
+ }): Promise {
+ return await this.client.api
+ .req(`/repos/${this.owner}/${this.repo}/actions/artifacts`, {
+ query: options,
+ })
+ .get()
+ .then((res: Response) => {
+ return res.json();
+ })
+ .catch((e: Error) => {
+ throw e;
+ });
+ }
+ async get(artifactId: number): Promise {
+ return await this.client.api
+ .req(`/repos/${this.owner}/${this.repo}/actions/artifacts/${artifactId}`)
+ .get()
+ .then((res: Response) => {
+ return res.json();
+ });
+ }
+
+ // 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()
+ .then((res: Response) => {
+ return res.json();
+ });
+ }
+ async download(artifactId: number): Promise {
+ 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;
diff --git a/src/managers/forkmanager.ts b/src/managers/forkmanager.ts
new file mode 100644
index 0000000..5d5dce2
--- /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/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/managers/issuemanager.ts b/src/managers/issuemanager.ts
index 9f12d66..c470a5f 100644
--- a/src/managers/issuemanager.ts
+++ b/src/managers/issuemanager.ts
@@ -1,13 +1,18 @@
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 }) {
super({ client, url });
}
- async fetch(id: number, options: FetchOptions = {}) {}
+ /**
+ * fetch the issue using it's number
+ * @param {number} id - issue number
+ * @param {FetchOptions} options
+ */
+ // async fetch(id: number, options: FetchOptions): Promise {}
}
export default IssueManager;
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/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/usermanager.ts b/src/managers/usermanager.ts
index 9d7cae2..b6bb048 100644
--- a/src/managers/usermanager.ts
+++ b/src/managers/usermanager.ts
@@ -3,46 +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 });
}
- 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();
- 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 = {}
+ ): Promise {
+ const { auth = true } = options;
+ const res: Response = await this.client.api
+ .req(`users/${username}`, { auth })
+ .get();
+ return res.json().then((b: UserListData) => {
+ 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;
+ // }
}
export default UserManager;
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/actions.ts b/src/structures/actions.ts
new file mode 100644
index 0000000..d612af9
--- /dev/null
+++ b/src/structures/actions.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
diff --git a/src/structures/artifact.ts b/src/structures/artifact.ts
new file mode 100644
index 0000000..22dc2fe
--- /dev/null
+++ b/src/structures/artifact.ts
@@ -0,0 +1,3 @@
+class Artifact {}
+
+export default Artifact;
diff --git a/src/structures/blocks.ts b/src/structures/blocks.ts
index f37f828..57ddaed 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,12 +15,14 @@ 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) => {
- throw new Error(e);
+ .catch((e: Error) => {
+ throw e;
});
}
@@ -27,13 +30,13 @@ 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);
+ .catch((e: Error) => {
+ throw e;
});
}
@@ -42,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;
}
@@ -53,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/clientuser.ts b/src/structures/clientuser.ts
index f502670..fe52150 100644
--- a/src/structures/clientuser.ts
+++ b/src/structures/clientuser.ts
@@ -3,38 +3,36 @@ 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;
- 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?: {
- 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;
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,
};
}
@@ -43,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 });
}
@@ -52,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 });
}
@@ -61,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 });
}
@@ -94,12 +92,12 @@ class ClientUser extends User {
location?: string;
hireable?: boolean;
bio?: string;
- }) {
+ }): Promise {
return await this.client.api
.req("user", { body: options })
.patch()
.then(async (r: Response) => {
- return this._patch(await r.json());
+ return new ClientUser(await r.json(), { client: this.client });
});
}
}
diff --git a/src/structures/emails.ts b/src/structures/emails.ts
index dddb0b2..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";
@@ -7,53 +8,58 @@ class Emails extends Base {
super(client);
}
- async setPrimaryVisibility(visibility: any, email?: string) {
+ async setPrimaryVisibility(
+ visibility: string,
+ email?: 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/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 e69de29..77ffb01 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(): GistData["url"] {
+ return this.data.url;
+ }
+ get htmlUrl(): GistData["html_url"] {
+ return this.data.html_url;
+ }
+}
+
+export default Gist;
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,
+};
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 0686030..5f0aec7 100644
--- a/src/structures/repo.ts
+++ b/src/structures/repo.ts
@@ -1,7 +1,105 @@
-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(): RepoData["forks_count"] {
+ return this.data.forks_count;
+ }
+
+ public get fork(): RepoData["fork"] {
+ return this.data.fork;
+ }
+
+ public get fullName(): RepoData["full_name"] {
+ return this.data.full_name;
+ }
+
+ public get allowMergeCommit(): RepoData["allow_merge_commit"] {
+ return this.data.allow_merge_commit;
+ }
+
+ public get allowRebaseMerge(): RepoData["allow_rebase_merge"] {
+ return this.data.allow_rebase_merge;
+ }
+
+ public get allowSquashMerge(): RepoData["allow_squash_merge"] {
+ return this.data.allow_squash_merge;
+ }
+
+ public get anonymusAccessEnabled(): RepoData["anonymous_access_enabled"] {
+ return this.data.anonymous_access_enabled;
+ }
+
+ public get archiveUrl(): RepoData["archive_url"] {
+ return this.data.archive_url;
+ }
+
+ public get archived(): RepoData["archived"] {
+ return this.data.archived;
+ }
+
+ public get assigneesUrl(): RepoData["assignees_url"] {
+ return this.data.assignees_url;
+ }
+
+ public get blobsUrl(): RepoData["blobs_url"] {
+ return this.data.blobs_url;
+ }
+
+ public get branchesUrl(): RepoData["branches_url"] {
+ return this.data.branches_url;
+ }
+
+ public get cloneUrl(): RepoData["clone_url"] {
+ return this.data.clone_url;
+ }
+
+ public get codeOfConduct(): RepoData["code_of_conduct"] {
+ return this.data.code_of_conduct;
+ }
+
+ public get collaboratorsUrl(): RepoData["collaborators_url"] {
+ return this.data.collaborators_url;
+ }
+
+ public get commentsUrl(): RepoData["comments_url"] {
+ return this.data.comments_url;
+ }
+
+ public get commitsUrl(): RepoData["commits_url"] {
+ return this.data.commits_url;
+ }
+
+ public get compareUrl(): RepoData["compare_url"] {
+ return this.data.compare_url;
+ }
+
+ public get contentsUrl(): RepoData["contents_url"] {
+ return this.data.contents_url;
+ }
+
+ public get contributorsUrl(): RepoData["contributors_url"] {
+ return this.data.contributors_url;
+ }
+
+ public get createdAt(): RepoData["created_at"] {
+ return this.data.created_at;
+ }
+
+ public get defaultBranch(): RepoData["default_branch"] {
+ return this.data.default_branch;
}
}
diff --git a/src/structures/user.ts b/src/structures/user.ts
index e7043d2..05bbe29 100644
--- a/src/structures/user.ts
+++ b/src/structures/user.ts
@@ -1,3 +1,4 @@
+import { ClientUserData, 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;
@@ -76,34 +77,22 @@ class User {
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;
+ 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;
}
}
diff --git a/src/utils/constants.ts b/src/utils/constants.ts
index a48265d..64062c6 100644
--- a/src/utils/constants.ts
+++ b/src/utils/constants.ts
@@ -1,4 +1,16 @@
export interface FetchOptions {
- cache?: boolean;
- force?: boolean;
+ auth?: boolean;
}
+
+/**
+ * Options for fetching the api
+ * @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 bb6962b..77f2c7e 100644
--- a/src/utils/error.ts
+++ b/src/utils/error.ts
@@ -1,9 +1,11 @@
-import { Body, Response } from "node-fetch";
+import { Response } from "node-fetch";
class GHError extends Error {
- constructor(res: Response, json: any = {}) {
- super(res.statusText);
- this.message = json.message;
+ raw: Record;
+ constructor(res: Response, json: { message?: string } = {}) {
+ super(json.message ?? res.statusText);
+ this.name = "GitHubAPIError";
+ this.raw = json;
}
}
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/rawdata.ts b/src/utils/rawdata.ts
new file mode 100644
index 0000000..9939005
--- /dev/null
+++ b/src/utils/rawdata.ts
@@ -0,0 +1,28 @@
+import { Endpoints } from "@octokit/types";
+
+export type UserData = Endpoints["GET /users/{username}"]["response"]["data"];
+
+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"];
+
+export type IssueData =
+ Endpoints["GET /repos/{owner}/{repo}/issues/{issue_number}"];
diff --git a/src/utils/rest.ts b/src/utils/rest.ts
index 8c7c4fb..dc9c297 100644
--- a/src/utils/rest.ts
+++ b/src/utils/rest.ts
@@ -10,23 +10,23 @@ async function makeReq({
path,
query = {},
headers = {},
- body = {},
+ body,
method = "get",
_,
}: {
path: string;
query?: Partial>;
- headers?: Record;
- body?: Record;
+ 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,
headers,
- body: JSON.stringify(snakeCasify(body)),
+ body: body ? JSON.stringify(snakeCasify(body)) : undefined,
}
);
if (!res.ok && !_) throw new GHError(res, await res.json());
@@ -41,31 +41,36 @@ 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 ?? {};
- headers["accept"] = "application/vnd.github.v3+json";
- headers["Authorization"] = `token ${this.client.token}`;
+ const { query = {}, headers = {}, body, _, auth = true } = options;
+ headers["accept"] ??= "application/vnd.github.v3+json";
+ 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", _ }),
};
}
}
-export default RestManager;
+export { RestManager };
diff --git a/tests/clientuser.test.ts b/tests/clientuser.test.ts
new file mode 100644
index 0000000..96915ff
--- /dev/null
+++ b/tests/clientuser.test.ts
@@ -0,0 +1,33 @@
+import { expect } from "chai";
+import { Client } from "../dist";
+
+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());
+ });
+ 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());
+ });
+ it("set everything to expected values", (done) => {
+ client.user?.setBlog("http://github.com/GmBodhi/github-api");
+ client.user
+ ?.setBio("This is a test account for testing GmBodhi/github-api")
+ .then(() => done());
+ });
+ });
+ });
+}
diff --git a/tests/index.test.ts b/tests/index.test.ts
new file mode 100644
index 0000000..2fe41e4
--- /dev/null
+++ b/tests/index.test.ts
@@ -0,0 +1,31 @@
+import { expect } from "chai";
+import clientuser from "./clientuser.test";
+
+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(10000);
+ 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}`);
+ clientuser(client, getRandom);
+ });
+ });
+});
diff --git a/typedoc.json b/typedoc.json
new file mode 100644
index 0000000..9ebeed7
--- /dev/null
+++ b/typedoc.json
@@ -0,0 +1 @@
+{"entryPoints":["./src/index.ts"],"json":"docs/1.0.0.json"}
diff --git a/yarn.lock b/yarn.lock
index 8d5ae0a..aebcdd4 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -2,20 +2,103 @@
# 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"
+ 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"
+
"@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==
+ 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"
@@ -27,6 +110,34 @@
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/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"
+ 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"
@@ -35,31 +146,142 @@
"@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==
+
+"@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==
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"
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"
@@ -67,7 +289,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==
@@ -80,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"
@@ -113,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==
@@ -130,6 +369,19 @@ 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"
+ 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"
@@ -147,7 +399,16 @@ chai@^4.3.4:
pathval "^1.1.1"
type-detect "^4.0.5"
-chalk@^4.1.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==
+ 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==
@@ -160,20 +421,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"
@@ -184,6 +445,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"
@@ -191,6 +459,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"
@@ -213,6 +486,31 @@ 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"
+ integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ dependencies:
+ path-key "^3.1.0"
+ 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"
@@ -220,6 +518,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"
@@ -232,6 +537,18 @@ 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=
+
+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"
@@ -247,21 +564,260 @@ 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"
+ 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"
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"
+
+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"
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"
+
+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"
+ 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"
@@ -277,11 +833,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"
@@ -291,16 +860,33 @@ 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"
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==
+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"
+ 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"
@@ -311,14 +897,23 @@ 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:
+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"
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==
@@ -330,6 +925,30 @@ 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"
+
+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"
@@ -347,16 +966,73 @@ 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"
+ 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"
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"
+ 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"
@@ -370,6 +1046,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"
@@ -377,6 +1072,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"
@@ -392,13 +1114,25 @@ 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==
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"
@@ -409,6 +1143,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"
@@ -419,6 +1175,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"
@@ -426,11 +1187,39 @@ 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-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"
+ 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"
@@ -438,6 +1227,24 @@ 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"
+
+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"
@@ -445,6 +1252,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"
@@ -465,6 +1287,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"
@@ -480,6 +1309,24 @@ 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"
+ 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"
@@ -500,19 +1347,19 @@ 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==
-
-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==
+ 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"
+ 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"
@@ -525,12 +1372,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"
@@ -550,21 +1397,85 @@ 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"
integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
-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==
+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-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"
+ 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"
@@ -579,6 +1490,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"
@@ -593,6 +1516,21 @@ 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"
+
+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"
@@ -603,21 +1541,73 @@ 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"
+ 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:
+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"
+ 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"
@@ -625,30 +1615,122 @@ 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==
+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"
+ integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
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==
+
+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"
+ 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==
-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==
+"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"
+ 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"
+ integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
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"
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ 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.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"
resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.9.5.tgz#c8da81a05fbfd1810729c6873901a729a72ec541"
@@ -658,6 +1740,29 @@ 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"
+ 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"
@@ -671,6 +1776,37 @@ 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"
+ 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"
@@ -688,6 +1824,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"
@@ -702,7 +1863,12 @@ strip-ansi@^6.0.0:
dependencies:
ansi-regex "^5.0.0"
-strip-json-comments@3.1.1:
+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"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
@@ -714,6 +1880,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"
@@ -721,6 +1894,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"
@@ -744,16 +1934,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"
@@ -784,18 +1998,71 @@ 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"
+ 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==
+
+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@2.0.2:
+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"
+ 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"
integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
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"
@@ -803,15 +2070,20 @@ 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"
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"
@@ -837,6 +2109,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"