@rnsk/toolkits 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +104 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +2 -0
- package/dist/core/schema-helpers.d.ts +20 -0
- package/dist/core/schema-helpers.js +157 -0
- package/dist/core/scope.d.ts +4 -0
- package/dist/core/scope.js +12 -0
- package/dist/index.d.ts +5 -2
- package/dist/index.js +15 -3
- package/dist/runtime/meta-tools.js +2 -0
- package/dist/toolkits/github/icon.d.ts +5 -0
- package/dist/toolkits/github/icon.js +15 -0
- package/dist/toolkits/github/manifest.d.ts +3 -0
- package/dist/toolkits/github/manifest.js +36 -0
- package/dist/toolkits/github/tools/Actions/delete-artifact.d.ts +13 -0
- package/dist/toolkits/github/tools/Actions/delete-artifact.js +31 -0
- package/dist/toolkits/github/tools/Actions/get-artifact.d.ts +31 -0
- package/dist/toolkits/github/tools/Actions/get-artifact.js +39 -0
- package/dist/toolkits/github/tools/Actions/get-workflow-job.d.ts +36 -0
- package/dist/toolkits/github/tools/Actions/get-workflow-job.js +48 -0
- package/dist/toolkits/github/tools/Actions/list-artifacts.d.ts +23 -0
- package/dist/toolkits/github/tools/Actions/list-artifacts.js +43 -0
- package/dist/toolkits/github/tools/Actions/list-workflow-jobs.d.ts +27 -0
- package/dist/toolkits/github/tools/Actions/list-workflow-jobs.js +49 -0
- package/dist/toolkits/github/tools/Actions/list-workflow-run-artifacts.d.ts +24 -0
- package/dist/toolkits/github/tools/Actions/list-workflow-run-artifacts.js +45 -0
- package/dist/toolkits/github/tools/Activity/list-notifications.d.ts +24 -0
- package/dist/toolkits/github/tools/Activity/list-notifications.js +45 -0
- package/dist/toolkits/github/tools/Activity/list-public-events.d.ts +18 -0
- package/dist/toolkits/github/tools/Activity/list-public-events.js +37 -0
- package/dist/toolkits/github/tools/Activity/list-repo-events.d.ts +19 -0
- package/dist/toolkits/github/tools/Activity/list-repo-events.js +40 -0
- package/dist/toolkits/github/tools/Activity/list-user-events.d.ts +17 -0
- package/dist/toolkits/github/tools/Activity/list-user-events.js +37 -0
- package/dist/toolkits/github/tools/Activity/mark-notifications-read.d.ts +11 -0
- package/dist/toolkits/github/tools/Activity/mark-notifications-read.js +27 -0
- package/dist/toolkits/github/tools/Apps/get-authenticated-app.d.ts +24 -0
- package/dist/toolkits/github/tools/Apps/get-authenticated-app.js +36 -0
- package/dist/toolkits/github/tools/Apps/get-installation.d.ts +76 -0
- package/dist/toolkits/github/tools/Apps/get-installation.js +36 -0
- package/dist/toolkits/github/tools/Apps/list-installations.d.ts +19 -0
- package/dist/toolkits/github/tools/Apps/list-installations.js +38 -0
- package/dist/toolkits/github/tools/Checks/create-check-run.d.ts +24 -0
- package/dist/toolkits/github/tools/Checks/create-check-run.js +43 -0
- package/dist/toolkits/github/tools/Checks/create-check-suite.d.ts +21 -0
- package/dist/toolkits/github/tools/Checks/create-check-suite.js +37 -0
- package/dist/toolkits/github/tools/Checks/get-check-run.d.ts +25 -0
- package/dist/toolkits/github/tools/Checks/get-check-run.js +39 -0
- package/dist/toolkits/github/tools/Checks/get-check-suite.d.ts +25 -0
- package/dist/toolkits/github/tools/Checks/get-check-suite.js +39 -0
- package/dist/toolkits/github/tools/Checks/list-check-runs.d.ts +27 -0
- package/dist/toolkits/github/tools/Checks/list-check-runs.js +50 -0
- package/dist/toolkits/github/tools/Checks/update-check-run.d.ts +23 -0
- package/dist/toolkits/github/tools/Checks/update-check-run.js +41 -0
- package/dist/toolkits/github/tools/CodeScanning/get-alert.d.ts +25 -0
- package/dist/toolkits/github/tools/CodeScanning/get-alert.js +41 -0
- package/dist/toolkits/github/tools/CodeScanning/list-alerts.d.ts +23 -0
- package/dist/toolkits/github/tools/CodeScanning/list-alerts.js +50 -0
- package/dist/toolkits/github/tools/CodeScanning/update-alert.d.ts +19 -0
- package/dist/toolkits/github/tools/CodeScanning/update-alert.js +39 -0
- package/dist/toolkits/github/tools/Collaborators/add-collaborator.d.ts +14 -0
- package/dist/toolkits/github/tools/Collaborators/add-collaborator.js +33 -0
- package/dist/toolkits/github/tools/Collaborators/check-collaborator.d.ts +13 -0
- package/dist/toolkits/github/tools/Collaborators/check-collaborator.js +34 -0
- package/dist/toolkits/github/tools/Collaborators/list-collaborators.d.ts +25 -0
- package/dist/toolkits/github/tools/Collaborators/list-collaborators.js +41 -0
- package/dist/toolkits/github/tools/Collaborators/remove-collaborator.d.ts +13 -0
- package/dist/toolkits/github/tools/Collaborators/remove-collaborator.js +31 -0
- package/dist/toolkits/github/tools/Commits/compare-commits.d.ts +30 -0
- package/dist/toolkits/github/tools/Commits/compare-commits.js +37 -0
- package/dist/toolkits/github/tools/Commits/get-commit.d.ts +46 -0
- package/dist/toolkits/github/tools/Commits/get-commit.js +35 -0
- package/dist/toolkits/github/tools/Commits/list-branches-for-head-commit.d.ts +20 -0
- package/dist/toolkits/github/tools/Commits/list-branches-for-head-commit.js +31 -0
- package/dist/toolkits/github/tools/Commits/list-commits.d.ts +21 -0
- package/dist/toolkits/github/tools/Commits/list-commits.js +43 -0
- package/dist/toolkits/github/tools/Commits/list-pull-requests-associated-with-commit.d.ts +81 -0
- package/dist/toolkits/github/tools/Commits/list-pull-requests-associated-with-commit.js +35 -0
- package/dist/toolkits/github/tools/Dependabot/get-alert.d.ts +53 -0
- package/dist/toolkits/github/tools/Dependabot/get-alert.js +37 -0
- package/dist/toolkits/github/tools/Dependabot/list-alerts.d.ts +23 -0
- package/dist/toolkits/github/tools/Dependabot/list-alerts.js +46 -0
- package/dist/toolkits/github/tools/Dependabot/update-alert.d.ts +19 -0
- package/dist/toolkits/github/tools/Dependabot/update-alert.js +39 -0
- package/dist/toolkits/github/tools/DeployKeys/create-deploy-key.d.ts +23 -0
- package/dist/toolkits/github/tools/DeployKeys/create-deploy-key.js +43 -0
- package/dist/toolkits/github/tools/DeployKeys/delete-deploy-key.d.ts +13 -0
- package/dist/toolkits/github/tools/DeployKeys/delete-deploy-key.js +31 -0
- package/dist/toolkits/github/tools/DeployKeys/get-deploy-key.d.ts +21 -0
- package/dist/toolkits/github/tools/DeployKeys/get-deploy-key.js +39 -0
- package/dist/toolkits/github/tools/DeployKeys/list-deploy-keys.d.ts +21 -0
- package/dist/toolkits/github/tools/DeployKeys/list-deploy-keys.js +44 -0
- package/dist/toolkits/github/tools/Deployments/create-deployment.d.ts +33 -0
- package/dist/toolkits/github/tools/Deployments/create-deployment.js +51 -0
- package/dist/toolkits/github/tools/Deployments/delete-deployment.d.ts +13 -0
- package/dist/toolkits/github/tools/Deployments/delete-deployment.js +31 -0
- package/dist/toolkits/github/tools/Deployments/get-deployment.d.ts +27 -0
- package/dist/toolkits/github/tools/Deployments/get-deployment.js +42 -0
- package/dist/toolkits/github/tools/Deployments/list-deployments.d.ts +27 -0
- package/dist/toolkits/github/tools/Deployments/list-deployments.js +52 -0
- package/dist/toolkits/github/tools/Environments/create-or-update-environment.d.ts +32 -0
- package/dist/toolkits/github/tools/Environments/create-or-update-environment.js +50 -0
- package/dist/toolkits/github/tools/Environments/delete-environment.d.ts +13 -0
- package/dist/toolkits/github/tools/Environments/delete-environment.js +31 -0
- package/dist/toolkits/github/tools/Environments/get-environment.d.ts +48 -0
- package/dist/toolkits/github/tools/Environments/get-environment.js +42 -0
- package/dist/toolkits/github/tools/Environments/list-environments.d.ts +23 -0
- package/dist/toolkits/github/tools/Environments/list-environments.js +45 -0
- package/dist/toolkits/github/tools/Files/create-or-update-file.d.ts +21 -0
- package/dist/toolkits/github/tools/Files/create-or-update-file.js +44 -0
- package/dist/toolkits/github/tools/Files/delete-file.d.ts +18 -0
- package/dist/toolkits/github/tools/Files/delete-file.js +40 -0
- package/dist/toolkits/github/tools/Files/get-file-content.d.ts +32 -0
- package/dist/toolkits/github/tools/Files/get-file-content.js +51 -0
- package/dist/toolkits/github/tools/Gists/create-gist.d.ts +19 -0
- package/dist/toolkits/github/tools/Gists/create-gist.js +37 -0
- package/dist/toolkits/github/tools/Gists/get-gist.d.ts +23 -0
- package/dist/toolkits/github/tools/Gists/get-gist.js +43 -0
- package/dist/toolkits/github/tools/Gists/list-gists.d.ts +19 -0
- package/dist/toolkits/github/tools/Gists/list-gists.js +38 -0
- package/dist/toolkits/github/tools/Git/create-blob.d.ts +16 -0
- package/dist/toolkits/github/tools/Git/create-blob.js +38 -0
- package/dist/toolkits/github/tools/Git/create-git-commit.d.ts +47 -0
- package/dist/toolkits/github/tools/Git/create-git-commit.js +51 -0
- package/dist/toolkits/github/tools/Git/create-ref.d.ts +24 -0
- package/dist/toolkits/github/tools/Git/create-ref.js +40 -0
- package/dist/toolkits/github/tools/Git/create-tree.d.ts +31 -0
- package/dist/toolkits/github/tools/Git/create-tree.js +52 -0
- package/dist/toolkits/github/tools/Git/delete-ref.d.ts +13 -0
- package/dist/toolkits/github/tools/Git/delete-ref.js +31 -0
- package/dist/toolkits/github/tools/Git/get-blob.d.ts +21 -0
- package/dist/toolkits/github/tools/Git/get-blob.js +39 -0
- package/dist/toolkits/github/tools/Git/get-git-commit.d.ts +40 -0
- package/dist/toolkits/github/tools/Git/get-git-commit.js +41 -0
- package/dist/toolkits/github/tools/Git/get-ref.d.ts +18 -0
- package/dist/toolkits/github/tools/Git/get-ref.js +42 -0
- package/dist/toolkits/github/tools/Git/get-tree.d.ts +27 -0
- package/dist/toolkits/github/tools/Git/get-tree.js +47 -0
- package/dist/toolkits/github/tools/Git/update-ref.d.ts +25 -0
- package/dist/toolkits/github/tools/Git/update-ref.js +42 -0
- package/dist/toolkits/github/tools/Issues/add-issue-assignees.d.ts +14 -0
- package/dist/toolkits/github/tools/Issues/add-issue-assignees.js +35 -0
- package/dist/toolkits/github/tools/Issues/add-issue-comment.d.ts +20 -0
- package/dist/toolkits/github/tools/Issues/add-issue-comment.js +38 -0
- package/dist/toolkits/github/tools/Issues/add-issue-labels.d.ts +14 -0
- package/dist/toolkits/github/tools/Issues/add-issue-labels.js +35 -0
- package/dist/toolkits/github/tools/Issues/create-issue.d.ts +22 -0
- package/dist/toolkits/github/tools/Issues/create-issue.js +34 -0
- package/dist/toolkits/github/tools/Issues/get-issue.d.ts +29 -0
- package/dist/toolkits/github/tools/Issues/get-issue.js +36 -0
- package/dist/toolkits/github/tools/Issues/list-authenticated-user-issues.d.ts +21 -0
- package/dist/toolkits/github/tools/Issues/list-authenticated-user-issues.js +34 -0
- package/dist/toolkits/github/tools/Issues/list-issue-comments.d.ts +19 -0
- package/dist/toolkits/github/tools/Issues/list-issue-comments.js +40 -0
- package/dist/toolkits/github/tools/Issues/list-org-issues.d.ts +22 -0
- package/dist/toolkits/github/tools/Issues/list-org-issues.js +38 -0
- package/dist/toolkits/github/tools/Issues/list-repo-issues.d.ts +28 -0
- package/dist/toolkits/github/tools/Issues/list-repo-issues.js +42 -0
- package/dist/toolkits/github/tools/Issues/list-user-account-issues.d.ts +21 -0
- package/dist/toolkits/github/tools/Issues/list-user-account-issues.js +36 -0
- package/dist/toolkits/github/tools/Issues/lock-issue.d.ts +15 -0
- package/dist/toolkits/github/tools/Issues/lock-issue.js +44 -0
- package/dist/toolkits/github/tools/Issues/remove-issue-label.d.ts +14 -0
- package/dist/toolkits/github/tools/Issues/remove-issue-label.js +33 -0
- package/dist/toolkits/github/tools/Issues/unlock-issue.d.ts +13 -0
- package/dist/toolkits/github/tools/Issues/unlock-issue.js +31 -0
- package/dist/toolkits/github/tools/Issues/update-issue.d.ts +22 -0
- package/dist/toolkits/github/tools/Issues/update-issue.js +42 -0
- package/dist/toolkits/github/tools/Licenses/get-license.d.ts +33 -0
- package/dist/toolkits/github/tools/Licenses/get-license.js +42 -0
- package/dist/toolkits/github/tools/Licenses/get-repo-license.d.ts +47 -0
- package/dist/toolkits/github/tools/Licenses/get-repo-license.js +45 -0
- package/dist/toolkits/github/tools/Licenses/list-licenses.d.ts +12 -0
- package/dist/toolkits/github/tools/Licenses/list-licenses.js +32 -0
- package/dist/toolkits/github/tools/Markdown/render-markdown.d.ts +13 -0
- package/dist/toolkits/github/tools/Markdown/render-markdown.js +31 -0
- package/dist/toolkits/github/tools/Organizations/get-org-membership.d.ts +58 -0
- package/dist/toolkits/github/tools/Organizations/get-org-membership.js +38 -0
- package/dist/toolkits/github/tools/Organizations/get-organization.d.ts +65 -0
- package/dist/toolkits/github/tools/Organizations/get-organization.js +58 -0
- package/dist/toolkits/github/tools/Organizations/list-org-members.d.ts +18 -0
- package/dist/toolkits/github/tools/Organizations/list-org-members.js +44 -0
- package/dist/toolkits/github/tools/Organizations/list-org-repositories.d.ts +50 -0
- package/dist/toolkits/github/tools/Organizations/list-org-repositories.js +69 -0
- package/dist/toolkits/github/tools/Organizations/list-organizations.d.ts +13 -0
- package/dist/toolkits/github/tools/Organizations/list-organizations.js +36 -0
- package/dist/toolkits/github/tools/Organizations/list-user-organizations.d.ts +20 -0
- package/dist/toolkits/github/tools/Organizations/list-user-organizations.js +43 -0
- package/dist/toolkits/github/tools/Organizations/update-organization.d.ts +33 -0
- package/dist/toolkits/github/tools/Organizations/update-organization.js +50 -0
- package/dist/toolkits/github/tools/PRs/check-pull-request-merged.d.ts +13 -0
- package/dist/toolkits/github/tools/PRs/check-pull-request-merged.js +34 -0
- package/dist/toolkits/github/tools/PRs/create-pull-request-review.d.ts +19 -0
- package/dist/toolkits/github/tools/PRs/create-pull-request-review.js +39 -0
- package/dist/toolkits/github/tools/PRs/create-pull-request.d.ts +23 -0
- package/dist/toolkits/github/tools/PRs/create-pull-request.js +44 -0
- package/dist/toolkits/github/tools/PRs/get-pull-request.d.ts +41 -0
- package/dist/toolkits/github/tools/PRs/get-pull-request.js +47 -0
- package/dist/toolkits/github/tools/PRs/list-pull-request-commits.d.ts +15 -0
- package/dist/toolkits/github/tools/PRs/list-pull-request-commits.js +37 -0
- package/dist/toolkits/github/tools/PRs/list-pull-request-files.d.ts +22 -0
- package/dist/toolkits/github/tools/PRs/list-pull-request-files.js +42 -0
- package/dist/toolkits/github/tools/PRs/list-pull-requests.d.ts +24 -0
- package/dist/toolkits/github/tools/PRs/list-pull-requests.js +44 -0
- package/dist/toolkits/github/tools/PRs/merge-pull-request.d.ts +20 -0
- package/dist/toolkits/github/tools/PRs/merge-pull-request.js +41 -0
- package/dist/toolkits/github/tools/PRs/update-pull-request-branch.d.ts +16 -0
- package/dist/toolkits/github/tools/PRs/update-pull-request-branch.js +36 -0
- package/dist/toolkits/github/tools/PRs/update-pull-request.d.ts +26 -0
- package/dist/toolkits/github/tools/PRs/update-pull-request.js +47 -0
- package/dist/toolkits/github/tools/Projects/create-org-project.d.ts +27 -0
- package/dist/toolkits/github/tools/Projects/create-org-project.js +43 -0
- package/dist/toolkits/github/tools/Projects/delete-project.d.ts +11 -0
- package/dist/toolkits/github/tools/Projects/delete-project.js +27 -0
- package/dist/toolkits/github/tools/Projects/get-project.d.ts +31 -0
- package/dist/toolkits/github/tools/Projects/get-project.js +42 -0
- package/dist/toolkits/github/tools/Projects/list-org-projects.d.ts +20 -0
- package/dist/toolkits/github/tools/Projects/list-org-projects.js +45 -0
- package/dist/toolkits/github/tools/Projects/list-project-columns.d.ts +16 -0
- package/dist/toolkits/github/tools/Projects/list-project-columns.js +40 -0
- package/dist/toolkits/github/tools/Projects/list-repo-projects.d.ts +21 -0
- package/dist/toolkits/github/tools/Projects/list-repo-projects.js +47 -0
- package/dist/toolkits/github/tools/Projects/update-project.d.ts +22 -0
- package/dist/toolkits/github/tools/Projects/update-project.js +41 -0
- package/dist/toolkits/github/tools/RateLimit/get-rate-limit.d.ts +19 -0
- package/dist/toolkits/github/tools/RateLimit/get-rate-limit.js +26 -0
- package/dist/toolkits/github/tools/Reactions/create-commit-comment-reaction.d.ts +20 -0
- package/dist/toolkits/github/tools/Reactions/create-commit-comment-reaction.js +40 -0
- package/dist/toolkits/github/tools/Reactions/create-issue-reaction.d.ts +20 -0
- package/dist/toolkits/github/tools/Reactions/create-issue-reaction.js +40 -0
- package/dist/toolkits/github/tools/Reactions/delete-reaction.d.ts +11 -0
- package/dist/toolkits/github/tools/Reactions/delete-reaction.js +27 -0
- package/dist/toolkits/github/tools/Reactions/list-commit-comment-reactions.d.ts +17 -0
- package/dist/toolkits/github/tools/Reactions/list-commit-comment-reactions.js +44 -0
- package/dist/toolkits/github/tools/Reactions/list-issue-reactions.d.ts +17 -0
- package/dist/toolkits/github/tools/Reactions/list-issue-reactions.js +44 -0
- package/dist/toolkits/github/tools/Reactions/list-pr-comment-reactions.d.ts +17 -0
- package/dist/toolkits/github/tools/Reactions/list-pr-comment-reactions.js +44 -0
- package/dist/toolkits/github/tools/Releases/create-release.d.ts +27 -0
- package/dist/toolkits/github/tools/Releases/create-release.js +45 -0
- package/dist/toolkits/github/tools/Releases/delete-release.d.ts +13 -0
- package/dist/toolkits/github/tools/Releases/delete-release.js +31 -0
- package/dist/toolkits/github/tools/Releases/generate-release-notes.d.ts +18 -0
- package/dist/toolkits/github/tools/Releases/generate-release-notes.js +39 -0
- package/dist/toolkits/github/tools/Releases/get-latest-release.d.ts +22 -0
- package/dist/toolkits/github/tools/Releases/get-latest-release.js +38 -0
- package/dist/toolkits/github/tools/Releases/get-release.d.ts +37 -0
- package/dist/toolkits/github/tools/Releases/get-release.js +50 -0
- package/dist/toolkits/github/tools/Releases/list-releases.d.ts +22 -0
- package/dist/toolkits/github/tools/Releases/list-releases.js +47 -0
- package/dist/toolkits/github/tools/Releases/update-release.d.ts +27 -0
- package/dist/toolkits/github/tools/Releases/update-release.js +46 -0
- package/dist/toolkits/github/tools/Repos/create-repo.d.ts +32 -0
- package/dist/toolkits/github/tools/Repos/create-repo.js +57 -0
- package/dist/toolkits/github/tools/Repos/fork-repo.d.ts +17 -0
- package/dist/toolkits/github/tools/Repos/fork-repo.js +35 -0
- package/dist/toolkits/github/tools/Repos/get-repo-contributors.d.ts +20 -0
- package/dist/toolkits/github/tools/Repos/get-repo-contributors.js +39 -0
- package/dist/toolkits/github/tools/Repos/get-repo-languages.d.ts +14 -0
- package/dist/toolkits/github/tools/Repos/get-repo-languages.js +29 -0
- package/dist/toolkits/github/tools/Repos/get-repo.d.ts +36 -0
- package/dist/toolkits/github/tools/Repos/get-repo.js +43 -0
- package/dist/toolkits/github/tools/Repos/list-branches.d.ts +17 -0
- package/dist/toolkits/github/tools/Repos/list-branches.js +37 -0
- package/dist/toolkits/github/tools/Repos/list-repos.d.ts +22 -0
- package/dist/toolkits/github/tools/Repos/list-repos.js +36 -0
- package/dist/toolkits/github/tools/Repos/star-repo.d.ts +13 -0
- package/dist/toolkits/github/tools/Repos/star-repo.js +39 -0
- package/dist/toolkits/github/tools/Repos/watch-repo.d.ts +18 -0
- package/dist/toolkits/github/tools/Repos/watch-repo.js +37 -0
- package/dist/toolkits/github/tools/Search/search-code.d.ts +14 -0
- package/dist/toolkits/github/tools/Search/search-code.js +33 -0
- package/dist/toolkits/github/tools/Search/search-commits.d.ts +14 -0
- package/dist/toolkits/github/tools/Search/search-commits.js +33 -0
- package/dist/toolkits/github/tools/Search/search-issues.d.ts +23 -0
- package/dist/toolkits/github/tools/Search/search-issues.js +43 -0
- package/dist/toolkits/github/tools/Search/search-labels.d.ts +15 -0
- package/dist/toolkits/github/tools/Search/search-labels.js +35 -0
- package/dist/toolkits/github/tools/Search/search-repos.d.ts +22 -0
- package/dist/toolkits/github/tools/Search/search-repos.js +47 -0
- package/dist/toolkits/github/tools/Search/search-topics.d.ts +12 -0
- package/dist/toolkits/github/tools/Search/search-topics.js +29 -0
- package/dist/toolkits/github/tools/Search/search-users.d.ts +21 -0
- package/dist/toolkits/github/tools/Search/search-users.js +41 -0
- package/dist/toolkits/github/tools/SecretScanning/get-alert.d.ts +33 -0
- package/dist/toolkits/github/tools/SecretScanning/get-alert.js +45 -0
- package/dist/toolkits/github/tools/SecretScanning/list-alerts.d.ts +25 -0
- package/dist/toolkits/github/tools/SecretScanning/list-alerts.js +53 -0
- package/dist/toolkits/github/tools/SecretScanning/update-alert.d.ts +19 -0
- package/dist/toolkits/github/tools/SecretScanning/update-alert.js +41 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/create-repository-advisory.d.ts +34 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/create-repository-advisory.js +52 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/get-repository-advisory.d.ts +27 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/get-repository-advisory.js +42 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/list-global-advisories.d.ts +14 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/list-global-advisories.js +37 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/list-repository-advisories.d.ts +22 -0
- package/dist/toolkits/github/tools/SecurityAdvisories/list-repository-advisories.js +47 -0
- package/dist/toolkits/github/tools/Stars/check-repo-starred.d.ts +12 -0
- package/dist/toolkits/github/tools/Stars/check-repo-starred.js +32 -0
- package/dist/toolkits/github/tools/Stars/list-stargazers.d.ts +15 -0
- package/dist/toolkits/github/tools/Stars/list-stargazers.js +40 -0
- package/dist/toolkits/github/tools/Stars/list-starred-repos.d.ts +15 -0
- package/dist/toolkits/github/tools/Stars/list-starred-repos.js +38 -0
- package/dist/toolkits/github/tools/Stars/star-repo.d.ts +12 -0
- package/dist/toolkits/github/tools/Stars/star-repo.js +29 -0
- package/dist/toolkits/github/tools/Stars/unstar-repo.d.ts +12 -0
- package/dist/toolkits/github/tools/Stars/unstar-repo.js +29 -0
- package/dist/toolkits/github/tools/Statuses/create-commit-status.d.ts +25 -0
- package/dist/toolkits/github/tools/Statuses/create-commit-status.js +44 -0
- package/dist/toolkits/github/tools/Statuses/get-combined-status.d.ts +26 -0
- package/dist/toolkits/github/tools/Statuses/get-combined-status.js +44 -0
- package/dist/toolkits/github/tools/Statuses/list-commit-statuses.d.ts +18 -0
- package/dist/toolkits/github/tools/Statuses/list-commit-statuses.js +44 -0
- package/dist/toolkits/github/tools/Teams/add-team-repo.d.ts +15 -0
- package/dist/toolkits/github/tools/Teams/add-team-repo.js +35 -0
- package/dist/toolkits/github/tools/Teams/create-team.d.ts +32 -0
- package/dist/toolkits/github/tools/Teams/create-team.js +46 -0
- package/dist/toolkits/github/tools/Teams/delete-team.d.ts +12 -0
- package/dist/toolkits/github/tools/Teams/delete-team.js +29 -0
- package/dist/toolkits/github/tools/Teams/get-team.d.ts +28 -0
- package/dist/toolkits/github/tools/Teams/get-team.js +41 -0
- package/dist/toolkits/github/tools/Teams/list-team-members.d.ts +16 -0
- package/dist/toolkits/github/tools/Teams/list-team-members.js +42 -0
- package/dist/toolkits/github/tools/Teams/list-team-repos.d.ts +22 -0
- package/dist/toolkits/github/tools/Teams/list-team-repos.js +41 -0
- package/dist/toolkits/github/tools/Teams/list-teams.d.ts +18 -0
- package/dist/toolkits/github/tools/Teams/list-teams.js +42 -0
- package/dist/toolkits/github/tools/Teams/remove-team-repo.d.ts +14 -0
- package/dist/toolkits/github/tools/Teams/remove-team-repo.js +33 -0
- package/dist/toolkits/github/tools/Teams/update-team.d.ts +27 -0
- package/dist/toolkits/github/tools/Teams/update-team.js +44 -0
- package/dist/toolkits/github/tools/Users/follow-user.d.ts +12 -0
- package/dist/toolkits/github/tools/Users/follow-user.js +36 -0
- package/dist/toolkits/github/tools/Users/get-github-user.d.ts +64 -0
- package/dist/toolkits/github/tools/Users/get-github-user.js +48 -0
- package/dist/toolkits/github/tools/Users/get-user-by-id.d.ts +53 -0
- package/dist/toolkits/github/tools/Users/get-user-by-id.js +27 -0
- package/dist/toolkits/github/tools/Users/get-user-context.d.ts +14 -0
- package/dist/toolkits/github/tools/Users/get-user-context.js +32 -0
- package/dist/toolkits/github/tools/Users/get-user.d.ts +53 -0
- package/dist/toolkits/github/tools/Users/get-user.js +27 -0
- package/dist/toolkits/github/tools/Users/list-users.d.ts +31 -0
- package/dist/toolkits/github/tools/Users/list-users.js +29 -0
- package/dist/toolkits/github/tools/Users/update-authenticated-user.d.ts +62 -0
- package/dist/toolkits/github/tools/Users/update-authenticated-user.js +39 -0
- package/dist/toolkits/github/tools/Webhooks/create-repo-webhook.d.ts +34 -0
- package/dist/toolkits/github/tools/Webhooks/create-repo-webhook.js +47 -0
- package/dist/toolkits/github/tools/Webhooks/delete-repo-webhook.d.ts +13 -0
- package/dist/toolkits/github/tools/Webhooks/delete-repo-webhook.js +31 -0
- package/dist/toolkits/github/tools/Webhooks/get-repo-webhook.d.ts +30 -0
- package/dist/toolkits/github/tools/Webhooks/get-repo-webhook.js +41 -0
- package/dist/toolkits/github/tools/Webhooks/list-repo-webhooks.d.ts +31 -0
- package/dist/toolkits/github/tools/Webhooks/list-repo-webhooks.js +47 -0
- package/dist/toolkits/github/tools/Webhooks/update-repo-webhook.d.ts +36 -0
- package/dist/toolkits/github/tools/Webhooks/update-repo-webhook.js +50 -0
- package/dist/toolkits/github/tools/Workflows/get-workflow-run.d.ts +31 -0
- package/dist/toolkits/github/tools/Workflows/get-workflow-run.js +42 -0
- package/dist/toolkits/github/tools/Workflows/list-workflow-runs.d.ts +25 -0
- package/dist/toolkits/github/tools/Workflows/list-workflow-runs.js +59 -0
- package/dist/toolkits/github/tools/Workflows/list-workflows.d.ts +21 -0
- package/dist/toolkits/github/tools/Workflows/list-workflows.js +40 -0
- package/dist/toolkits/github/tools/Workflows/trigger-workflow.d.ts +15 -0
- package/dist/toolkits/github/tools/Workflows/trigger-workflow.js +35 -0
- package/dist/toolkits/github/tools/index.d.ts +176 -0
- package/dist/toolkits/github/tools/index.js +646 -0
- package/dist/toolkits/gmail/icon.js +25 -1
- package/dist/toolkits/gmail/manifest.js +78 -5
- package/dist/toolkits/gmail/tools/create-draft.d.ts +34 -0
- package/dist/toolkits/gmail/tools/create-draft.js +60 -0
- package/dist/toolkits/gmail/tools/delete-draft.d.ts +23 -0
- package/dist/toolkits/gmail/tools/delete-draft.js +34 -0
- package/dist/toolkits/gmail/tools/get-draft.d.ts +32 -0
- package/dist/toolkits/gmail/tools/get-draft.js +36 -0
- package/dist/toolkits/gmail/tools/get-message.d.ts +12 -12
- package/dist/toolkits/gmail/tools/get-message.js +3 -24
- package/dist/toolkits/gmail/tools/get-thread.d.ts +29 -0
- package/dist/toolkits/gmail/tools/get-thread.js +39 -0
- package/dist/toolkits/gmail/tools/index.d.ts +17 -0
- package/dist/toolkits/gmail/tools/index.js +17 -0
- package/dist/toolkits/gmail/tools/list-drafts.d.ts +28 -0
- package/dist/toolkits/gmail/tools/list-drafts.js +43 -0
- package/dist/toolkits/gmail/tools/list-labels.d.ts +20 -0
- package/dist/toolkits/gmail/tools/list-labels.js +46 -0
- package/dist/toolkits/gmail/tools/list-threads.d.ts +28 -0
- package/dist/toolkits/gmail/tools/list-threads.js +43 -0
- package/dist/toolkits/gmail/tools/modify-message-labels.d.ts +31 -0
- package/dist/toolkits/gmail/tools/modify-message-labels.js +44 -0
- package/dist/toolkits/gmail/tools/reply-to-thread.d.ts +33 -0
- package/dist/toolkits/gmail/tools/reply-to-thread.js +58 -0
- package/dist/toolkits/gmail/tools/send-draft.d.ts +29 -0
- package/dist/toolkits/gmail/tools/send-draft.js +41 -0
- package/dist/toolkits/gmail/tools/send-message.d.ts +4 -1
- package/dist/toolkits/gmail/tools/send-message.js +18 -16
- package/dist/toolkits/gmail/tools/trash-message.d.ts +29 -0
- package/dist/toolkits/gmail/tools/trash-message.js +37 -0
- package/dist/toolkits/gmail/tools/untrash-message.d.ts +29 -0
- package/dist/toolkits/gmail/tools/untrash-message.js +37 -0
- package/dist/toolkits/gmail/tools/utils.d.ts +41 -0
- package/dist/toolkits/gmail/tools/utils.js +97 -0
- package/dist/toolkits/google-calendar/icon.d.ts +5 -0
- package/dist/toolkits/google-calendar/icon.js +6 -0
- package/dist/toolkits/google-calendar/manifest.d.ts +3 -0
- package/dist/toolkits/google-calendar/manifest.js +45 -0
- package/dist/toolkits/google-calendar/tools/create-event.d.ts +27 -0
- package/dist/toolkits/google-calendar/tools/create-event.js +54 -0
- package/dist/toolkits/google-calendar/tools/delete-event.d.ts +27 -0
- package/dist/toolkits/google-calendar/tools/delete-event.js +38 -0
- package/dist/toolkits/google-calendar/tools/get-event.d.ts +24 -0
- package/dist/toolkits/google-calendar/tools/get-event.js +37 -0
- package/dist/toolkits/google-calendar/tools/index.d.ts +185 -0
- package/dist/toolkits/google-calendar/tools/index.js +47 -0
- package/dist/toolkits/google-calendar/tools/list-events.d.ts +24 -0
- package/dist/toolkits/google-calendar/tools/list-events.js +46 -0
- package/dist/toolkits/google-calendar/tools/search-events.d.ts +27 -0
- package/dist/toolkits/google-calendar/tools/search-events.js +49 -0
- package/dist/toolkits/google-calendar/tools/update-event.d.ts +29 -0
- package/dist/toolkits/google-calendar/tools/update-event.js +56 -0
- package/dist/toolkits/google-sheets/icon.d.ts +5 -0
- package/dist/toolkits/google-sheets/icon.js +13 -0
- package/dist/toolkits/google-sheets/manifest.d.ts +3 -0
- package/dist/toolkits/google-sheets/manifest.js +45 -0
- package/dist/toolkits/google-sheets/tools/append-values.d.ts +41 -0
- package/dist/toolkits/google-sheets/tools/append-values.js +51 -0
- package/dist/toolkits/google-sheets/tools/clear-values.d.ts +27 -0
- package/dist/toolkits/google-sheets/tools/clear-values.js +41 -0
- package/dist/toolkits/google-sheets/tools/create-spreadsheet.d.ts +33 -0
- package/dist/toolkits/google-sheets/tools/create-spreadsheet.js +59 -0
- package/dist/toolkits/google-sheets/tools/get-spreadsheet.d.ts +5 -0
- package/dist/toolkits/google-sheets/tools/get-spreadsheet.js +33 -0
- package/dist/toolkits/google-sheets/tools/get-values.d.ts +6 -0
- package/dist/toolkits/google-sheets/tools/get-values.js +34 -0
- package/dist/toolkits/google-sheets/tools/index.d.ts +209 -0
- package/dist/toolkits/google-sheets/tools/index.js +61 -0
- package/dist/toolkits/google-sheets/tools/list-spreadsheets.d.ts +21 -0
- package/dist/toolkits/google-sheets/tools/list-spreadsheets.js +43 -0
- package/dist/toolkits/google-sheets/tools/update-values.d.ts +38 -0
- package/dist/toolkits/google-sheets/tools/update-values.js +50 -0
- package/dist/toolkits/linear/icon.js +24 -1
- package/dist/toolkits/mathematics/icon.js +1 -1
- package/dist/toolkits/notion/icon.d.ts +5 -0
- package/dist/toolkits/notion/icon.js +10 -0
- package/dist/toolkits/notion/manifest.d.ts +3 -0
- package/dist/toolkits/notion/manifest.js +37 -0
- package/dist/toolkits/notion/tools/append-block-children.d.ts +6 -0
- package/dist/toolkits/notion/tools/append-block-children.js +30 -0
- package/dist/toolkits/notion/tools/create-page.d.ts +12 -0
- package/dist/toolkits/notion/tools/create-page.js +40 -0
- package/dist/toolkits/notion/tools/get-database.d.ts +5 -0
- package/dist/toolkits/notion/tools/get-database.js +25 -0
- package/dist/toolkits/notion/tools/get-page.d.ts +15 -0
- package/dist/toolkits/notion/tools/get-page.js +42 -0
- package/dist/toolkits/notion/tools/index.d.ts +16 -0
- package/dist/toolkits/notion/tools/index.js +61 -0
- package/dist/toolkits/notion/tools/list-databases.d.ts +5 -0
- package/dist/toolkits/notion/tools/list-databases.js +33 -0
- package/dist/toolkits/notion/tools/query-database.d.ts +8 -0
- package/dist/toolkits/notion/tools/query-database.js +34 -0
- package/dist/toolkits/notion/tools/search.d.ts +14 -0
- package/dist/toolkits/notion/tools/search.js +41 -0
- package/dist/toolkits/notion/tools/update-page.d.ts +9 -0
- package/dist/toolkits/notion/tools/update-page.js +36 -0
- package/dist/toolkits/web-search/icon.js +3 -1
- package/package.json +5 -6
- package/dist/core/categories.d.ts.map +0 -1
- package/dist/core/categories.js.map +0 -1
- package/dist/core/define.d.ts.map +0 -1
- package/dist/core/define.js.map +0 -1
- package/dist/core/index.d.ts.map +0 -1
- package/dist/core/index.js.map +0 -1
- package/dist/core/types.d.ts.map +0 -1
- package/dist/core/types.js.map +0 -1
- package/dist/core/validate.d.ts.map +0 -1
- package/dist/core/validate.js.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/runtime/credentials.d.ts.map +0 -1
- package/dist/runtime/credentials.js.map +0 -1
- package/dist/runtime/index.d.ts.map +0 -1
- package/dist/runtime/index.js.map +0 -1
- package/dist/runtime/meta-tools.d.ts.map +0 -1
- package/dist/runtime/meta-tools.js.map +0 -1
- package/dist/runtime/registry.d.ts.map +0 -1
- package/dist/runtime/registry.js.map +0 -1
- package/dist/runtime/schema-helpers.d.ts.map +0 -1
- package/dist/runtime/schema-helpers.js.map +0 -1
- package/dist/toolkits/gmail/icon.d.ts.map +0 -1
- package/dist/toolkits/gmail/icon.js.map +0 -1
- package/dist/toolkits/gmail/manifest.d.ts.map +0 -1
- package/dist/toolkits/gmail/manifest.js.map +0 -1
- package/dist/toolkits/gmail/tools/get-message.d.ts.map +0 -1
- package/dist/toolkits/gmail/tools/get-message.js.map +0 -1
- package/dist/toolkits/gmail/tools/list-messages.d.ts.map +0 -1
- package/dist/toolkits/gmail/tools/list-messages.js.map +0 -1
- package/dist/toolkits/gmail/tools/send-message.d.ts.map +0 -1
- package/dist/toolkits/gmail/tools/send-message.js.map +0 -1
- package/dist/toolkits/linear/icon.d.ts.map +0 -1
- package/dist/toolkits/linear/icon.js.map +0 -1
- package/dist/toolkits/linear/manifest.d.ts.map +0 -1
- package/dist/toolkits/linear/manifest.js.map +0 -1
- package/dist/toolkits/linear/tools/create-issue.d.ts.map +0 -1
- package/dist/toolkits/linear/tools/create-issue.js.map +0 -1
- package/dist/toolkits/linear/tools/list-teams.d.ts.map +0 -1
- package/dist/toolkits/linear/tools/list-teams.js.map +0 -1
- package/dist/toolkits/linear/tools/search-issues.d.ts.map +0 -1
- package/dist/toolkits/linear/tools/search-issues.js.map +0 -1
- package/dist/toolkits/mathematics/icon.d.ts.map +0 -1
- package/dist/toolkits/mathematics/icon.js.map +0 -1
- package/dist/toolkits/mathematics/manifest.d.ts.map +0 -1
- package/dist/toolkits/mathematics/manifest.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-combinatorics.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-combinatorics.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-matrix-determinant.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-matrix-determinant.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-percentage.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-percentage.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-product.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-product.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-quadratic-roots.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-quadratic-roots.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-statistics.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-statistics.js.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-sum.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/calculate-sum.js.map +0 -1
- package/dist/toolkits/mathematics/tools/get-random-number.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/get-random-number.js.map +0 -1
- package/dist/toolkits/mathematics/tools/solve-linear-equations.d.ts.map +0 -1
- package/dist/toolkits/mathematics/tools/solve-linear-equations.js.map +0 -1
- package/dist/toolkits/web-search/icon.d.ts.map +0 -1
- package/dist/toolkits/web-search/icon.js.map +0 -1
- package/dist/toolkits/web-search/manifest.d.ts.map +0 -1
- package/dist/toolkits/web-search/manifest.js.map +0 -1
- package/dist/toolkits/web-search/tools/firecrawl-client.d.ts.map +0 -1
- package/dist/toolkits/web-search/tools/firecrawl-client.js.map +0 -1
- package/dist/toolkits/web-search/tools/web-scrape.d.ts.map +0 -1
- package/dist/toolkits/web-search/tools/web-scrape.js.map +0 -1
- package/dist/toolkits/web-search/tools/web-search.d.ts.map +0 -1
- package/dist/toolkits/web-search/tools/web-search.js.map +0 -1
|
@@ -0,0 +1,646 @@
|
|
|
1
|
+
// @ts-nocheck
|
|
2
|
+
export { listRepos } from './Repos/list-repos';
|
|
3
|
+
export { createRepo } from './Repos/create-repo';
|
|
4
|
+
export { getGitHubUser } from './Users/get-github-user';
|
|
5
|
+
export { listRepoIssues } from './Issues/list-repo-issues';
|
|
6
|
+
export { createIssue } from './Issues/create-issue';
|
|
7
|
+
export { getRepo } from './Repos/get-repo';
|
|
8
|
+
export { forkRepo } from './Repos/fork-repo';
|
|
9
|
+
export { starRepo } from './Repos/star-repo';
|
|
10
|
+
export { watchRepo } from './Repos/watch-repo';
|
|
11
|
+
export { getRepoContributors } from './Repos/get-repo-contributors';
|
|
12
|
+
export { getRepoLanguages } from './Repos/get-repo-languages';
|
|
13
|
+
export { searchRepos } from './Search/search-repos';
|
|
14
|
+
export { getFileContent } from './Files/get-file-content';
|
|
15
|
+
export { createOrUpdateFile } from './Files/create-or-update-file';
|
|
16
|
+
export { deleteFile } from './Files/delete-file';
|
|
17
|
+
export { listCommits } from './Commits/list-commits';
|
|
18
|
+
export { listBranchesForHeadCommit } from './Commits/list-branches-for-head-commit';
|
|
19
|
+
export { listPullRequestsAssociatedWithCommit } from './Commits/list-pull-requests-associated-with-commit';
|
|
20
|
+
export { getCommit } from './Commits/get-commit';
|
|
21
|
+
export { compareCommits } from './Commits/compare-commits';
|
|
22
|
+
export { listBranches } from './Repos/list-branches';
|
|
23
|
+
export { updateIssue } from './Issues/update-issue';
|
|
24
|
+
export { addIssueComment } from './Issues/add-issue-comment';
|
|
25
|
+
export { listIssueComments } from './Issues/list-issue-comments';
|
|
26
|
+
export { addIssueLabels } from './Issues/add-issue-labels';
|
|
27
|
+
export { removeIssueLabel } from './Issues/remove-issue-label';
|
|
28
|
+
export { addIssueAssignees } from './Issues/add-issue-assignees';
|
|
29
|
+
export { lockIssue } from './Issues/lock-issue';
|
|
30
|
+
export { searchIssues } from './Search/search-issues';
|
|
31
|
+
export { listPullRequests } from './PRs/list-pull-requests';
|
|
32
|
+
export { getPullRequest } from './PRs/get-pull-request';
|
|
33
|
+
export { createPullRequest } from './PRs/create-pull-request';
|
|
34
|
+
export { mergePullRequest } from './PRs/merge-pull-request';
|
|
35
|
+
export { listPullRequestFiles } from './PRs/list-pull-request-files';
|
|
36
|
+
export { createPullRequestReview } from './PRs/create-pull-request-review';
|
|
37
|
+
export { updatePullRequest } from './PRs/update-pull-request';
|
|
38
|
+
export { listPullRequestCommits } from './PRs/list-pull-request-commits';
|
|
39
|
+
export { checkPullRequestMerged } from './PRs/check-pull-request-merged';
|
|
40
|
+
export { updatePullRequestBranch } from './PRs/update-pull-request-branch';
|
|
41
|
+
export { listWorkflows } from './Workflows/list-workflows';
|
|
42
|
+
export { triggerWorkflow } from './Workflows/trigger-workflow';
|
|
43
|
+
export { listWorkflowRuns } from './Workflows/list-workflow-runs';
|
|
44
|
+
export { getWorkflowRun } from './Workflows/get-workflow-run';
|
|
45
|
+
export { listGists } from './Gists/list-gists';
|
|
46
|
+
export { createGist } from './Gists/create-gist';
|
|
47
|
+
export { getGist } from './Gists/get-gist';
|
|
48
|
+
export { searchUsers } from './Search/search-users';
|
|
49
|
+
export { followUser } from './Users/follow-user';
|
|
50
|
+
// New User imports
|
|
51
|
+
export { updateAuthenticatedUser } from './Users/update-authenticated-user';
|
|
52
|
+
export { getUserById } from './Users/get-user-by-id';
|
|
53
|
+
export { listUsers } from './Users/list-users';
|
|
54
|
+
export { getUser } from './Users/get-user';
|
|
55
|
+
export { getUserContext } from './Users/get-user-context';
|
|
56
|
+
// New Issues imports
|
|
57
|
+
export { getIssue } from './Issues/get-issue';
|
|
58
|
+
export { listAuthenticatedUserIssues } from './Issues/list-authenticated-user-issues';
|
|
59
|
+
export { listOrgIssues } from './Issues/list-org-issues';
|
|
60
|
+
export { listUserAccountIssues } from './Issues/list-user-account-issues';
|
|
61
|
+
export { unlockIssue } from './Issues/unlock-issue';
|
|
62
|
+
// Actions
|
|
63
|
+
export { listArtifacts } from './Actions/list-artifacts';
|
|
64
|
+
export { getArtifact } from './Actions/get-artifact';
|
|
65
|
+
export { deleteArtifact } from './Actions/delete-artifact';
|
|
66
|
+
export { listWorkflowRunArtifacts } from './Actions/list-workflow-run-artifacts';
|
|
67
|
+
export { listWorkflowJobs } from './Actions/list-workflow-jobs';
|
|
68
|
+
export { getWorkflowJob } from './Actions/get-workflow-job';
|
|
69
|
+
// Activity
|
|
70
|
+
export { listPublicEvents } from './Activity/list-public-events';
|
|
71
|
+
export { listRepoEvents } from './Activity/list-repo-events';
|
|
72
|
+
export { listUserEvents } from './Activity/list-user-events';
|
|
73
|
+
export { listNotifications } from './Activity/list-notifications';
|
|
74
|
+
export { markNotificationsRead } from './Activity/mark-notifications-read';
|
|
75
|
+
// Apps
|
|
76
|
+
export { getAuthenticatedApp } from './Apps/get-authenticated-app';
|
|
77
|
+
export { listInstallations } from './Apps/list-installations';
|
|
78
|
+
export { getInstallation } from './Apps/get-installation';
|
|
79
|
+
// Checks
|
|
80
|
+
export { createCheckRun } from './Checks/create-check-run';
|
|
81
|
+
export { getCheckRun } from './Checks/get-check-run';
|
|
82
|
+
export { updateCheckRun } from './Checks/update-check-run';
|
|
83
|
+
export { listCheckRuns } from './Checks/list-check-runs';
|
|
84
|
+
export { createCheckSuite } from './Checks/create-check-suite';
|
|
85
|
+
export { getCheckSuite } from './Checks/get-check-suite';
|
|
86
|
+
// Code Scanning
|
|
87
|
+
export { listCodeScanningAlerts } from './CodeScanning/list-alerts';
|
|
88
|
+
export { getCodeScanningAlert } from './CodeScanning/get-alert';
|
|
89
|
+
export { updateCodeScanningAlert } from './CodeScanning/update-alert';
|
|
90
|
+
// Collaborators
|
|
91
|
+
export { listCollaborators } from './Collaborators/list-collaborators';
|
|
92
|
+
export { checkCollaborator } from './Collaborators/check-collaborator';
|
|
93
|
+
export { addCollaborator } from './Collaborators/add-collaborator';
|
|
94
|
+
export { removeCollaborator } from './Collaborators/remove-collaborator';
|
|
95
|
+
// Dependabot
|
|
96
|
+
export { listDependabotAlerts } from './Dependabot/list-alerts';
|
|
97
|
+
export { getDependabotAlert } from './Dependabot/get-alert';
|
|
98
|
+
export { updateDependabotAlert } from './Dependabot/update-alert';
|
|
99
|
+
// Deploy Keys
|
|
100
|
+
export { listDeployKeys } from './DeployKeys/list-deploy-keys';
|
|
101
|
+
export { createDeployKey } from './DeployKeys/create-deploy-key';
|
|
102
|
+
export { getDeployKey } from './DeployKeys/get-deploy-key';
|
|
103
|
+
export { deleteDeployKey } from './DeployKeys/delete-deploy-key';
|
|
104
|
+
// Deployments
|
|
105
|
+
export { listDeployments } from './Deployments/list-deployments';
|
|
106
|
+
export { createDeployment } from './Deployments/create-deployment';
|
|
107
|
+
export { getDeployment } from './Deployments/get-deployment';
|
|
108
|
+
export { deleteDeployment } from './Deployments/delete-deployment';
|
|
109
|
+
// Environments
|
|
110
|
+
export { listEnvironments } from './Environments/list-environments';
|
|
111
|
+
export { getEnvironment } from './Environments/get-environment';
|
|
112
|
+
export { createOrUpdateEnvironment } from './Environments/create-or-update-environment';
|
|
113
|
+
export { deleteEnvironment } from './Environments/delete-environment';
|
|
114
|
+
// Git
|
|
115
|
+
export { getBlob } from './Git/get-blob';
|
|
116
|
+
export { createBlob } from './Git/create-blob';
|
|
117
|
+
export { getGitCommit } from './Git/get-git-commit';
|
|
118
|
+
export { createGitCommit } from './Git/create-git-commit';
|
|
119
|
+
export { getRef } from './Git/get-ref';
|
|
120
|
+
export { createRef } from './Git/create-ref';
|
|
121
|
+
export { updateRef } from './Git/update-ref';
|
|
122
|
+
export { deleteRef } from './Git/delete-ref';
|
|
123
|
+
export { getTree } from './Git/get-tree';
|
|
124
|
+
export { createTree } from './Git/create-tree';
|
|
125
|
+
// Licenses
|
|
126
|
+
export { listLicenses } from './Licenses/list-licenses';
|
|
127
|
+
export { getLicense } from './Licenses/get-license';
|
|
128
|
+
export { getRepoLicense } from './Licenses/get-repo-license';
|
|
129
|
+
// Markdown
|
|
130
|
+
export { renderMarkdown } from './Markdown/render-markdown';
|
|
131
|
+
// Organizations
|
|
132
|
+
export { getOrganization } from './Organizations/get-organization';
|
|
133
|
+
export { listUserOrganizations } from './Organizations/list-user-organizations';
|
|
134
|
+
export { listOrgRepositories } from './Organizations/list-org-repositories';
|
|
135
|
+
export { listOrgMembers } from './Organizations/list-org-members';
|
|
136
|
+
export { getOrgMembership } from './Organizations/get-org-membership';
|
|
137
|
+
export { listOrganizations } from './Organizations/list-organizations';
|
|
138
|
+
export { updateOrganization } from './Organizations/update-organization';
|
|
139
|
+
// Projects
|
|
140
|
+
export { listRepoProjects } from './Projects/list-repo-projects';
|
|
141
|
+
export { listOrgProjects } from './Projects/list-org-projects';
|
|
142
|
+
export { createOrgProject } from './Projects/create-org-project';
|
|
143
|
+
export { getProject } from './Projects/get-project';
|
|
144
|
+
export { updateProject } from './Projects/update-project';
|
|
145
|
+
export { deleteProject } from './Projects/delete-project';
|
|
146
|
+
export { listProjectColumns } from './Projects/list-project-columns';
|
|
147
|
+
// Rate Limit
|
|
148
|
+
export { getRateLimit } from './RateLimit/get-rate-limit';
|
|
149
|
+
// Reactions
|
|
150
|
+
export { listIssueReactions } from './Reactions/list-issue-reactions';
|
|
151
|
+
export { createIssueReaction } from './Reactions/create-issue-reaction';
|
|
152
|
+
export { listPRCommentReactions } from './Reactions/list-pr-comment-reactions';
|
|
153
|
+
export { listCommitCommentReactions } from './Reactions/list-commit-comment-reactions';
|
|
154
|
+
export { createCommitCommentReaction } from './Reactions/create-commit-comment-reaction';
|
|
155
|
+
export { deleteReaction } from './Reactions/delete-reaction';
|
|
156
|
+
// Releases
|
|
157
|
+
export { listReleases } from './Releases/list-releases';
|
|
158
|
+
export { createRelease } from './Releases/create-release';
|
|
159
|
+
export { getRelease } from './Releases/get-release';
|
|
160
|
+
export { updateRelease } from './Releases/update-release';
|
|
161
|
+
export { deleteRelease } from './Releases/delete-release';
|
|
162
|
+
export { getLatestRelease } from './Releases/get-latest-release';
|
|
163
|
+
export { generateReleaseNotes } from './Releases/generate-release-notes';
|
|
164
|
+
// Secret Scanning
|
|
165
|
+
export { listSecretScanningAlerts } from './SecretScanning/list-alerts';
|
|
166
|
+
export { getSecretScanningAlert } from './SecretScanning/get-alert';
|
|
167
|
+
export { updateSecretScanningAlert } from './SecretScanning/update-alert';
|
|
168
|
+
// Security Advisories
|
|
169
|
+
export { listRepositoryAdvisories } from './SecurityAdvisories/list-repository-advisories';
|
|
170
|
+
export { getRepositoryAdvisory } from './SecurityAdvisories/get-repository-advisory';
|
|
171
|
+
export { createRepositoryAdvisory } from './SecurityAdvisories/create-repository-advisory';
|
|
172
|
+
export { listGlobalAdvisories } from './SecurityAdvisories/list-global-advisories';
|
|
173
|
+
// Stars
|
|
174
|
+
export { listStarredRepos } from './Stars/list-starred-repos';
|
|
175
|
+
export { checkRepoStarred } from './Stars/check-repo-starred';
|
|
176
|
+
export { listStargazers } from './Stars/list-stargazers';
|
|
177
|
+
// Statuses
|
|
178
|
+
export { createCommitStatus } from './Statuses/create-commit-status';
|
|
179
|
+
export { listCommitStatuses } from './Statuses/list-commit-statuses';
|
|
180
|
+
export { getCombinedStatus } from './Statuses/get-combined-status';
|
|
181
|
+
// Teams
|
|
182
|
+
export { listTeams } from './Teams/list-teams';
|
|
183
|
+
export { createTeam } from './Teams/create-team';
|
|
184
|
+
export { getTeam } from './Teams/get-team';
|
|
185
|
+
export { updateTeam } from './Teams/update-team';
|
|
186
|
+
export { deleteTeam } from './Teams/delete-team';
|
|
187
|
+
export { listTeamMembers } from './Teams/list-team-members';
|
|
188
|
+
export { listTeamRepos } from './Teams/list-team-repos';
|
|
189
|
+
export { addTeamRepo } from './Teams/add-team-repo';
|
|
190
|
+
export { removeTeamRepo } from './Teams/remove-team-repo';
|
|
191
|
+
// Webhooks
|
|
192
|
+
export { listRepoWebhooks } from './Webhooks/list-repo-webhooks';
|
|
193
|
+
export { createRepoWebhook } from './Webhooks/create-repo-webhook';
|
|
194
|
+
export { getRepoWebhook } from './Webhooks/get-repo-webhook';
|
|
195
|
+
export { updateRepoWebhook } from './Webhooks/update-repo-webhook';
|
|
196
|
+
export { deleteRepoWebhook } from './Webhooks/delete-repo-webhook';
|
|
197
|
+
import { listRepos } from './Repos/list-repos';
|
|
198
|
+
import { createRepo } from './Repos/create-repo';
|
|
199
|
+
import { getGitHubUser } from './Users/get-github-user';
|
|
200
|
+
import { listRepoIssues } from './Issues/list-repo-issues';
|
|
201
|
+
import { createIssue } from './Issues/create-issue';
|
|
202
|
+
import { getRepo } from './Repos/get-repo';
|
|
203
|
+
import { forkRepo } from './Repos/fork-repo';
|
|
204
|
+
import { starRepo } from './Repos/star-repo';
|
|
205
|
+
import { watchRepo } from './Repos/watch-repo';
|
|
206
|
+
import { getRepoContributors } from './Repos/get-repo-contributors';
|
|
207
|
+
import { getRepoLanguages } from './Repos/get-repo-languages';
|
|
208
|
+
import { searchRepos } from './Search/search-repos';
|
|
209
|
+
import { getFileContent } from './Files/get-file-content';
|
|
210
|
+
import { createOrUpdateFile } from './Files/create-or-update-file';
|
|
211
|
+
import { deleteFile } from './Files/delete-file';
|
|
212
|
+
import { listCommits } from './Commits/list-commits';
|
|
213
|
+
import { listBranchesForHeadCommit } from './Commits/list-branches-for-head-commit';
|
|
214
|
+
import { listPullRequestsAssociatedWithCommit } from './Commits/list-pull-requests-associated-with-commit';
|
|
215
|
+
import { getCommit } from './Commits/get-commit';
|
|
216
|
+
import { compareCommits } from './Commits/compare-commits';
|
|
217
|
+
import { listBranches } from './Repos/list-branches';
|
|
218
|
+
import { updateIssue } from './Issues/update-issue';
|
|
219
|
+
import { addIssueComment } from './Issues/add-issue-comment';
|
|
220
|
+
import { listIssueComments } from './Issues/list-issue-comments';
|
|
221
|
+
import { addIssueLabels } from './Issues/add-issue-labels';
|
|
222
|
+
import { removeIssueLabel } from './Issues/remove-issue-label';
|
|
223
|
+
import { addIssueAssignees } from './Issues/add-issue-assignees';
|
|
224
|
+
import { lockIssue } from './Issues/lock-issue';
|
|
225
|
+
import { searchIssues } from './Search/search-issues';
|
|
226
|
+
import { listPullRequests } from './PRs/list-pull-requests';
|
|
227
|
+
import { getPullRequest } from './PRs/get-pull-request';
|
|
228
|
+
import { createPullRequest } from './PRs/create-pull-request';
|
|
229
|
+
import { mergePullRequest } from './PRs/merge-pull-request';
|
|
230
|
+
import { listPullRequestFiles } from './PRs/list-pull-request-files';
|
|
231
|
+
import { createPullRequestReview } from './PRs/create-pull-request-review';
|
|
232
|
+
import { updatePullRequest } from './PRs/update-pull-request';
|
|
233
|
+
import { listPullRequestCommits } from './PRs/list-pull-request-commits';
|
|
234
|
+
import { checkPullRequestMerged } from './PRs/check-pull-request-merged';
|
|
235
|
+
import { updatePullRequestBranch } from './PRs/update-pull-request-branch';
|
|
236
|
+
import { listWorkflows } from './Workflows/list-workflows';
|
|
237
|
+
import { triggerWorkflow } from './Workflows/trigger-workflow';
|
|
238
|
+
import { listWorkflowRuns } from './Workflows/list-workflow-runs';
|
|
239
|
+
import { getWorkflowRun } from './Workflows/get-workflow-run';
|
|
240
|
+
import { listGists } from './Gists/list-gists';
|
|
241
|
+
import { createGist } from './Gists/create-gist';
|
|
242
|
+
import { getGist } from './Gists/get-gist';
|
|
243
|
+
import { searchUsers } from './Search/search-users';
|
|
244
|
+
import { followUser } from './Users/follow-user';
|
|
245
|
+
// New User imports
|
|
246
|
+
import { updateAuthenticatedUser } from './Users/update-authenticated-user';
|
|
247
|
+
import { getUserById } from './Users/get-user-by-id';
|
|
248
|
+
import { listUsers } from './Users/list-users';
|
|
249
|
+
import { getUser } from './Users/get-user';
|
|
250
|
+
import { getUserContext } from './Users/get-user-context';
|
|
251
|
+
// New Search imports
|
|
252
|
+
import { searchCode } from './Search/search-code';
|
|
253
|
+
import { searchCommits } from './Search/search-commits';
|
|
254
|
+
import { searchLabels } from './Search/search-labels';
|
|
255
|
+
import { searchTopics } from './Search/search-topics';
|
|
256
|
+
// New Issues imports
|
|
257
|
+
import { getIssue } from './Issues/get-issue';
|
|
258
|
+
import { listAuthenticatedUserIssues } from './Issues/list-authenticated-user-issues';
|
|
259
|
+
import { listOrgIssues } from './Issues/list-org-issues';
|
|
260
|
+
import { listUserAccountIssues } from './Issues/list-user-account-issues';
|
|
261
|
+
import { unlockIssue } from './Issues/unlock-issue';
|
|
262
|
+
// Actions
|
|
263
|
+
import { listArtifacts } from './Actions/list-artifacts';
|
|
264
|
+
import { getArtifact } from './Actions/get-artifact';
|
|
265
|
+
import { deleteArtifact } from './Actions/delete-artifact';
|
|
266
|
+
import { listWorkflowRunArtifacts } from './Actions/list-workflow-run-artifacts';
|
|
267
|
+
import { listWorkflowJobs } from './Actions/list-workflow-jobs';
|
|
268
|
+
import { getWorkflowJob } from './Actions/get-workflow-job';
|
|
269
|
+
// Activity
|
|
270
|
+
import { listPublicEvents } from './Activity/list-public-events';
|
|
271
|
+
import { listRepoEvents } from './Activity/list-repo-events';
|
|
272
|
+
import { listUserEvents } from './Activity/list-user-events';
|
|
273
|
+
import { listNotifications } from './Activity/list-notifications';
|
|
274
|
+
import { markNotificationsRead } from './Activity/mark-notifications-read';
|
|
275
|
+
// Apps
|
|
276
|
+
import { getAuthenticatedApp } from './Apps/get-authenticated-app';
|
|
277
|
+
import { listInstallations } from './Apps/list-installations';
|
|
278
|
+
import { getInstallation } from './Apps/get-installation';
|
|
279
|
+
// Checks
|
|
280
|
+
import { createCheckRun } from './Checks/create-check-run';
|
|
281
|
+
import { getCheckRun } from './Checks/get-check-run';
|
|
282
|
+
import { updateCheckRun } from './Checks/update-check-run';
|
|
283
|
+
import { listCheckRuns } from './Checks/list-check-runs';
|
|
284
|
+
import { createCheckSuite } from './Checks/create-check-suite';
|
|
285
|
+
import { getCheckSuite } from './Checks/get-check-suite';
|
|
286
|
+
// Code Scanning
|
|
287
|
+
import { listCodeScanningAlerts } from './CodeScanning/list-alerts';
|
|
288
|
+
import { getCodeScanningAlert } from './CodeScanning/get-alert';
|
|
289
|
+
import { updateCodeScanningAlert } from './CodeScanning/update-alert';
|
|
290
|
+
// Collaborators
|
|
291
|
+
import { listCollaborators } from './Collaborators/list-collaborators';
|
|
292
|
+
import { checkCollaborator } from './Collaborators/check-collaborator';
|
|
293
|
+
import { addCollaborator } from './Collaborators/add-collaborator';
|
|
294
|
+
import { removeCollaborator } from './Collaborators/remove-collaborator';
|
|
295
|
+
// Dependabot
|
|
296
|
+
import { listDependabotAlerts } from './Dependabot/list-alerts';
|
|
297
|
+
import { getDependabotAlert } from './Dependabot/get-alert';
|
|
298
|
+
import { updateDependabotAlert } from './Dependabot/update-alert';
|
|
299
|
+
// Deploy Keys
|
|
300
|
+
import { listDeployKeys } from './DeployKeys/list-deploy-keys';
|
|
301
|
+
import { createDeployKey } from './DeployKeys/create-deploy-key';
|
|
302
|
+
import { getDeployKey } from './DeployKeys/get-deploy-key';
|
|
303
|
+
import { deleteDeployKey } from './DeployKeys/delete-deploy-key';
|
|
304
|
+
// Deployments
|
|
305
|
+
import { listDeployments } from './Deployments/list-deployments';
|
|
306
|
+
import { createDeployment } from './Deployments/create-deployment';
|
|
307
|
+
import { getDeployment } from './Deployments/get-deployment';
|
|
308
|
+
import { deleteDeployment } from './Deployments/delete-deployment';
|
|
309
|
+
// Environments
|
|
310
|
+
import { listEnvironments } from './Environments/list-environments';
|
|
311
|
+
import { getEnvironment } from './Environments/get-environment';
|
|
312
|
+
import { createOrUpdateEnvironment } from './Environments/create-or-update-environment';
|
|
313
|
+
import { deleteEnvironment } from './Environments/delete-environment';
|
|
314
|
+
// Git
|
|
315
|
+
import { getBlob } from './Git/get-blob';
|
|
316
|
+
import { createBlob } from './Git/create-blob';
|
|
317
|
+
import { getGitCommit } from './Git/get-git-commit';
|
|
318
|
+
import { createGitCommit } from './Git/create-git-commit';
|
|
319
|
+
import { getRef } from './Git/get-ref';
|
|
320
|
+
import { createRef } from './Git/create-ref';
|
|
321
|
+
import { updateRef } from './Git/update-ref';
|
|
322
|
+
import { deleteRef } from './Git/delete-ref';
|
|
323
|
+
import { getTree } from './Git/get-tree';
|
|
324
|
+
import { createTree } from './Git/create-tree';
|
|
325
|
+
// Licenses
|
|
326
|
+
import { listLicenses } from './Licenses/list-licenses';
|
|
327
|
+
import { getLicense } from './Licenses/get-license';
|
|
328
|
+
import { getRepoLicense } from './Licenses/get-repo-license';
|
|
329
|
+
// Markdown
|
|
330
|
+
import { renderMarkdown } from './Markdown/render-markdown';
|
|
331
|
+
// Organizations
|
|
332
|
+
import { getOrganization } from './Organizations/get-organization';
|
|
333
|
+
import { listUserOrganizations } from './Organizations/list-user-organizations';
|
|
334
|
+
import { listOrgRepositories } from './Organizations/list-org-repositories';
|
|
335
|
+
import { listOrgMembers } from './Organizations/list-org-members';
|
|
336
|
+
import { getOrgMembership } from './Organizations/get-org-membership';
|
|
337
|
+
import { listOrganizations } from './Organizations/list-organizations';
|
|
338
|
+
import { updateOrganization } from './Organizations/update-organization';
|
|
339
|
+
// Projects
|
|
340
|
+
import { listRepoProjects } from './Projects/list-repo-projects';
|
|
341
|
+
import { listOrgProjects } from './Projects/list-org-projects';
|
|
342
|
+
import { createOrgProject } from './Projects/create-org-project';
|
|
343
|
+
import { getProject } from './Projects/get-project';
|
|
344
|
+
import { updateProject } from './Projects/update-project';
|
|
345
|
+
import { deleteProject } from './Projects/delete-project';
|
|
346
|
+
import { listProjectColumns } from './Projects/list-project-columns';
|
|
347
|
+
// Rate Limit
|
|
348
|
+
import { getRateLimit } from './RateLimit/get-rate-limit';
|
|
349
|
+
// Reactions
|
|
350
|
+
import { listIssueReactions } from './Reactions/list-issue-reactions';
|
|
351
|
+
import { createIssueReaction } from './Reactions/create-issue-reaction';
|
|
352
|
+
import { listPRCommentReactions } from './Reactions/list-pr-comment-reactions';
|
|
353
|
+
import { listCommitCommentReactions } from './Reactions/list-commit-comment-reactions';
|
|
354
|
+
import { createCommitCommentReaction } from './Reactions/create-commit-comment-reaction';
|
|
355
|
+
import { deleteReaction } from './Reactions/delete-reaction';
|
|
356
|
+
// Releases
|
|
357
|
+
import { listReleases } from './Releases/list-releases';
|
|
358
|
+
import { createRelease } from './Releases/create-release';
|
|
359
|
+
import { getRelease } from './Releases/get-release';
|
|
360
|
+
import { updateRelease } from './Releases/update-release';
|
|
361
|
+
import { deleteRelease } from './Releases/delete-release';
|
|
362
|
+
import { getLatestRelease } from './Releases/get-latest-release';
|
|
363
|
+
import { generateReleaseNotes } from './Releases/generate-release-notes';
|
|
364
|
+
// Secret Scanning
|
|
365
|
+
import { listSecretScanningAlerts } from './SecretScanning/list-alerts';
|
|
366
|
+
import { getSecretScanningAlert } from './SecretScanning/get-alert';
|
|
367
|
+
import { updateSecretScanningAlert } from './SecretScanning/update-alert';
|
|
368
|
+
// Security Advisories
|
|
369
|
+
import { listRepositoryAdvisories } from './SecurityAdvisories/list-repository-advisories';
|
|
370
|
+
import { getRepositoryAdvisory } from './SecurityAdvisories/get-repository-advisory';
|
|
371
|
+
import { createRepositoryAdvisory } from './SecurityAdvisories/create-repository-advisory';
|
|
372
|
+
import { listGlobalAdvisories } from './SecurityAdvisories/list-global-advisories';
|
|
373
|
+
// Stars
|
|
374
|
+
import { listStarredRepos } from './Stars/list-starred-repos';
|
|
375
|
+
import { checkRepoStarred } from './Stars/check-repo-starred';
|
|
376
|
+
import { listStargazers } from './Stars/list-stargazers';
|
|
377
|
+
// Statuses
|
|
378
|
+
import { createCommitStatus } from './Statuses/create-commit-status';
|
|
379
|
+
import { listCommitStatuses } from './Statuses/list-commit-statuses';
|
|
380
|
+
import { getCombinedStatus } from './Statuses/get-combined-status';
|
|
381
|
+
// Teams
|
|
382
|
+
import { listTeams } from './Teams/list-teams';
|
|
383
|
+
import { createTeam } from './Teams/create-team';
|
|
384
|
+
import { getTeam } from './Teams/get-team';
|
|
385
|
+
import { updateTeam } from './Teams/update-team';
|
|
386
|
+
import { deleteTeam } from './Teams/delete-team';
|
|
387
|
+
import { listTeamMembers } from './Teams/list-team-members';
|
|
388
|
+
import { listTeamRepos } from './Teams/list-team-repos';
|
|
389
|
+
import { addTeamRepo } from './Teams/add-team-repo';
|
|
390
|
+
import { removeTeamRepo } from './Teams/remove-team-repo';
|
|
391
|
+
// Webhooks
|
|
392
|
+
import { listRepoWebhooks } from './Webhooks/list-repo-webhooks';
|
|
393
|
+
import { createRepoWebhook } from './Webhooks/create-repo-webhook';
|
|
394
|
+
import { getRepoWebhook } from './Webhooks/get-repo-webhook';
|
|
395
|
+
import { updateRepoWebhook } from './Webhooks/update-repo-webhook';
|
|
396
|
+
import { deleteRepoWebhook } from './Webhooks/delete-repo-webhook';
|
|
397
|
+
export const githubTools = [
|
|
398
|
+
{
|
|
399
|
+
name: 'listRepos',
|
|
400
|
+
description: 'List repositories for the authenticated GitHub user. Returns repo name, full_name, description, visibility, and URL.',
|
|
401
|
+
tool: listRepos,
|
|
402
|
+
requiredAuth: 'githubToken',
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
name: 'createRepo',
|
|
406
|
+
description: 'Create a new repository for the authenticated GitHub user.',
|
|
407
|
+
tool: createRepo,
|
|
408
|
+
requiredAuth: 'githubToken',
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
name: 'getGitHubUser',
|
|
412
|
+
description: 'Get the authenticated GitHub user profile (login, name, email, plan, usage, etc.).',
|
|
413
|
+
tool: getGitHubUser,
|
|
414
|
+
requiredAuth: 'githubToken',
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
name: 'updateAuthenticatedUser',
|
|
418
|
+
description: 'Update the authenticated GitHub user profile.',
|
|
419
|
+
tool: updateAuthenticatedUser,
|
|
420
|
+
requiredAuth: 'githubToken',
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
name: 'getUserById',
|
|
424
|
+
description: 'Get a user using their ID.',
|
|
425
|
+
tool: getUserById,
|
|
426
|
+
requiredAuth: 'githubToken',
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
name: 'listUsers',
|
|
430
|
+
description: 'List users. Lists all users, in the order that they signed up on GitHub.',
|
|
431
|
+
tool: listUsers,
|
|
432
|
+
requiredAuth: 'githubToken',
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
name: 'getUser',
|
|
436
|
+
description: 'Get a user. Provides publicly available information about someone with a GitHub account.',
|
|
437
|
+
tool: getUser,
|
|
438
|
+
requiredAuth: 'githubToken',
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
name: 'getUserContext',
|
|
442
|
+
description: 'Get contextual information for a user. Provides the interaction context between the authenticated user and another user.',
|
|
443
|
+
tool: getUserContext,
|
|
444
|
+
requiredAuth: 'githubToken',
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
name: 'listRepoIssues',
|
|
448
|
+
description: 'List issues for a GitHub repository. Provide owner and repo.',
|
|
449
|
+
tool: listRepoIssues,
|
|
450
|
+
requiredAuth: 'githubToken',
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
name: 'createIssue',
|
|
454
|
+
description: 'Create a new issue in a GitHub repository. Provide owner, repo, title, and optional body.',
|
|
455
|
+
tool: createIssue,
|
|
456
|
+
requiredAuth: 'githubToken',
|
|
457
|
+
},
|
|
458
|
+
{ name: 'getRepo', description: 'Get detailed information about a specific GitHub repository.', tool: getRepo, requiredAuth: 'githubToken' },
|
|
459
|
+
{ name: 'forkRepo', description: 'Fork a GitHub repository to your account or an organization.', tool: forkRepo, requiredAuth: 'githubToken' },
|
|
460
|
+
{ name: 'starRepo', description: 'Star or unstar a GitHub repository.', tool: starRepo, requiredAuth: 'githubToken' },
|
|
461
|
+
{ name: 'watchRepo', description: 'Set subscription status (watch/unwatch) for a repository.', tool: watchRepo, requiredAuth: 'githubToken' },
|
|
462
|
+
{ name: 'getRepoContributors', description: 'List contributors for a GitHub repository.', tool: getRepoContributors, requiredAuth: 'githubToken' },
|
|
463
|
+
{ name: 'getRepoLanguages', description: 'List languages used in a GitHub repository.', tool: getRepoLanguages, requiredAuth: 'githubToken' },
|
|
464
|
+
{ name: 'searchRepos', description: 'Search for GitHub repositories using a query string.', tool: searchRepos, requiredAuth: 'githubToken' },
|
|
465
|
+
{ name: 'searchCode', description: 'Search code. Searches for query terms inside of a file.', tool: searchCode, requiredAuth: 'githubToken' },
|
|
466
|
+
{ name: 'searchCommits', description: 'Search commits. Find commits via various criteria on the default branch (usually master).', tool: searchCommits, requiredAuth: 'githubToken' },
|
|
467
|
+
{ name: 'searchLabels', description: 'Search labels. Find labels in a repository with names or descriptions that match search keywords.', tool: searchLabels, requiredAuth: 'githubToken' },
|
|
468
|
+
{ name: 'searchTopics', description: 'Search topics. Find topics via various criteria.', tool: searchTopics, requiredAuth: 'githubToken' },
|
|
469
|
+
{ name: 'getFileContent', description: 'Get the content of a file from a GitHub repository.', tool: getFileContent, requiredAuth: 'githubToken' },
|
|
470
|
+
{ name: 'createOrUpdateFile', description: 'Create or update a file in a GitHub repository.', tool: createOrUpdateFile, requiredAuth: 'githubToken' },
|
|
471
|
+
{ name: 'deleteFile', description: 'Delete a file from a GitHub repository.', tool: deleteFile, requiredAuth: 'githubToken' },
|
|
472
|
+
{ name: 'listCommits', description: 'List commits on a GitHub repository.', tool: listCommits, requiredAuth: 'githubToken' },
|
|
473
|
+
{ name: 'listBranchesForHeadCommit', description: 'List branches for HEAD commit.', tool: listBranchesForHeadCommit, requiredAuth: 'githubToken' },
|
|
474
|
+
{ name: 'listPullRequestsAssociatedWithCommit', description: 'List pull requests associated with a commit.', tool: listPullRequestsAssociatedWithCommit, requiredAuth: 'githubToken' },
|
|
475
|
+
{ name: 'getCommit', description: 'Get a commit.', tool: getCommit, requiredAuth: 'githubToken' },
|
|
476
|
+
{ name: 'compareCommits', description: 'Compare two commits.', tool: compareCommits, requiredAuth: 'githubToken' },
|
|
477
|
+
{ name: 'listBranches', description: 'List branches of a GitHub repository.', tool: listBranches, requiredAuth: 'githubToken' },
|
|
478
|
+
{ name: 'updateIssue', description: 'Update a GitHub issue (close, reopen, edit title/body).', tool: updateIssue, requiredAuth: 'githubToken' },
|
|
479
|
+
{ name: 'addIssueComment', description: 'Add a comment to a GitHub issue or pull request.', tool: addIssueComment, requiredAuth: 'githubToken' },
|
|
480
|
+
{ name: 'listIssueComments', description: 'List comments on a GitHub issue or pull request.', tool: listIssueComments, requiredAuth: 'githubToken' },
|
|
481
|
+
{ name: 'addIssueLabels', description: 'Add labels to a GitHub issue.', tool: addIssueLabels, requiredAuth: 'githubToken' },
|
|
482
|
+
{ name: 'removeIssueLabel', description: 'Remove a label from a GitHub issue.', tool: removeIssueLabel, requiredAuth: 'githubToken' },
|
|
483
|
+
{ name: 'addIssueAssignees', description: 'Add assignees to a GitHub issue.', tool: addIssueAssignees, requiredAuth: 'githubToken' },
|
|
484
|
+
{ name: 'lockIssue', description: 'Lock or unlock a GitHub issue.', tool: lockIssue, requiredAuth: 'githubToken' },
|
|
485
|
+
{ name: 'searchIssues', description: 'Search for GitHub issues and pull requests.', tool: searchIssues, requiredAuth: 'githubToken' },
|
|
486
|
+
{ name: 'listPullRequests', description: 'List pull requests for a GitHub repository.', tool: listPullRequests, requiredAuth: 'githubToken' },
|
|
487
|
+
{ name: 'getPullRequest', description: 'Get detailed information about a specific pull request.', tool: getPullRequest, requiredAuth: 'githubToken' },
|
|
488
|
+
{ name: 'createPullRequest', description: 'Create a new pull request.', tool: createPullRequest, requiredAuth: 'githubToken' },
|
|
489
|
+
{ name: 'mergePullRequest', description: 'Merge a pull request.', tool: mergePullRequest, requiredAuth: 'githubToken' },
|
|
490
|
+
{ name: 'listPullRequestFiles', description: 'List files modified in a pull request.', tool: listPullRequestFiles, requiredAuth: 'githubToken' },
|
|
491
|
+
{ name: 'createPullRequestReview', description: 'Create a review for a pull request.', tool: createPullRequestReview, requiredAuth: 'githubToken' },
|
|
492
|
+
{ name: 'updatePullRequest', description: 'Update a pull request (title, body, state, base).', tool: updatePullRequest, requiredAuth: 'githubToken' },
|
|
493
|
+
{ name: 'listPullRequestCommits', description: 'List commits on a pull request.', tool: listPullRequestCommits, requiredAuth: 'githubToken' },
|
|
494
|
+
{ name: 'checkPullRequestMerged', description: 'Check if a pull request has been merged.', tool: checkPullRequestMerged, requiredAuth: 'githubToken' },
|
|
495
|
+
{ name: 'updatePullRequestBranch', description: 'Update a pull request branch with the latest changes from the base branch.', tool: updatePullRequestBranch, requiredAuth: 'githubToken' },
|
|
496
|
+
{ name: 'listWorkflows', description: 'List GitHub Actions workflows for a repository.', tool: listWorkflows, requiredAuth: 'githubToken' },
|
|
497
|
+
{ name: 'triggerWorkflow', description: 'Trigger a GitHub Actions workflow dispatch event.', tool: triggerWorkflow, requiredAuth: 'githubToken' },
|
|
498
|
+
{ name: 'listWorkflowRuns', description: 'List GitHub Actions workflow runs.', tool: listWorkflowRuns, requiredAuth: 'githubToken' },
|
|
499
|
+
{ name: 'getWorkflowRun', description: 'Get details of a specific GitHub Actions workflow run.', tool: getWorkflowRun, requiredAuth: 'githubToken' },
|
|
500
|
+
{ name: 'listGists', description: 'List the authenticated user\'s gists or public gists.', tool: listGists, requiredAuth: 'githubToken' },
|
|
501
|
+
{ name: 'createGist', description: 'Create a new gist.', tool: createGist, requiredAuth: 'githubToken' },
|
|
502
|
+
{ name: 'getGist', description: 'Get a specific gist.', tool: getGist, requiredAuth: 'githubToken' },
|
|
503
|
+
{ name: 'searchUsers', description: 'Search for GitHub users.', tool: searchUsers, requiredAuth: 'githubToken' },
|
|
504
|
+
{ name: 'followUser', description: 'Follow or unfollow a GitHub user.', tool: followUser, requiredAuth: 'githubToken' },
|
|
505
|
+
{ name: 'getIssue', description: 'Get a single issue by its number.', tool: getIssue, requiredAuth: 'githubToken' },
|
|
506
|
+
{ name: 'listAuthenticatedUserIssues', description: 'List issues assigned to the authenticated user across all visible repositories.', tool: listAuthenticatedUserIssues, requiredAuth: 'githubToken' },
|
|
507
|
+
{ name: 'listOrgIssues', description: 'List issues assigned to the authenticated user for a specific organization.', tool: listOrgIssues, requiredAuth: 'githubToken' },
|
|
508
|
+
{ name: 'listUserAccountIssues', description: 'List issues assigned to the authenticated user across their own repositories.', tool: listUserAccountIssues, requiredAuth: 'githubToken' },
|
|
509
|
+
{ name: 'unlockIssue', description: 'Unlock a GitHub issue.', tool: unlockIssue, requiredAuth: 'githubToken' },
|
|
510
|
+
// Actions
|
|
511
|
+
{ name: 'listArtifacts', description: 'List artifacts for a repository.', tool: listArtifacts, requiredAuth: 'githubToken' },
|
|
512
|
+
{ name: 'getArtifact', description: 'Get an artifact.', tool: getArtifact, requiredAuth: 'githubToken' },
|
|
513
|
+
{ name: 'deleteArtifact', description: 'Delete an artifact.', tool: deleteArtifact, requiredAuth: 'githubToken' },
|
|
514
|
+
{ name: 'listWorkflowRunArtifacts', description: 'List workflow run artifacts.', tool: listWorkflowRunArtifacts, requiredAuth: 'githubToken' },
|
|
515
|
+
{ name: 'listWorkflowJobs', description: 'List jobs for a workflow run.', tool: listWorkflowJobs, requiredAuth: 'githubToken' },
|
|
516
|
+
{ name: 'getWorkflowJob', description: 'Get a job for a workflow run.', tool: getWorkflowJob, requiredAuth: 'githubToken' },
|
|
517
|
+
// Activity
|
|
518
|
+
{ name: 'listPublicEvents', description: 'List public events.', tool: listPublicEvents, requiredAuth: 'githubToken' },
|
|
519
|
+
{ name: 'listRepoEvents', description: 'List repository events.', tool: listRepoEvents, requiredAuth: 'githubToken' },
|
|
520
|
+
{ name: 'listUserEvents', description: 'List events for the authenticated user.', tool: listUserEvents, requiredAuth: 'githubToken' },
|
|
521
|
+
{ name: 'listNotifications', description: 'List notifications for the authenticated user.', tool: listNotifications, requiredAuth: 'githubToken' },
|
|
522
|
+
{ name: 'markNotificationsRead', description: 'Mark notifications as read.', tool: markNotificationsRead, requiredAuth: 'githubToken' },
|
|
523
|
+
// Apps
|
|
524
|
+
{ name: 'getAuthenticatedApp', description: 'Get the authenticated app.', tool: getAuthenticatedApp, requiredAuth: 'githubToken' },
|
|
525
|
+
{ name: 'listInstallations', description: 'List installations for the authenticated app.', tool: listInstallations, requiredAuth: 'githubToken' },
|
|
526
|
+
{ name: 'getInstallation', description: 'Get an installation for the authenticated app.', tool: getInstallation, requiredAuth: 'githubToken' },
|
|
527
|
+
// Checks
|
|
528
|
+
{ name: 'createCheckRun', description: 'Create a check run.', tool: createCheckRun, requiredAuth: 'githubToken' },
|
|
529
|
+
{ name: 'getCheckRun', description: 'Get a check run.', tool: getCheckRun, requiredAuth: 'githubToken' },
|
|
530
|
+
{ name: 'updateCheckRun', description: 'Update a check run.', tool: updateCheckRun, requiredAuth: 'githubToken' },
|
|
531
|
+
{ name: 'listCheckRuns', description: 'List check runs for a ref.', tool: listCheckRuns, requiredAuth: 'githubToken' },
|
|
532
|
+
{ name: 'createCheckSuite', description: 'Create a check suite.', tool: createCheckSuite, requiredAuth: 'githubToken' },
|
|
533
|
+
{ name: 'getCheckSuite', description: 'Get a check suite.', tool: getCheckSuite, requiredAuth: 'githubToken' },
|
|
534
|
+
// Code Scanning
|
|
535
|
+
{ name: 'listCodeScanningAlerts', description: 'List code scanning alerts for a repository.', tool: listCodeScanningAlerts, requiredAuth: 'githubToken' },
|
|
536
|
+
{ name: 'getCodeScanningAlert', description: 'Get a code scanning alert.', tool: getCodeScanningAlert, requiredAuth: 'githubToken' },
|
|
537
|
+
{ name: 'updateCodeScanningAlert', description: 'Update a code scanning alert.', tool: updateCodeScanningAlert, requiredAuth: 'githubToken' },
|
|
538
|
+
// Collaborators
|
|
539
|
+
{ name: 'listCollaborators', description: 'List repository collaborators.', tool: listCollaborators, requiredAuth: 'githubToken' },
|
|
540
|
+
{ name: 'checkCollaborator', description: 'Check if a user is a repository collaborator.', tool: checkCollaborator, requiredAuth: 'githubToken' },
|
|
541
|
+
{ name: 'addCollaborator', description: 'Add a repository collaborator.', tool: addCollaborator, requiredAuth: 'githubToken' },
|
|
542
|
+
{ name: 'removeCollaborator', description: 'Remove a repository collaborator.', tool: removeCollaborator, requiredAuth: 'githubToken' },
|
|
543
|
+
// Dependabot
|
|
544
|
+
{ name: 'listDependabotAlerts', description: 'List Dependabot alerts for a repository.', tool: listDependabotAlerts, requiredAuth: 'githubToken' },
|
|
545
|
+
{ name: 'getDependabotAlert', description: 'Get a Dependabot alert.', tool: getDependabotAlert, requiredAuth: 'githubToken' },
|
|
546
|
+
{ name: 'updateDependabotAlert', description: 'Update a Dependabot alert.', tool: updateDependabotAlert, requiredAuth: 'githubToken' },
|
|
547
|
+
// Deploy Keys
|
|
548
|
+
{ name: 'listDeployKeys', description: 'List deploy keys for a repository.', tool: listDeployKeys, requiredAuth: 'githubToken' },
|
|
549
|
+
{ name: 'createDeployKey', description: 'Create a deploy key.', tool: createDeployKey, requiredAuth: 'githubToken' },
|
|
550
|
+
{ name: 'getDeployKey', description: 'Get a deploy key.', tool: getDeployKey, requiredAuth: 'githubToken' },
|
|
551
|
+
{ name: 'deleteDeployKey', description: 'Delete a deploy key.', tool: deleteDeployKey, requiredAuth: 'githubToken' },
|
|
552
|
+
// Deployments
|
|
553
|
+
{ name: 'listDeployments', description: 'List deployments for a repository.', tool: listDeployments, requiredAuth: 'githubToken' },
|
|
554
|
+
{ name: 'createDeployment', description: 'Create a deployment.', tool: createDeployment, requiredAuth: 'githubToken' },
|
|
555
|
+
{ name: 'getDeployment', description: 'Get a deployment.', tool: getDeployment, requiredAuth: 'githubToken' },
|
|
556
|
+
{ name: 'deleteDeployment', description: 'Delete a deployment.', tool: deleteDeployment, requiredAuth: 'githubToken' },
|
|
557
|
+
// Environments
|
|
558
|
+
{ name: 'listEnvironments', description: 'List environments for a repository.', tool: listEnvironments, requiredAuth: 'githubToken' },
|
|
559
|
+
{ name: 'getEnvironment', description: 'Get an environment.', tool: getEnvironment, requiredAuth: 'githubToken' },
|
|
560
|
+
{ name: 'createOrUpdateEnvironment', description: 'Create or update an environment.', tool: createOrUpdateEnvironment, requiredAuth: 'githubToken' },
|
|
561
|
+
{ name: 'deleteEnvironment', description: 'Delete an environment.', tool: deleteEnvironment, requiredAuth: 'githubToken' },
|
|
562
|
+
// Git
|
|
563
|
+
{ name: 'getBlob', description: 'Get a blob.', tool: getBlob, requiredAuth: 'githubToken' },
|
|
564
|
+
{ name: 'createBlob', description: 'Create a blob.', tool: createBlob, requiredAuth: 'githubToken' },
|
|
565
|
+
{ name: 'getGitCommit', description: 'Get a low-level git commit.', tool: getGitCommit, requiredAuth: 'githubToken' },
|
|
566
|
+
{ name: 'createGitCommit', description: 'Create a low-level git commit.', tool: createGitCommit, requiredAuth: 'githubToken' },
|
|
567
|
+
{ name: 'getRef', description: 'Get a git reference.', tool: getRef, requiredAuth: 'githubToken' },
|
|
568
|
+
{ name: 'createRef', description: 'Create a git reference.', tool: createRef, requiredAuth: 'githubToken' },
|
|
569
|
+
{ name: 'updateRef', description: 'Update a git reference.', tool: updateRef, requiredAuth: 'githubToken' },
|
|
570
|
+
{ name: 'deleteRef', description: 'Delete a git reference.', tool: deleteRef, requiredAuth: 'githubToken' },
|
|
571
|
+
{ name: 'getTree', description: 'Get a git tree.', tool: getTree, requiredAuth: 'githubToken' },
|
|
572
|
+
{ name: 'createTree', description: 'Create a git tree.', tool: createTree, requiredAuth: 'githubToken' },
|
|
573
|
+
// Licenses
|
|
574
|
+
{ name: 'listLicenses', description: 'List all commonly used licenses.', tool: listLicenses, requiredAuth: 'githubToken' },
|
|
575
|
+
{ name: 'getLicense', description: 'Get a specific license.', tool: getLicense, requiredAuth: 'githubToken' },
|
|
576
|
+
{ name: 'getRepoLicense', description: 'Get the license for a repository.', tool: getRepoLicense, requiredAuth: 'githubToken' },
|
|
577
|
+
// Markdown
|
|
578
|
+
{ name: 'renderMarkdown', description: 'Render a Markdown document.', tool: renderMarkdown, requiredAuth: 'githubToken' },
|
|
579
|
+
// Organizations
|
|
580
|
+
{ name: 'getOrganization', description: 'Get an organization.', tool: getOrganization, requiredAuth: 'githubToken' },
|
|
581
|
+
{ name: 'listUserOrganizations', description: 'List organizations for the authenticated user.', tool: listUserOrganizations, requiredAuth: 'githubToken' },
|
|
582
|
+
{ name: 'listOrganizations', description: 'List all organizations.', tool: listOrganizations, requiredAuth: 'githubToken' },
|
|
583
|
+
{ name: 'updateOrganization', description: 'Update an organization.', tool: updateOrganization, requiredAuth: 'githubToken' },
|
|
584
|
+
{ name: 'listOrgRepositories', description: 'List repositories for an organization.', tool: listOrgRepositories, requiredAuth: 'githubToken' },
|
|
585
|
+
{ name: 'listOrgMembers', description: 'List organization members.', tool: listOrgMembers, requiredAuth: 'githubToken' },
|
|
586
|
+
{ name: 'getOrgMembership', description: 'Get organization membership for a user.', tool: getOrgMembership, requiredAuth: 'githubToken' },
|
|
587
|
+
// Projects
|
|
588
|
+
{ name: 'listRepoProjects', description: 'List repository projects.', tool: listRepoProjects, requiredAuth: 'githubToken' },
|
|
589
|
+
{ name: 'listOrgProjects', description: 'List organization projects.', tool: listOrgProjects, requiredAuth: 'githubToken' },
|
|
590
|
+
{ name: 'createOrgProject', description: 'Create an organization project.', tool: createOrgProject, requiredAuth: 'githubToken' },
|
|
591
|
+
{ name: 'getProject', description: 'Get a project.', tool: getProject, requiredAuth: 'githubToken' },
|
|
592
|
+
{ name: 'updateProject', description: 'Update a project.', tool: updateProject, requiredAuth: 'githubToken' },
|
|
593
|
+
{ name: 'deleteProject', description: 'Delete a project.', tool: deleteProject, requiredAuth: 'githubToken' },
|
|
594
|
+
{ name: 'listProjectColumns', description: 'List columns for a project.', tool: listProjectColumns, requiredAuth: 'githubToken' },
|
|
595
|
+
// Rate Limit
|
|
596
|
+
{ name: 'getRateLimit', description: 'Get rate limit status.', tool: getRateLimit, requiredAuth: 'githubToken' },
|
|
597
|
+
// Reactions
|
|
598
|
+
{ name: 'listIssueReactions', description: 'List reactions for an issue.', tool: listIssueReactions, requiredAuth: 'githubToken' },
|
|
599
|
+
{ name: 'createIssueReaction', description: 'Create a reaction for an issue.', tool: createIssueReaction, requiredAuth: 'githubToken' },
|
|
600
|
+
{ name: 'listPRCommentReactions', description: 'List reactions for a PR comment.', tool: listPRCommentReactions, requiredAuth: 'githubToken' },
|
|
601
|
+
{ name: 'listCommitCommentReactions', description: 'List reactions for a commit comment.', tool: listCommitCommentReactions, requiredAuth: 'githubToken' },
|
|
602
|
+
{ name: 'createCommitCommentReaction', description: 'Create a reaction for a commit comment.', tool: createCommitCommentReaction, requiredAuth: 'githubToken' },
|
|
603
|
+
{ name: 'deleteReaction', description: 'Delete a reaction.', tool: deleteReaction, requiredAuth: 'githubToken' },
|
|
604
|
+
// Releases
|
|
605
|
+
{ name: 'listReleases', description: 'List releases for a repository.', tool: listReleases, requiredAuth: 'githubToken' },
|
|
606
|
+
{ name: 'createRelease', description: 'Create a release.', tool: createRelease, requiredAuth: 'githubToken' },
|
|
607
|
+
{ name: 'getRelease', description: 'Get a release.', tool: getRelease, requiredAuth: 'githubToken' },
|
|
608
|
+
{ name: 'updateRelease', description: 'Update a release.', tool: updateRelease, requiredAuth: 'githubToken' },
|
|
609
|
+
{ name: 'deleteRelease', description: 'Delete a release.', tool: deleteRelease, requiredAuth: 'githubToken' },
|
|
610
|
+
{ name: 'getLatestRelease', description: 'Get the latest release.', tool: getLatestRelease, requiredAuth: 'githubToken' },
|
|
611
|
+
{ name: 'generateReleaseNotes', description: 'Generate release notes.', tool: generateReleaseNotes, requiredAuth: 'githubToken' },
|
|
612
|
+
// Secret Scanning
|
|
613
|
+
{ name: 'listSecretScanningAlerts', description: 'List secret scanning alerts.', tool: listSecretScanningAlerts, requiredAuth: 'githubToken' },
|
|
614
|
+
{ name: 'getSecretScanningAlert', description: 'Get a secret scanning alert.', tool: getSecretScanningAlert, requiredAuth: 'githubToken' },
|
|
615
|
+
{ name: 'updateSecretScanningAlert', description: 'Update a secret scanning alert.', tool: updateSecretScanningAlert, requiredAuth: 'githubToken' },
|
|
616
|
+
// Security Advisories
|
|
617
|
+
{ name: 'listRepositoryAdvisories', description: 'List repository security advisories.', tool: listRepositoryAdvisories, requiredAuth: 'githubToken' },
|
|
618
|
+
{ name: 'getRepositoryAdvisory', description: 'Get a repository security advisory.', tool: getRepositoryAdvisory, requiredAuth: 'githubToken' },
|
|
619
|
+
{ name: 'createRepositoryAdvisory', description: 'Create a repository security advisory.', tool: createRepositoryAdvisory, requiredAuth: 'githubToken' },
|
|
620
|
+
{ name: 'listGlobalAdvisories', description: 'List global security advisories.', tool: listGlobalAdvisories, requiredAuth: 'githubToken' },
|
|
621
|
+
// Stars
|
|
622
|
+
{ name: 'listStarredRepos', description: 'List starred repositories.', tool: listStarredRepos, requiredAuth: 'githubToken' },
|
|
623
|
+
{ name: 'checkRepoStarred', description: 'Check if a repository is starred.', tool: checkRepoStarred, requiredAuth: 'githubToken' },
|
|
624
|
+
{ name: 'listStargazers', description: 'List stargazers for a repository.', tool: listStargazers, requiredAuth: 'githubToken' },
|
|
625
|
+
// Statuses
|
|
626
|
+
{ name: 'createCommitStatus', description: 'Create a commit status.', tool: createCommitStatus, requiredAuth: 'githubToken' },
|
|
627
|
+
{ name: 'listCommitStatuses', description: 'List commit statuses.', tool: listCommitStatuses, requiredAuth: 'githubToken' },
|
|
628
|
+
{ name: 'getCombinedStatus', description: 'Get combined status for a ref.', tool: getCombinedStatus, requiredAuth: 'githubToken' },
|
|
629
|
+
// Teams
|
|
630
|
+
{ name: 'listTeams', description: 'List organization teams.', tool: listTeams, requiredAuth: 'githubToken' },
|
|
631
|
+
{ name: 'createTeam', description: 'Create a team.', tool: createTeam, requiredAuth: 'githubToken' },
|
|
632
|
+
{ name: 'getTeam', description: 'Get a team.', tool: getTeam, requiredAuth: 'githubToken' },
|
|
633
|
+
{ name: 'updateTeam', description: 'Update a team.', tool: updateTeam, requiredAuth: 'githubToken' },
|
|
634
|
+
{ name: 'deleteTeam', description: 'Delete a team.', tool: deleteTeam, requiredAuth: 'githubToken' },
|
|
635
|
+
{ name: 'listTeamMembers', description: 'List team members.', tool: listTeamMembers, requiredAuth: 'githubToken' },
|
|
636
|
+
{ name: 'listTeamRepos', description: 'List team repositories.', tool: listTeamRepos, requiredAuth: 'githubToken' },
|
|
637
|
+
{ name: 'addTeamRepo', description: 'Add a repository to a team.', tool: addTeamRepo, requiredAuth: 'githubToken' },
|
|
638
|
+
{ name: 'removeTeamRepo', description: 'Remove a repository from a team.', tool: removeTeamRepo, requiredAuth: 'githubToken' },
|
|
639
|
+
// Webhooks
|
|
640
|
+
{ name: 'listRepoWebhooks', description: 'List repository webhooks.', tool: listRepoWebhooks, requiredAuth: 'githubToken' },
|
|
641
|
+
{ name: 'createRepoWebhook', description: 'Create a repository webhook.', tool: createRepoWebhook, requiredAuth: 'githubToken' },
|
|
642
|
+
{ name: 'getRepoWebhook', description: 'Get a repository webhook.', tool: getRepoWebhook, requiredAuth: 'githubToken' },
|
|
643
|
+
{ name: 'updateRepoWebhook', description: 'Update a repository webhook.', tool: updateRepoWebhook, requiredAuth: 'githubToken' },
|
|
644
|
+
{ name: 'deleteRepoWebhook', description: 'Delete a repository webhook.', tool: deleteRepoWebhook, requiredAuth: 'githubToken' },
|
|
645
|
+
];
|
|
646
|
+
//# sourceMappingURL=index.js.map
|