multilapis 0.1.1
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/.github/workflows/ci.yml +44 -0
- package/.prettierignore +2 -0
- package/.prettierrc +4 -0
- package/README.md +139 -0
- package/dist/bin/multilapis.d.ts +7 -0
- package/dist/bin/multilapis.js +132 -0
- package/dist/converter.d.ts +3 -0
- package/dist/converter.js +55 -0
- package/dist/emitter.d.ts +2 -0
- package/dist/emitter.js +203 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +10 -0
- package/dist/models.d.ts +132 -0
- package/dist/models.js +1 -0
- package/dist/multilapis.d.ts +14 -0
- package/dist/multilapis.js +311 -0
- package/dist/openapi-loader.d.ts +15 -0
- package/dist/openapi-loader.js +91 -0
- package/dist/openapi-overlay.d.ts +14 -0
- package/dist/openapi-overlay.js +237 -0
- package/dist/ref-resolver.d.ts +6 -0
- package/dist/ref-resolver.js +86 -0
- package/dist/schema-flattener.d.ts +3 -0
- package/dist/schema-flattener.js +87 -0
- package/dist/sections.d.ts +14 -0
- package/dist/sections.js +624 -0
- package/dist/type-mapper.d.ts +6 -0
- package/dist/type-mapper.js +87 -0
- package/dist/utils.d.ts +13 -0
- package/dist/utils.js +57 -0
- package/docs/lapis.md +107 -0
- package/docs/multilapis.md +142 -0
- package/docs/openapi-overlays.md +230 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-configuration-disabled.webhook.lapis +212 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-configuration-enabled.webhook.lapis +212 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-rule-created.webhook.lapis +241 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-rule-deleted.webhook.lapis +241 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-rule-edited.webhook.lapis +242 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-run-completed.webhook.lapis +430 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-run-created.webhook.lapis +430 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-run-requested-action.webhook.lapis +431 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-run-rerequested.webhook.lapis +430 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-suite-completed.webhook.lapis +550 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-suite-requested.webhook.lapis +550 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/check-suite-rerequested.webhook.lapis +550 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-appeared-in-branch.webhook.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-closed-by-user.webhook.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-created.webhook.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-fixed.webhook.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-reopened-by-user.webhook.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-reopened.webhook.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-updated-assignment.webhook.lapis +232 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/commit-comment-created.webhook.lapis +218 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/create.webhook.lapis +223 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-created.webhook.lapis +99 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-deleted.webhook.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-promote-to-enterprise.webhook.lapis +99 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-updated.webhook.lapis +99 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-values-updated.webhook.lapis +213 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/delete.webhook.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-assignees-changed.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-auto-dismissed.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-auto-reopened.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-created.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-dismissed.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-fixed.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-reintroduced.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-reopened.webhook.lapis +409 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deploy-key-created.webhook.lapis +223 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deploy-key-deleted.webhook.lapis +223 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deployment-created.webhook.lapis +594 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deployment-protection-rule-requested.webhook.lapis +542 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deployment-review-approved.webhook.lapis +398 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deployment-review-rejected.webhook.lapis +398 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deployment-review-requested.webhook.lapis +390 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/deployment-status-created.webhook.lapis +598 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-answered.webhook.lapis +300 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-category-changed.webhook.lapis +285 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-closed.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-comment-created.webhook.lapis +300 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-comment-deleted.webhook.lapis +300 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-comment-edited.webhook.lapis +301 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-created.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-deleted.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-edited.webhook.lapis +285 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-labeled.webhook.lapis +294 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-locked.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-pinned.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-reopened.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-transferred.webhook.lapis +316 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unanswered.webhook.lapis +282 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unlabeled.webhook.lapis +294 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unlocked.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unpinned.webhook.lapis +284 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/fork.webhook.lapis +223 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/github-app-authorization-revoked.webhook.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/gollum.webhook.lapis +208 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/index.md +269 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-created.webhook.lapis +312 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-deleted.webhook.lapis +288 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-new-permissions-accepted.webhook.lapis +288 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-repositories-added.webhook.lapis +316 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-repositories-removed.webhook.lapis +316 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-suspend.webhook.lapis +288 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-target-renamed.webhook.lapis +212 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/installation-unsuspend.webhook.lapis +288 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-created.webhook.lapis +239 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-deleted.webhook.lapis +314 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-edited.webhook.lapis +318 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-pinned.webhook.lapis +314 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-unpinned.webhook.lapis +314 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocked-by-added.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocked-by-removed.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocking-added.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocking-removed.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-assigned.webhook.lapis +665 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-closed.webhook.lapis +238 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-deleted.webhook.lapis +547 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-demilestoned.webhook.lapis +566 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-edited.webhook.lapis +558 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-field-added.webhook.lapis +667 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-field-removed.webhook.lapis +666 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-labeled.webhook.lapis +557 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-locked.webhook.lapis +547 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-milestoned.webhook.lapis +566 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-opened.webhook.lapis +573 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-pinned.webhook.lapis +664 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-reopened.webhook.lapis +547 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-transferred.webhook.lapis +690 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-typed.webhook.lapis +665 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-unassigned.webhook.lapis +689 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-unlabeled.webhook.lapis +674 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-unlocked.webhook.lapis +547 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-unpinned.webhook.lapis +664 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/issues-untyped.webhook.lapis +665 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/label-created.webhook.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/label-deleted.webhook.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/label-edited.webhook.lapis +222 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-cancelled.webhook.lapis +230 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-changed.webhook.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-pending-change-cancelled.webhook.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-pending-change.webhook.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-purchased.webhook.lapis +230 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/member-added.webhook.lapis +236 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/member-edited.webhook.lapis +236 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/member-removed.webhook.lapis +235 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/membership-added.webhook.lapis +312 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/membership-removed.webhook.lapis +312 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/meta-deleted.webhook.lapis +677 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/milestone-closed.webhook.lapis +254 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/milestone-created.webhook.lapis +254 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/milestone-deleted.webhook.lapis +254 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/milestone-edited.webhook.lapis +255 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/milestone-opened.webhook.lapis +254 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/org-block-blocked.webhook.lapis +236 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/org-block-unblocked.webhook.lapis +236 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/organization-deleted.webhook.lapis +245 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/organization-member-added.webhook.lapis +245 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/organization-member-invited.webhook.lapis +243 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/organization-member-removed.webhook.lapis +245 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/organization-renamed.webhook.lapis +246 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/package-published.webhook.lapis +402 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/package-updated.webhook.lapis +279 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/page-build.webhook.lapis +261 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-approved.webhook.lapis +195 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-cancelled.webhook.lapis +195 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-created.webhook.lapis +195 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-denied.webhook.lapis +195 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/ping.webhook.lapis +205 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-card-converted.webhook.lapis +253 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-card-created.webhook.lapis +252 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-card-deleted.webhook.lapis +219 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-card-edited.webhook.lapis +253 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-card-moved.webhook.lapis +214 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-closed.webhook.lapis +252 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-column-created.webhook.lapis +224 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-column-deleted.webhook.lapis +224 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-column-edited.webhook.lapis +225 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-column-moved.webhook.lapis +224 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-created.webhook.lapis +252 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-deleted.webhook.lapis +252 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-edited.webhook.lapis +253 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/project-reopened.webhook.lapis +252 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-closed.webhook.lapis +119 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-created.webhook.lapis +119 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-deleted.webhook.lapis +119 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-edited.webhook.lapis +120 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-archived.webhook.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-converted.webhook.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-created.webhook.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-deleted.webhook.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-edited.webhook.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-reordered.webhook.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-restored.webhook.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-reopened.webhook.lapis +119 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-status-update-created.webhook.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-status-update-deleted.webhook.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-status-update-edited.webhook.lapis +114 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/public.webhook.lapis +207 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-assigned.webhook.lapis +544 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-auto-merge-disabled.webhook.lapis +520 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-auto-merge-enabled.webhook.lapis +520 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-closed.webhook.lapis +593 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-converted-to-draft.webhook.lapis +593 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-demilestoned.webhook.lapis +594 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-dequeued.webhook.lapis +520 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-edited.webhook.lapis +594 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-enqueued.webhook.lapis +519 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-labeled.webhook.lapis +529 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-locked.webhook.lapis +519 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-milestoned.webhook.lapis +594 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-opened.webhook.lapis +593 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-ready-for-review.webhook.lapis +593 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-reopened.webhook.lapis +593 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-comment-created.webhook.lapis +519 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-comment-deleted.webhook.lapis +572 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-comment-edited.webhook.lapis +576 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-dismissed.webhook.lapis +519 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-edited.webhook.lapis +558 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-request-removed.webhook.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-requested.webhook.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-submitted.webhook.lapis +557 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-thread-resolved.webhook.lapis +520 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-thread-unresolved.webhook.lapis +520 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-synchronize.webhook.lapis +521 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-unassigned.webhook.lapis +544 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-unlabeled.webhook.lapis +529 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-unlocked.webhook.lapis +519 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/push.webhook.lapis +115 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/registry-package-published.webhook.lapis +399 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/registry-package-updated.webhook.lapis +276 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-created.webhook.lapis +287 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-deleted.webhook.lapis +287 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-edited.webhook.lapis +288 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-prereleased.webhook.lapis +226 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-published.webhook.lapis +287 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-released.webhook.lapis +287 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/release-unpublished.webhook.lapis +287 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-advisory-published.webhook.lapis +361 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-advisory-reported.webhook.lapis +361 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-archived.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-created.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-deleted.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-dispatch-sample-collected.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-edited.webhook.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-import.webhook.lapis +208 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-privatized.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-publicized.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-renamed.webhook.lapis +308 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-ruleset-created.webhook.lapis +346 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-ruleset-deleted.webhook.lapis +346 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-ruleset-edited.webhook.lapis +347 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-transferred.webhook.lapis +217 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-unarchived.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-create.webhook.lapis +237 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-dismiss.webhook.lapis +218 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-reopen.webhook.lapis +237 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-resolve.webhook.lapis +218 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-assigned.webhook.lapis +245 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-created.webhook.lapis +244 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-location-created.webhook.lapis +276 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-publicly-leaked.webhook.lapis +244 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-reopened.webhook.lapis +244 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-resolved.webhook.lapis +244 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-unassigned.webhook.lapis +245 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-validated.webhook.lapis +244 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-scan-completed.webhook.lapis +328 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/security-advisory-published.webhook.lapis +239 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/security-advisory-updated.webhook.lapis +239 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/security-advisory-withdrawn.webhook.lapis +347 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/security-and-analysis.webhook.lapis +437 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-cancelled.webhook.lapis +265 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-created.webhook.lapis +265 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-edited.webhook.lapis +266 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-pending-cancellation.webhook.lapis +266 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-pending-tier-change.webhook.lapis +270 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-tier-changed.webhook.lapis +269 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/star-created.webhook.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/star-deleted.webhook.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/status.webhook.lapis +258 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-parent-issue-added.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-parent-issue-removed.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-sub-issue-added.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-sub-issue-removed.webhook.lapis +451 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/team-add.webhook.lapis +239 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/team-added-to-repository.webhook.lapis +140 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/team-created.webhook.lapis +140 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/team-deleted.webhook.lapis +140 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/team-edited.webhook.lapis +246 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/team-removed-from-repository.webhook.lapis +140 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/watch-started.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-dispatch.webhook.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-completed.webhook.lapis +264 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-in-progress.webhook.lapis +264 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-queued.webhook.lapis +264 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-waiting.webhook.lapis +264 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-run-completed.webhook.lapis +359 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-run-in-progress.webhook.lapis +359 -0
- package/examples/github/api.github.com.2026-03-10/_untagged/workflow-run-requested.webhook.lapis +359 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-add-custom-labels-to-self-hosted-runner-for-org.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-add-custom-labels-to-self-hosted-runner-for-repo.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-add-repo-access-to-self-hosted-runner-group-in-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-add-selected-repo-to-org-secret.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-add-selected-repo-to-org-variable.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-add-self-hosted-runner-to-group-for-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-approve-workflow-run.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-cancel-workflow-run.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-environment-variable.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-hosted-runner-for-org.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-or-update-environment-secret.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-or-update-org-secret.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-or-update-repo-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-org-variable.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-registration-token-for-org.op.lapis +158 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-registration-token-for-repo.op.lapis +159 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-remove-token-for-org.op.lapis +158 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-remove-token-for-repo.op.lapis +159 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-repo-variable.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-self-hosted-runner-group-for-org.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-create-workflow-dispatch.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-actions-cache-by-id.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-actions-cache-by-key.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-artifact.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-custom-image-from-org.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-custom-image-version-from-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-environment-secret.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-environment-variable.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-hosted-runner-for-org.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-org-secret.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-org-variable.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-repo-secret.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-repo-variable.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-self-hosted-runner-from-org.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-self-hosted-runner-from-repo.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-self-hosted-runner-group-from-org.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-workflow-run-logs.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-delete-workflow-run.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-disable-selected-repository-github-actions-organization.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-disable-selected-repository-self-hosted-runners-organization.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-disable-workflow.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-download-artifact.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-download-job-logs-for-workflow-run.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-download-workflow-run-attempt-logs.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-download-workflow-run-logs.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-enable-selected-repository-github-actions-organization.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-enable-selected-repository-self-hosted-runners-organization.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-enable-workflow.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-force-cancel-workflow-run.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-generate-runner-jitconfig-for-org.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-generate-runner-jitconfig-for-repo.op.lapis +60 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-list.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-retention-limit-for-enterprise.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-retention-limit-for-organization.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-retention-limit-for-repository.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-storage-limit-for-enterprise.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-storage-limit-for-organization.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-storage-limit-for-repository.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-usage-by-repo-for-org.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-usage-for-org.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-usage.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-allowed-actions-organization.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-allowed-actions-repository.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-artifact-and-log-retention-settings-organization.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-artifact-and-log-retention-settings-repository.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-artifact.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-concurrency-group-for-repository.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-custom-image-for-org.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-custom-image-version-for-org.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-custom-oidc-sub-claim-for-repo.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-environment-public-key.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-environment-secret.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-environment-variable.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-fork-pr-contributor-approval-permissions-organization.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-fork-pr-contributor-approval-permissions-repository.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-default-workflow-permissions-organization.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-default-workflow-permissions-repository.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-permissions-organization.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-permissions-repository.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runner-for-org.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-github-owned-images-for-org.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-limits-for-org.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-machine-specs-for-org.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-partner-images-for-org.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-platforms-for-org.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-job-for-workflow-run.op.lapis +81 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-org-public-key.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-org-secret.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-org-variable.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-pending-deployments-for-run.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-private-repo-fork-pr-workflows-settings-organization.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-private-repo-fork-pr-workflows-settings-repository.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-repo-public-key.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-repo-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-repo-variable.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-reviews-for-run.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runner-for-org.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runner-for-repo.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runner-group-for-org.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runners-permissions-organization.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-access-to-repository.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-run-attempt.op.lapis +232 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-run-usage.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-run.op.lapis +231 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-usage.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-artifacts-for-repo.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-concurrency-groups-for-repository.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-concurrency-groups-for-workflow-run.op.lapis +89 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-custom-image-versions-for-org.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-custom-images-for-org.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-environment-secrets.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-environment-variables.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-github-hosted-runners-in-group-for-org.op.lapis +52 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-hosted-runners-for-org.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-jobs-for-workflow-run-attempt.op.lapis +94 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-jobs-for-workflow-run.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-labels-for-self-hosted-runner-for-org.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-labels-for-self-hosted-runner-for-repo.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-org-secrets.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-org-variables.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-access-to-self-hosted-runner-group-in-org.op.lapis +167 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-organization-secrets.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-organization-variables.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-secrets.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-variables.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-workflows.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-runner-applications-for-org.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-runner-applications-for-repo.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repos-for-org-secret.op.lapis +169 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repos-for-org-variable.op.lapis +173 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repositories-enabled-github-actions-organization.op.lapis +148 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repositories-self-hosted-runners-organization.op.lapis +163 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runner-groups-for-org.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runners-for-org.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runners-for-repo.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runners-in-group-for-org.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-workflow-run-artifacts.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-workflow-runs-for-repo.op.lapis +241 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-list-workflow-runs.op.lapis +242 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-re-run-job-for-workflow-run.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-re-run-workflow-failed-jobs.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-re-run-workflow.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-all-custom-labels-from-self-hosted-runner-for-org.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-all-custom-labels-from-self-hosted-runner-for-repo.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-custom-label-from-self-hosted-runner-for-org.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-custom-label-from-self-hosted-runner-for-repo.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-repo-access-to-self-hosted-runner-group-in-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-selected-repo-from-org-secret.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-selected-repo-from-org-variable.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-remove-self-hosted-runner-from-group-for-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-review-custom-gates-for-run.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-review-pending-deployments-for-run.op.lapis +84 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-retention-limit-for-enterprise.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-retention-limit-for-organization.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-retention-limit-for-repository.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-storage-limit-for-enterprise.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-storage-limit-for-organization.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-storage-limit-for-repository.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-allowed-actions-organization.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-allowed-actions-repository.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-artifact-and-log-retention-settings-organization.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-artifact-and-log-retention-settings-repository.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-custom-labels-for-self-hosted-runner-for-org.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-custom-labels-for-self-hosted-runner-for-repo.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-custom-oidc-sub-claim-for-repo.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-fork-pr-contributor-approval-permissions-organization.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-fork-pr-contributor-approval-permissions-repository.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-default-workflow-permissions-organization.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-default-workflow-permissions-repository.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-permissions-organization.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-permissions-repository.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-private-repo-fork-pr-workflows-settings-organization.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-private-repo-fork-pr-workflows-settings-repository.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-repo-access-to-self-hosted-runner-group-in-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repos-for-org-secret.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repos-for-org-variable.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repositories-enabled-github-actions-organization.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repositories-self-hosted-runners-organization.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-self-hosted-runners-in-group-for-org.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-self-hosted-runners-permissions-organization.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-set-workflow-access-to-repository.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-update-environment-variable.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-update-hosted-runner-for-org.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-update-org-variable.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-update-repo-variable.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/actions/actions-update-self-hosted-runner-group-for-org.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/actions/index.md +193 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-check-repo-is-starred-by-authenticated-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-delete-repo-subscription.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-delete-thread-subscription.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-get-feeds.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-get-repo-subscription.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-get-thread-subscription-for-authenticated-user.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-get-thread.op.lapis +188 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-events-for-authenticated-user.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-notifications-for-authenticated-user.op.lapis +199 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-org-events-for-authenticated-user.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-events-for-repo-network.op.lapis +52 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-events-for-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-events.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-org-events.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-received-events-for-user.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-received-public-events-for-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-repo-events.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-repo-notifications-for-authenticated-user.op.lapis +180 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-repos-starred-by-authenticated-user.op.lapis +164 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-repos-starred-by-user.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-repos-watched-by-user.op.lapis +164 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-stargazers-for-repo.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-watched-repos-for-authenticated-user.op.lapis +178 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-list-watchers-for-repo.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-mark-notifications-as-read.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-mark-repo-notifications-as-read.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-mark-thread-as-done.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-mark-thread-as-read.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-set-repo-subscription.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-set-thread-subscription.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-star-repo-for-authenticated-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/activity/activity-unstar-repo-for-authenticated-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/activity/index.md +38 -0
- package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-create-task-in-repo.op.lapis +69 -0
- package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-get-task-by-id.op.lapis +199 -0
- package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-get-task-by-repo-and-id.op.lapis +201 -0
- package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-list-tasks-for-repo.op.lapis +195 -0
- package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-list-tasks.op.lapis +186 -0
- package/examples/github/api.github.com.2026-03-10/agent-tasks/index.md +11 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-add-selected-repo-to-org-secret.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-add-selected-repo-to-org-variable.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-create-or-update-org-secret.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-create-or-update-repo-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-create-org-variable.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-create-repo-variable.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-delete-org-secret.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-delete-org-variable.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-delete-repo-secret.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-delete-repo-variable.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-get-org-public-key.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-get-org-secret.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-get-org-variable.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-get-repo-public-key.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-get-repo-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-get-repo-variable.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-org-secrets.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-org-variables.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-organization-secrets.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-organization-variables.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-secrets.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-variables.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-selected-repos-for-org-secret.op.lapis +169 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-list-selected-repos-for-org-variable.op.lapis +173 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-remove-selected-repo-from-org-secret.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-remove-selected-repo-from-org-variable.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-set-selected-repos-for-org-secret.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-set-selected-repos-for-org-variable.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-update-org-variable.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/agents/agents-update-repo-variable.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/agents/index.md +36 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-add-repo-to-installation-for-authenticated-user.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-check-token.op.lapis +161 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-create-from-manifest.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-create-installation-access-token.op.lapis +247 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-delete-authorization.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-delete-installation.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-delete-token.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-authenticated.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-by-slug.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-installation.op.lapis +128 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-org-installation.op.lapis +120 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-repo-installation.op.lapis +129 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-subscription-plan-for-account-stubbed.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-subscription-plan-for-account.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-user-installation.op.lapis +120 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-webhook-config-for-app.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-get-webhook-delivery.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-accounts-for-plan-stubbed.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-accounts-for-plan.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-installation-repos-for-authenticated-user.op.lapis +165 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-installation-requests-for-authenticated-app.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-installations-for-authenticated-user.op.lapis +138 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-installations.op.lapis +123 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-plans-stubbed.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-plans.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-repos-accessible-to-installation.op.lapis +162 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-subscriptions-for-authenticated-user-stubbed.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-subscriptions-for-authenticated-user.op.lapis +65 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-list-webhook-deliveries.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-redeliver-webhook-delivery.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-remove-repo-from-installation-for-authenticated-user.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-reset-token.op.lapis +154 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-revoke-installation-access-token.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-scope-token.op.lapis +183 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-suspend-installation.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-unsuspend-installation.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/apps/apps-update-webhook-config-for-app.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/apps/index.md +43 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-create-organization-budget.op.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-delete-budget-org.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-all-budgets-org.op.lapis +201 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-budget-org.op.lapis +203 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-ai-credit-usage-report-org.op.lapis +65 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-ai-credit-usage-report-user.op.lapis +63 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-premium-request-usage-report-org.op.lapis +65 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-premium-request-usage-report-user.op.lapis +63 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-report-org.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-report-user.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-summary-report-org.op.lapis +60 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-summary-report-user.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/billing/billing-update-budget-org.op.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/billing/index.md +19 -0
- package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-create-campaign.op.lapis +149 -0
- package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-delete-campaign.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-get-campaign-summary.op.lapis +130 -0
- package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-list-org-campaigns.op.lapis +127 -0
- package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-update-campaign.op.lapis +144 -0
- package/examples/github/api.github.com.2026-03-10/campaigns/index.md +11 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-create-suite.op.lapis +227 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-create.op.lapis +99 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-get-suite.op.lapis +227 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-get.op.lapis +80 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-list-annotations.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-list-for-ref.op.lapis +88 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-list-for-suite.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-list-suites-for-ref.op.lapis +232 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-rerequest-run.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-rerequest-suite.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-set-suites-preferences.op.lapis +169 -0
- package/examples/github/api.github.com.2026-03-10/checks/checks-update.op.lapis +98 -0
- package/examples/github/api.github.com.2026-03-10/checks/index.md +18 -0
- package/examples/github/api.github.com.2026-03-10/classroom/classroom-get-a-classroom.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/classroom/classroom-get-an-assignment.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/classroom/classroom-get-assignment-grades.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/classroom/classroom-list-accepted-assignments-for-an-assignment.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/classroom/classroom-list-assignments-for-a-classroom.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/classroom/classroom-list-classrooms.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/classroom/index.md +12 -0
- package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-get-finding.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-get-setup.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-list-findings-for-repo.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-update-setup.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/code-quality/index.md +10 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-commit-autofix.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-create-autofix.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-create-variant-analysis.op.lapis +240 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-delete-analysis.op.lapis +100 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-delete-codeql-database.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-alert.op.lapis +151 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-analysis.op.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-autofix.op.lapis +54 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-codeql-database.op.lapis +80 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-default-setup.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-sarif.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-variant-analysis-repo-task.op.lapis +118 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-variant-analysis.op.lapis +226 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-alert-instances.op.lapis +66 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-alerts-for-org.op.lapis +207 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-alerts-for-repo.op.lapis +170 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-codeql-databases.op.lapis +74 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-recent-analyses.op.lapis +79 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-update-alert.op.lapis +165 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-update-default-setup.op.lapis +63 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-upload-sarif.op.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/code-scanning/index.md +27 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-attach-configuration.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-attach-enterprise-configuration.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-create-configuration-for-enterprise.op.lapis +113 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-create-configuration.op.lapis +94 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-delete-configuration-for-enterprise.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-delete-configuration.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-detach-configuration.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configuration-for-repository.op.lapis +88 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configuration.op.lapis +84 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configurations-for-enterprise.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configurations-for-org.op.lapis +87 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-default-configurations-for-enterprise.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-default-configurations.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-repositories-for-configuration.op.lapis +113 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-repositories-for-enterprise-configuration.op.lapis +113 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-single-configuration-for-enterprise.op.lapis +84 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-set-configuration-as-default-for-enterprise.op.lapis +87 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-set-configuration-as-default.op.lapis +87 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-update-configuration.op.lapis +95 -0
- package/examples/github/api.github.com.2026-03-10/code-security/code-security-update-enterprise-configuration.op.lapis +114 -0
- package/examples/github/api.github.com.2026-03-10/code-security/index.md +26 -0
- package/examples/github/api.github.com.2026-03-10/codes-of-conduct/codes-of-conduct-get-all-codes-of-conduct.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/codes-of-conduct/codes-of-conduct-get-conduct-code.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/codes-of-conduct/index.md +8 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-add-repository-for-secret-for-authenticated-user.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-add-selected-repo-to-org-secret.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-check-permissions-for-devcontainer.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-codespace-machines-for-authenticated-user.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-for-authenticated-user.op.lapis +234 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-or-update-org-secret.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-or-update-repo-secret.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-or-update-secret-for-authenticated-user.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-with-pr-for-authenticated-user.op.lapis +246 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-with-repo-for-authenticated-user.op.lapis +253 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-codespaces-access-users.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-for-authenticated-user.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-from-organization.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-org-secret.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-repo-secret.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-secret-for-authenticated-user.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-export-for-authenticated-user.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-codespaces-for-user-in-org.op.lapis +239 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-export-details-for-authenticated-user.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-for-authenticated-user.op.lapis +235 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-org-public-key.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-org-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-public-key-for-authenticated-user.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-repo-public-key.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-repo-secret.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-secret-for-authenticated-user.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-devcontainers-in-repository-for-authenticated-user.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-for-authenticated-user.op.lapis +238 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-in-organization.op.lapis +238 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-in-repository-for-authenticated-user.op.lapis +239 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-org-secrets.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-repo-secrets.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-repositories-for-secret-for-authenticated-user.op.lapis +194 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-secrets-for-authenticated-user.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-selected-repos-for-org-secret.op.lapis +176 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-pre-flight-with-repo-for-authenticated-user.op.lapis +66 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-publish-for-authenticated-user.op.lapis +466 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-remove-repository-for-secret-for-authenticated-user.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-remove-selected-repo-from-org-secret.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-repo-machines-for-authenticated-user.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-codespaces-access-users.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-codespaces-access.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-repositories-for-secret-for-authenticated-user.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-selected-repos-for-org-secret.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-start-for-authenticated-user.op.lapis +256 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-stop-for-authenticated-user.op.lapis +235 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-stop-in-organization.op.lapis +237 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-update-for-authenticated-user.op.lapis +232 -0
- package/examples/github/api.github.com.2026-03-10/codespaces/index.md +54 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-add-copilot-seats-for-teams.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-add-copilot-seats-for-users.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-add-organizations-to-enterprise-coding-agent-policy.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-cancel-copilot-seat-assignment-for-teams.op.lapis +54 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-cancel-copilot-seat-assignment-for-users.op.lapis +54 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-content-exclusion-for-organization.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-enterprise-one-day-usage-metrics.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-enterprise-usage-metrics.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-enterprise-user-teams-one-day-report.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-one-day-usage-metrics.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-usage-metrics.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-user-teams-one-day-report.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-users-one-day-usage-metrics.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-users-usage-metrics.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-users-one-day-usage-metrics.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-users-usage-metrics.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-disable-copilot-coding-agent-for-repository-in-organization.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-enable-copilot-coding-agent-for-repository-in-organization.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-cloud-agent-configuration.op.lapis +54 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-coding-agent-permissions-organization.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-organization-details.op.lapis +82 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-seat-details-for-user.op.lapis +116 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-list-copilot-coding-agent-selected-repositories-for-organization.op.lapis +206 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-list-copilot-seats.op.lapis +115 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-remove-organizations-from-enterprise-coding-agent-policy.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-copilot-coding-agent-permissions-organization.op.lapis +54 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-copilot-coding-agent-selected-repositories-for-organization.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-copilot-content-exclusion-for-organization.op.lapis +65 -0
- package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-enterprise-coding-agent-policy.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/copilot/index.md +35 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-add-collaborator-for-org.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-add-collaborator-for-user.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-for-org.op.lapis +198 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-for-user.op.lapis +197 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-resource-for-org.op.lapis +182 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-resource-for-user.op.lapis +181 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-for-org.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-for-user.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-resource-for-org.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-resource-for-user.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-for-org.op.lapis +186 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-for-user.op.lapis +186 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-resource-for-org.op.lapis +172 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-resource-for-user.op.lapis +171 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-collaborators-for-org.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-collaborators-for-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-for-org.op.lapis +188 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-for-user.op.lapis +187 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-resources-for-org.op.lapis +171 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-resources-for-user.op.lapis +170 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-remove-collaborator-for-org.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-remove-collaborator-for-user.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-collaborator-for-org.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-collaborator-for-user.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-for-org.op.lapis +199 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-for-user.op.lapis +198 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-resource-for-org.op.lapis +179 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-resource-for-user.op.lapis +178 -0
- package/examples/github/api.github.com.2026-03-10/copilot-spaces/index.md +34 -0
- package/examples/github/api.github.com.2026-03-10/credentials/credentials-revoke.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/credentials/index.md +7 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-add-selected-repo-to-org-secret.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-create-or-update-org-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-create-or-update-repo-secret.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-delete-org-secret.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-delete-repo-secret.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-alert.op.lapis +277 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-org-public-key.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-org-secret.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-repo-public-key.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-repo-secret.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-alerts-for-enterprise.op.lapis +347 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-alerts-for-org.op.lapis +356 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-alerts-for-repo.op.lapis +304 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-org-secrets.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-repo-secrets.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-selected-repos-for-org-secret.op.lapis +168 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-remove-selected-repo-from-org-secret.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-repository-access-for-enterprise.op.lapis +109 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-repository-access-for-org.op.lapis +111 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-set-repository-access-default-level-for-enterprise.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-set-repository-access-default-level.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-set-selected-repos-for-org-secret.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-update-alert.op.lapis +303 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-update-repository-access-for-enterprise.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-update-repository-access-for-org.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/dependabot/index.md +31 -0
- package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-create-repository-snapshot.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-diff-range.op.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-export-sbom.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-fetch-sbom-report.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-generate-sbom-report.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/dependency-graph/index.md +11 -0
- package/examples/github/api.github.com.2026-03-10/emojis/emojis-get.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/emojis/index.md +7 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-add.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-bulk-add.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-bulk-remove.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-get.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-list.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-remove.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/index.md +12 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-add.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-bulk-add.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-bulk-remove.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-delete.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-get-assignment.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-get-assignments.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/index.md +12 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-create.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-delete.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-get.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-list.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-update.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/enterprise-teams/index.md +11 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-check-is-starred.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-create-comment.op.lapis +69 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-create.op.lapis +94 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-delete-comment.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-delete.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-fork.op.lapis +81 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-get-comment.op.lapis +68 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-get-revision.op.lapis +92 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-get.op.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list-comments.op.lapis +70 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list-commits.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list-for-user.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list-forks.op.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list-public.op.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list-starred.op.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-list.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-star.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-unstar.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-update-comment.op.lapis +63 -0
- package/examples/github/api.github.com.2026-03-10/gists/gists-update.op.lapis +90 -0
- package/examples/github/api.github.com.2026-03-10/gists/index.md +26 -0
- package/examples/github/api.github.com.2026-03-10/git/git-create-blob.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/git/git-create-commit.op.lapis +102 -0
- package/examples/github/api.github.com.2026-03-10/git/git-create-ref.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/git/git-create-tag.op.lapis +123 -0
- package/examples/github/api.github.com.2026-03-10/git/git-create-tree.op.lapis +102 -0
- package/examples/github/api.github.com.2026-03-10/git/git-delete-ref.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/git/git-get-blob.op.lapis +57 -0
- package/examples/github/api.github.com.2026-03-10/git/git-get-commit.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/git/git-get-ref.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/git/git-get-tag.op.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/git/git-get-tree.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/git/git-list-matching-refs.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/git/git-update-ref.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/git/index.md +19 -0
- package/examples/github/api.github.com.2026-03-10/gitignore/gitignore-get-all-templates.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/gitignore/gitignore-get-template.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/gitignore/index.md +8 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-create-network-configuration-for-org.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-delete-network-configuration-from-org.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-get-network-configuration-for-org.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-get-network-settings-for-org.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-list-network-configurations-for-org.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-update-network-configuration-for-org.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/hosted-compute/index.md +12 -0
- package/examples/github/api.github.com.2026-03-10/index.md +58 -0
- package/examples/github/api.github.com.2026-03-10/interactions/index.md +18 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-pull-request-bypass-list-for-repo.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-restrictions-for-authenticated-user.op.lapis +12 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-restrictions-for-org.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-restrictions-for-repo.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-pull-request-bypass-list-for-repo.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-restrictions-for-authenticated-user.op.lapis +12 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-restrictions-for-org.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-restrictions-for-repo.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-pull-request-bypass-list-for-repo.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-restrictions-for-authenticated-user.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-restrictions-for-org.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-restrictions-for-repo.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/issues/index.md +61 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-add-assignees.op.lapis +322 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-add-blocked-by-dependency.op.lapis +358 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-add-issue-field-values.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-add-labels.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-add-sub-issue.op.lapis +359 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-check-user-can-be-assigned-to-issue.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-check-user-can-be-assigned.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-create-comment.op.lapis +136 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-create-label.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-create-milestone.op.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-create.op.lapis +375 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-delete-comment.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-delete-issue-field-value.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-delete-label.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-delete-milestone.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-get-comment.op.lapis +111 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-get-event.op.lapis +503 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-get-label.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-get-milestone.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-get-parent.op.lapis +341 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-get.op.lapis +348 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-assignees.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-comments-for-repo.op.lapis +122 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-comments.op.lapis +122 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-dependencies-blocked-by.op.lapis +343 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-dependencies-blocking.op.lapis +343 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-events-for-repo.op.lapis +490 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-events-for-timeline.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-events.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-for-authenticated-user.op.lapis +341 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-for-org.op.lapis +343 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-for-repo.op.lapis +354 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-issue-field-values-for-issue.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-labels-for-milestone.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-labels-for-repo.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-labels-on-issue.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-milestones.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list-sub-issues.op.lapis +343 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-list.op.lapis +353 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-lock.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-pin-comment.op.lapis +138 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-remove-all-labels.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-remove-assignees.op.lapis +322 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-remove-dependency-blocked-by.op.lapis +366 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-remove-label.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-remove-sub-issue.op.lapis +345 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-reprioritize-sub-issue.op.lapis +351 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-set-issue-field-values.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-set-labels.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-unlock.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-unpin-comment.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-update-comment.op.lapis +111 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-update-label.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-update-milestone.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/issues/issues-update.op.lapis +370 -0
- package/examples/github/api.github.com.2026-03-10/licenses/index.md +9 -0
- package/examples/github/api.github.com.2026-03-10/licenses/licenses-get-all-commonly-used.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/licenses/licenses-get-for-repo.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/licenses/licenses-get.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/markdown/index.md +8 -0
- package/examples/github/api.github.com.2026-03-10/markdown/markdown-render-raw.op.lapis +12 -0
- package/examples/github/api.github.com.2026-03-10/markdown/markdown-render.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/merge-queue/index.md +8 -0
- package/examples/github/api.github.com.2026-03-10/merge-queue/merge-group-checks-requested.webhook.lapis +219 -0
- package/examples/github/api.github.com.2026-03-10/merge-queue/merge-group-destroyed.webhook.lapis +220 -0
- package/examples/github/api.github.com.2026-03-10/meta/index.md +11 -0
- package/examples/github/api.github.com.2026-03-10/meta/meta-get-all-versions.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/meta/meta-get-octocat.op.lapis +13 -0
- package/examples/github/api.github.com.2026-03-10/meta/meta-get-zen.op.lapis +12 -0
- package/examples/github/api.github.com.2026-03-10/meta/meta-get.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/meta/meta-root.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/migrations/index.md +20 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-cancel-import.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-delete-archive-for-authenticated-user.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-delete-archive-for-org.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-download-archive-for-org.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-archive-for-authenticated-user.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-commit-authors.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-import-status.op.lapis +80 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-large-files.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-status-for-authenticated-user.op.lapis +159 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-status-for-org.op.lapis +146 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-for-authenticated-user.op.lapis +147 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-for-org.op.lapis +135 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-repos-for-authenticated-user.op.lapis +97 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-repos-for-org.op.lapis +98 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-map-commit-author.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-set-lfs-preference.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-start-for-authenticated-user.op.lapis +160 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-start-for-org.op.lapis +154 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-start-import.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-unlock-repo-for-authenticated-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-unlock-repo-for-org.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/migrations/migrations-update-import.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/oidc/index.md +14 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-create-oidc-custom-property-inclusion-for-enterprise.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-create-oidc-custom-property-inclusion-for-org.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-delete-oidc-custom-property-inclusion-for-enterprise.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-delete-oidc-custom-property-inclusion-for-org.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-get-oidc-custom-sub-template-for-org.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-list-oidc-custom-property-inclusions-for-enterprise.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-list-oidc-custom-property-inclusions-for-org.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/oidc/oidc-update-oidc-custom-sub-template-for-org.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-route-stats-by-actor.op.lapis +128 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-subject-stats.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-summary-stats-by-actor.op.lapis +127 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-summary-stats-by-user.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-summary-stats.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-time-stats-by-actor.op.lapis +124 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-time-stats-by-user.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-time-stats.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-user-stats.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/orgs/index.md +110 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-add-security-manager-team.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-assign-team-to-org-role.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-assign-user-to-org-role.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-block-user.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-cancel-invitation.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-check-blocked-user.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-check-membership-for-user.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-check-public-membership-for-user.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-convert-member-to-outside-collaborator.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-artifact-deployment-record.op.lapis +68 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-artifact-storage-record.op.lapis +209 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-invitation.op.lapis +73 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-issue-field.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-issue-type.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-webhook.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-create-or-update-organization-definition.op.lapis +68 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-create-or-update-organization-definitions.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-create-or-update-organization-values.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-delete-organization-definition.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-get-organization-definition.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-get-organization-definitions.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-get-organization-values.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-attestations-bulk.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-attestations-by-id.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-attestations-by-subject-digest.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-issue-field.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-issue-type.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-webhook.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-disable-selected-repository-immutable-releases-organization.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-enable-or-disable-security-product-on-all-org-repos.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-enable-selected-repository-immutable-releases-organization.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-immutable-releases-settings-repositories.op.lapis +166 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-immutable-releases-settings.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-membership-for-authenticated-user.op.lapis +79 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-membership-for-user.op.lapis +80 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-org-role.op.lapis +69 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-org-ruleset-history.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-org-ruleset-version.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-webhook-config-for-org.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-webhook-delivery.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-webhook.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-get.op.lapis +95 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-app-installations.op.lapis +125 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-artifact-deployment-records.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-artifact-storage-records.op.lapis +184 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-attestation-repositories.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-attestations-bulk.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-attestations.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-blocked-users.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-failed-invitations.op.lapis +63 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-for-authenticated-user.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-for-user.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-invitation-teams.op.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-issue-fields.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-issue-types.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-members.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-memberships-for-authenticated-user.op.lapis +87 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-org-role-teams.op.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-org-role-users.op.lapis +83 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-org-roles.op.lapis +69 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-outside-collaborators.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grant-repositories.op.lapis +188 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grant-request-repositories.op.lapis +188 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grant-requests.op.lapis +197 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grants.op.lapis +196 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pending-invitations.op.lapis +68 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-public-members.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-security-manager-teams.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-webhook-deliveries.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-webhooks.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-list.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-ping-webhook.op.lapis +26 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-redeliver-webhook-delivery.op.lapis +31 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-member.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-membership-for-user.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-outside-collaborator.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-public-membership-for-authenticated-user.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-security-manager-team.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-review-pat-grant-request.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-review-pat-grant-requests-in-bulk.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-all-org-roles-team.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-all-org-roles-user.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-org-role-team.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-org-role-user.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-cluster-deployment-records.op.lapis +93 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-immutable-releases-settings-repositories.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-immutable-releases-settings.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-membership-for-user.op.lapis +90 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-public-membership-for-authenticated-user.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-unblock-user.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-issue-field.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-issue-type.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-membership-for-authenticated-user.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-pat-access.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-pat-accesses.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-webhook-config-for-org.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-webhook.op.lapis +60 -0
- package/examples/github/api.github.com.2026-03-10/orgs/orgs-update.op.lapis +129 -0
- package/examples/github/api.github.com.2026-03-10/packages/index.md +33 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-for-authenticated-user.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-for-org.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-for-user.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-version-for-authenticated-user.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-version-for-org.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-version-for-user.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-all-package-versions-for-package-owned-by-authenticated-user.op.lapis +66 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-all-package-versions-for-package-owned-by-org.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-all-package-versions-for-package-owned-by-user.op.lapis +64 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-for-authenticated-user.op.lapis +201 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-for-organization.op.lapis +202 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-for-user.op.lapis +202 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-version-for-authenticated-user.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-version-for-organization.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-version-for-user.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-list-docker-migration-conflicting-packages-for-authenticated-user.op.lapis +199 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-list-docker-migration-conflicting-packages-for-organization.op.lapis +215 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-list-docker-migration-conflicting-packages-for-user.op.lapis +215 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-list-packages-for-authenticated-user.op.lapis +207 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-list-packages-for-organization.op.lapis +222 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-list-packages-for-user.op.lapis +222 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-for-authenticated-user.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-for-org.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-for-user.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-version-for-authenticated-user.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-version-for-org.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-version-for-user.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/index.md +12 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-create-org-private-registry.op.lapis +82 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-delete-org-private-registry.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-get-org-private-registry.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-get-org-public-key.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-list-org-private-registries.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-update-org-private-registry.op.lapis +54 -0
- package/examples/github/api.github.com.2026-03-10/projects/index.md +32 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-add-field-for-org.op.lapis +225 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-add-field-for-user.op.lapis +226 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-add-item-for-org.op.lapis +74 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-add-item-for-user.op.lapis +74 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-create-draft-item-for-authenticated-user.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-create-draft-item-for-org.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-create-view-for-org.op.lapis +96 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-create-view-for-user.op.lapis +96 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-delete-item-for-org.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-delete-item-for-user.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-get-field-for-org.op.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-get-field-for-user.op.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-get-for-org.op.lapis +110 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-get-for-user.op.lapis +110 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-get-org-item.op.lapis +72 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-get-user-item.op.lapis +72 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-fields-for-org.op.lapis +223 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-fields-for-user.op.lapis +223 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-for-org.op.lapis +113 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-for-user.op.lapis +113 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-items-for-org.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-items-for-user.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-view-items-for-org.op.lapis +82 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-list-view-items-for-user.op.lapis +82 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-update-item-for-org.op.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/projects/projects-update-item-for-user.op.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/pulls/index.md +33 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-check-if-merged.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-create-reply-for-review-comment.op.lapis +103 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-create-review-comment.op.lapis +119 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-create-review.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-create.op.lapis +475 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-delete-pending-review.op.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-delete-review-comment.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-dismiss-review.op.lapis +82 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-get-review-comment.op.lapis +99 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-get-review.op.lapis +72 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-get.op.lapis +489 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-comments-for-review.op.lapis +102 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-commits.op.lapis +65 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-files.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-requested-reviewers.op.lapis +95 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-review-comments-for-repo.op.lapis +96 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-review-comments.op.lapis +97 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-reviews.op.lapis +65 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-list.op.lapis +478 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-merge.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-remove-requested-reviewers.op.lapis +464 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-request-reviewers.op.lapis +469 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-submit-review.op.lapis +87 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-update-branch.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-update-review-comment.op.lapis +92 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-update-review.op.lapis +72 -0
- package/examples/github/api.github.com.2026-03-10/pulls/pulls-update.op.lapis +472 -0
- package/examples/github/api.github.com.2026-03-10/rate-limit/index.md +7 -0
- package/examples/github/api.github.com.2026-03-10/rate-limit/rate-limit-get.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/reactions/index.md +21 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-commit-comment.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-issue-comment.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-issue.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-pull-request-review-comment.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-release.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-commit-comment.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-issue-comment.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-issue.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-pull-request-comment.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-release.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-commit-comment.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-issue-comment.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-issue.op.lapis +66 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-pull-request-review-comment.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-release.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/repos/index.md +209 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-accept-invitation-for-authenticated-user.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-add-app-access-restrictions.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-add-collaborator.op.lapis +228 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-add-status-check-contexts.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-add-team-access-restrictions.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-add-user-access-restrictions.op.lapis +53 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-cancel-pages-deployment.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-check-automated-security-fixes.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-check-collaborator.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-check-immutable-releases.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-check-private-vulnerability-reporting.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-check-vulnerability-alerts.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-codeowners-errors.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-compare-commits.op.lapis +130 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-attestation.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-autolink.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-commit-comment.op.lapis +95 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-commit-signature-protection.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-commit-status.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-deploy-key.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment-branch-policy.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment-protection-rule.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment-status.op.lapis +91 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment.op.lapis +130 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-dispatch-event.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-for-authenticated-user.op.lapis +455 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-fork.op.lapis +427 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-in-org.op.lapis +437 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-or-update-environment.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-or-update-file-contents.op.lapis +81 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-org-ruleset.op.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-pages-deployment.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-pages-site.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-release.op.lapis +143 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-repo-ruleset.op.lapis +211 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-using-template.op.lapis +398 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-create-webhook.op.lapis +68 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-custom-properties-for-repos-create-or-update-repository-values.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-custom-properties-for-repos-get-repository-values.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-decline-invitation-for-authenticated-user.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-access-restrictions.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-admin-branch-protection.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-an-environment.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-autolink.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-branch-protection.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-commit-comment.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-commit-signature-protection.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-deploy-key.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-deployment-branch-policy.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-deployment.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-file.op.lapis +92 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-invitation.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-org-ruleset.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-pages-site.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-pull-request-review-protection.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-release-asset.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-release.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-repo-ruleset.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete-webhook.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-delete.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-disable-automated-security-fixes.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-disable-deployment-protection-rule.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-disable-immutable-releases.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-disable-private-vulnerability-reporting.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-disable-vulnerability-alerts.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-download-tarball-archive.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-download-zipball-archive.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-enable-automated-security-fixes.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-enable-immutable-releases.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-enable-private-vulnerability-reporting.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-enable-vulnerability-alerts.op.lapis +14 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-generate-release-notes.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-access-restrictions.op.lapis +110 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-admin-branch-protection.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-deployment-protection-rules.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-environments.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-status-check-contexts.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-topics.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-apps-with-access-to-protected-branch.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-autolink.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-branch-protection.op.lapis +152 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-branch-rules.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-branch.op.lapis +194 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-clones.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-code-frequency-stats.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-collaborator-permission-level.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-combined-status-for-ref.op.lapis +200 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit-activity-stats.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit-comment.op.lapis +84 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit-signature-protection.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit.op.lapis +123 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-community-profile-metrics.op.lapis +56 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-content.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-contributors-stats.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-custom-deployment-protection-rule.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-deploy-key.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-deployment-branch-policy.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-deployment-status.op.lapis +84 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-deployment.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-environment.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-hash-algorithm.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-latest-pages-build.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-latest-release.op.lapis +128 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-rule-suite.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-rule-suites.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-ruleset.op.lapis +198 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-rulesets.op.lapis +198 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages-build.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages-deployment.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages-health-check.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-participation-stats.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-pull-request-review-protection.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-punch-card-stats.op.lapis +19 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-readme-in-directory.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-readme.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-release-asset.op.lapis +70 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-release-by-tag.op.lapis +128 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-release.op.lapis +126 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-rule-suite.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-rule-suites.op.lapis +38 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-ruleset-history.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-ruleset-version.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-ruleset.op.lapis +200 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-rulesets.op.lapis +200 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-status-checks-protection.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-teams-with-access-to-protected-branch.op.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-top-paths.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-top-referrers.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-users-with-access-to-protected-branch.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-views.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-webhook-config-for-repo.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-webhook-delivery.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get-webhook.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-get.op.lapis +410 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-activities.op.lapis +67 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-attestations.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-autolinks.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-branches-for-head-commit.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-branches.op.lapis +164 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-collaborators.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-comments-for-commit.op.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-commit-comments-for-repo.op.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-commit-statuses-for-ref.op.lapis +57 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-commits.op.lapis +116 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-contributors.op.lapis +59 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-custom-deployment-rule-integrations.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-deploy-keys.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-deployment-branch-policies.op.lapis +39 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-deployment-statuses.op.lapis +86 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-deployments.op.lapis +84 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-for-authenticated-user.op.lapis +174 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-for-org.op.lapis +169 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-for-user.op.lapis +167 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-forks.op.lapis +173 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-invitations-for-authenticated-user.op.lapis +221 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-invitations.op.lapis +201 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-issue-types.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-languages.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-pages-builds.op.lapis +53 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-public.op.lapis +172 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-pull-requests-associated-with-commit.op.lapis +466 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-release-assets.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-releases.op.lapis +130 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-tags.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-teams.op.lapis +78 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-webhook-deliveries.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-list-webhooks.op.lapis +52 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-merge-upstream.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-merge.op.lapis +77 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-ping-webhook.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-redeliver-webhook-delivery.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-remove-app-access-restrictions.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-remove-collaborator.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-remove-status-check-contexts.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-remove-status-check-protection.op.lapis +15 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-remove-team-access-restrictions.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-remove-user-access-restrictions.op.lapis +53 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-rename-branch.op.lapis +213 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-replace-all-topics.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-request-pages-build.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-set-admin-branch-protection.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-set-app-access-restrictions.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-set-status-check-contexts.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-set-team-access-restrictions.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-set-user-access-restrictions.op.lapis +53 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-test-push-webhook.op.lapis +25 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-transfer.op.lapis +166 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-branch-protection.op.lapis +177 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-commit-comment.op.lapis +85 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-deployment-branch-policy.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-information-about-pages-site.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-invitation.op.lapis +200 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-org-ruleset.op.lapis +212 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-pull-request-review-protection.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-release-asset.op.lapis +60 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-release.op.lapis +136 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-repo-ruleset.op.lapis +212 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-status-check-protection.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-webhook-config-for-repo.op.lapis +28 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update-webhook.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-update.op.lapis +453 -0
- package/examples/github/api.github.com.2026-03-10/repos/repos-upload-release-asset.op.lapis +75 -0
- package/examples/github/api.github.com.2026-03-10/search/index.md +13 -0
- package/examples/github/api.github.com.2026-03-10/search/search-code.op.lapis +216 -0
- package/examples/github/api.github.com.2026-03-10/search/search-commits.op.lapis +228 -0
- package/examples/github/api.github.com.2026-03-10/search/search-issues-and-pull-requests.op.lapis +372 -0
- package/examples/github/api.github.com.2026-03-10/search/search-labels.op.lapis +58 -0
- package/examples/github/api.github.com.2026-03-10/search/search-repos.op.lapis +163 -0
- package/examples/github/api.github.com.2026-03-10/search/search-topics.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/search/search-users.op.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/index.md +15 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-create-push-protection-bypass.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-get-alert.op.lapis +93 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-get-scan-history.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-alerts-for-org.op.lapis +185 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-alerts-for-repo.op.lapis +109 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-locations-for-alert.op.lapis +74 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-org-pattern-configs.op.lapis +50 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-update-alert.op.lapis +107 -0
- package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-update-org-pattern-configs.op.lapis +53 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/index.md +16 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-fork.op.lapis +423 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-private-vulnerability-report.op.lapis +222 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-repository-advisory-cve-request.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-repository-advisory.op.lapis +225 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-get-global-advisory.op.lapis +71 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-get-repository-advisory.op.lapis +210 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-list-global-advisories.op.lapis +97 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-list-org-repository-advisories.op.lapis +212 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-list-repository-advisories.op.lapis +213 -0
- package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-update-repository-advisory.op.lapis +229 -0
- package/examples/github/api.github.com.2026-03-10/teams/index.md +22 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-add-member-legacy.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-membership-for-user-in-org.op.lapis +37 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-membership-for-user-legacy.op.lapis +43 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-repo-permissions-in-org.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-repo-permissions-legacy.op.lapis +33 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-check-permissions-for-repo-in-org.op.lapis +149 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-check-permissions-for-repo-legacy.op.lapis +147 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-create.op.lapis +142 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-delete-in-org.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-delete-legacy.op.lapis +30 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-get-by-name.op.lapis +131 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-get-legacy.op.lapis +129 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-get-member-legacy.op.lapis +20 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-get-membership-for-user-in-org.op.lapis +32 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-get-membership-for-user-legacy.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-child-in-org.op.lapis +70 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-child-legacy.op.lapis +89 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-for-authenticated-user.op.lapis +139 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-members-in-org.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-members-legacy.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-pending-invitations-in-org.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-pending-invitations-legacy.op.lapis +57 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-repos-in-org.op.lapis +167 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list-repos-legacy.op.lapis +173 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-list.op.lapis +76 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-remove-member-legacy.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-remove-membership-for-user-in-org.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-remove-membership-for-user-legacy.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-remove-repo-in-org.op.lapis +18 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-remove-repo-legacy.op.lapis +17 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-update-in-org.op.lapis +150 -0
- package/examples/github/api.github.com.2026-03-10/teams/teams-update-legacy.op.lapis +151 -0
- package/examples/github/api.github.com.2026-03-10/users/index.md +53 -0
- package/examples/github/api.github.com.2026-03-10/users/users-add-email-for-authenticated-user.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/users/users-add-social-account-for-authenticated-user.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/users/users-block.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/users/users-check-blocked.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/users/users-check-following-for-user.op.lapis +16 -0
- package/examples/github/api.github.com.2026-03-10/users/users-check-person-is-followed-by-authenticated.op.lapis +34 -0
- package/examples/github/api.github.com.2026-03-10/users/users-create-gpg-key-for-authenticated-user.op.lapis +68 -0
- package/examples/github/api.github.com.2026-03-10/users/users-create-public-ssh-key-for-authenticated-user.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/users/users-create-ssh-signing-key-for-authenticated-user.op.lapis +51 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-attestations-bulk.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-attestations-by-id.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-attestations-by-subject-digest.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-email-for-authenticated-user.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-gpg-key-for-authenticated-user.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-public-ssh-key-for-authenticated-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-social-account-for-authenticated-user.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/users/users-delete-ssh-signing-key-for-authenticated-user.op.lapis +36 -0
- package/examples/github/api.github.com.2026-03-10/users/users-follow.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-authenticated.op.lapis +27 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-by-id.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-by-username.op.lapis +24 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-context-for-user.op.lapis +340 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-gpg-key-for-authenticated-user.op.lapis +61 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-public-ssh-key-for-authenticated-user.op.lapis +48 -0
- package/examples/github/api.github.com.2026-03-10/users/users-get-ssh-signing-key-for-authenticated-user.op.lapis +44 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-attestations-bulk.op.lapis +22 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-attestations.op.lapis +29 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-blocked-by-authenticated-user.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-emails-for-authenticated-user.op.lapis +46 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-followed-by-authenticated-user.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-followers-for-authenticated-user.op.lapis +55 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-followers-for-user.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-following-for-user.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-gpg-keys-for-authenticated-user.op.lapis +62 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-gpg-keys-for-user.op.lapis +40 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-public-emails-for-authenticated-user.op.lapis +47 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-public-keys-for-user.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-public-ssh-keys-for-authenticated-user.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-social-accounts-for-authenticated-user.op.lapis +42 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-social-accounts-for-user.op.lapis +21 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-ssh-signing-keys-for-authenticated-user.op.lapis +45 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list-ssh-signing-keys-for-user.op.lapis +23 -0
- package/examples/github/api.github.com.2026-03-10/users/users-list.op.lapis +41 -0
- package/examples/github/api.github.com.2026-03-10/users/users-set-primary-email-visibility-for-authenticated-user.op.lapis +49 -0
- package/examples/github/api.github.com.2026-03-10/users/users-unblock.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/users/users-unfollow.op.lapis +35 -0
- package/examples/github/api.github.com.2026-03-10/users/users-update-authenticated.op.lapis +95 -0
- package/examples/github/api.github.com.2026-03-10.lapis +23647 -0
- package/examples/github/api.github.com.2026-03-10.overlay.yaml +11 -0
- package/examples/github/api.github.com.2026-03-10.yaml +252798 -0
- package/package.json +36 -0
- package/pnpm-workspace.yaml +2 -0
- package/src/bin/multilapis.ts +152 -0
- package/src/converter.ts +65 -0
- package/src/emitter.ts +171 -0
- package/src/index.ts +10 -0
- package/src/models.ts +149 -0
- package/src/multilapis.ts +403 -0
- package/src/openapi-loader.ts +117 -0
- package/src/openapi-overlay.ts +290 -0
- package/src/ref-resolver.ts +89 -0
- package/src/schema-flattener.ts +73 -0
- package/src/sections.ts +709 -0
- package/src/type-mapper.ts +87 -0
- package/src/utils.ts +72 -0
- package/test/cli.test.ts +201 -0
- package/test/converter.test.ts +352 -0
- package/test/emitter.test.ts +32 -0
- package/test/fixtures/invoice_api.yaml +383 -0
- package/test/fixtures/minimal_api.yaml +23 -0
- package/test/fixtures/petstore.yaml +146 -0
- package/test/multilapis.test.ts +282 -0
- package/test/openapi-overlay.test.ts +198 -0
- package/tsconfig.json +13 -0
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
# _untagged
|
|
2
|
+
|
|
3
|
+
## Webhooks
|
|
4
|
+
|
|
5
|
+
- [branch-protection-configuration/disabled](branch-protection-configuration-disabled.webhook.lapis) - All branch protections were disabled for a repository.
|
|
6
|
+
- [branch-protection-configuration/enabled](branch-protection-configuration-enabled.webhook.lapis) - All branch protections were enabled for a repository.
|
|
7
|
+
- [branch-protection-rule/created](branch-protection-rule-created.webhook.lapis) - A branch protection rule was created.
|
|
8
|
+
- [branch-protection-rule/deleted](branch-protection-rule-deleted.webhook.lapis) - A branch protection rule was deleted.
|
|
9
|
+
- [branch-protection-rule/edited](branch-protection-rule-edited.webhook.lapis) - A branch protection rule was edited.
|
|
10
|
+
- [check-run/completed](check-run-completed.webhook.lapis) - A check run was completed, and a conclusion is available.
|
|
11
|
+
- [check-run/created](check-run-created.webhook.lapis) - A new check run was created.
|
|
12
|
+
- [check-run/requested-action](check-run-requested-action.webhook.lapis) - A check run completed, and someone requested a followup action that your app provides. Only the GitHub App someone requests to perform an action will receive the `requested_action` payload. For more information, see "[Creating CI tests with the Checks API](https://docs.github.com/developers/apps/guides/creating-ci-tests-with-the-checks-api)."
|
|
13
|
+
- [check-run/rerequested](check-run-rerequested.webhook.lapis) - Someone requested to re-run a check run. Only the GitHub App that someone requests to re-run the check will receive the `rerequested` payload.
|
|
14
|
+
- [check-suite/completed](check-suite-completed.webhook.lapis) - All check runs in a check suite have completed, and a conclusion is available.
|
|
15
|
+
- [check-suite/requested](check-suite-requested.webhook.lapis) - Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see [the GraphQL API documentation for creating a check run](https://docs.github.com/graphql/reference/mutations#createcheckrun) or "[Create a check run](https://docs.github.com/rest/checks/runs#create-a-check-run)" in the REST API documentation.
|
|
16
|
+
- [check-suite/rerequested](check-suite-rerequested.webhook.lapis) - Someone requested to re-run the check runs in a check suite. For more information, see [the GraphQL API documentation for creating a check suite](https://docs.github.com/graphql/reference/mutations#createchecksuite) or "[Create a check suite](https://docs.github.com/rest/checks/suites#create-a-check-suite)" in the REST API documentation.
|
|
17
|
+
- [code-scanning-alert/appeared-in-branch](code-scanning-alert-appeared-in-branch.webhook.lapis) - A previously created code scanning alert appeared in another branch. This can happen when a branch is merged into or created from a branch with a pre-existing code scanning alert.
|
|
18
|
+
- [code-scanning-alert/closed-by-user](code-scanning-alert-closed-by-user.webhook.lapis) - Someone closed a code scanning alert.
|
|
19
|
+
- [code-scanning-alert/created](code-scanning-alert-created.webhook.lapis) - A code scanning alert was created in a repository.
|
|
20
|
+
- [code-scanning-alert/fixed](code-scanning-alert-fixed.webhook.lapis) - A code scanning alert was fixed in a branch by a commit.
|
|
21
|
+
- [code-scanning-alert/reopened](code-scanning-alert-reopened.webhook.lapis) - A previously fixed code scanning alert reappeared in a branch.
|
|
22
|
+
- [code-scanning-alert/reopened-by-user](code-scanning-alert-reopened-by-user.webhook.lapis) - Someone reopened a code scanning alert.
|
|
23
|
+
- [code-scanning-alert/updated-assignment](code-scanning-alert-updated-assignment.webhook.lapis) - The assignees list of a code scanning alert has been updated.
|
|
24
|
+
- [commit-comment/created](commit-comment-created.webhook.lapis) - Someone commented on a commit.
|
|
25
|
+
- [create](create.webhook.lapis) - This event occurs when a Git branch or tag is created. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. **Notes**: - This event will not occur when more than three tags are created at once. - Payloads are capped at 25 MB. If an event generates a larger payload, GitHub will not deliver a payload for that webhook event. This may happen, for example, if many branches or tags are pushed at once. We suggest monitoring your payload size to ensure delivery.
|
|
26
|
+
- [custom-property/created](custom-property-created.webhook.lapis) - A new custom property was created.
|
|
27
|
+
- [custom-property/deleted](custom-property-deleted.webhook.lapis) - A custom property was deleted.
|
|
28
|
+
- [custom-property/promote-to-enterprise](custom-property-promote-to-enterprise.webhook.lapis) - A custom property was promoted to an enterprise.
|
|
29
|
+
- [custom-property/updated](custom-property-updated.webhook.lapis) - A custom property was updated.
|
|
30
|
+
- [custom-property-values/updated](custom-property-values-updated.webhook.lapis) - The custom property values of a repository were updated.
|
|
31
|
+
- [delete](delete.webhook.lapis) - This event occurs when a Git branch or tag is deleted. To subscribe to all pushes to a repository, including branch and tag deletions, use the [`push`](#push) webhook event. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. > [!NOTE] > This event will not occur when more than three tags are deleted at once.
|
|
32
|
+
- [dependabot-alert/assignees-changed](dependabot-alert-assignees-changed.webhook.lapis) - The assignees for a Dependabot alert were updated.
|
|
33
|
+
- [dependabot-alert/auto-dismissed](dependabot-alert-auto-dismissed.webhook.lapis) - A Dependabot alert was automatically closed by a Dependabot auto-triage rule.
|
|
34
|
+
- [dependabot-alert/auto-reopened](dependabot-alert-auto-reopened.webhook.lapis) - A Dependabot alert, that had been automatically closed by a Dependabot auto-triage rule, was automatically reopened because the alert metadata or rule changed.
|
|
35
|
+
- [dependabot-alert/created](dependabot-alert-created.webhook.lapis) - A manifest file change introduced a vulnerable dependency, or a GitHub Security Advisory was published and an existing dependency was found to be vulnerable.
|
|
36
|
+
- [dependabot-alert/dismissed](dependabot-alert-dismissed.webhook.lapis) - A Dependabot alert was manually closed.
|
|
37
|
+
- [dependabot-alert/fixed](dependabot-alert-fixed.webhook.lapis) - A manifest file change removed a vulnerability.
|
|
38
|
+
- [dependabot-alert/reintroduced](dependabot-alert-reintroduced.webhook.lapis) - A manifest file change introduced a vulnerable dependency that had previously been fixed.
|
|
39
|
+
- [dependabot-alert/reopened](dependabot-alert-reopened.webhook.lapis) - A Dependabot alert was manually reopened.
|
|
40
|
+
- [deploy-key/created](deploy-key-created.webhook.lapis) - A deploy key was created.
|
|
41
|
+
- [deploy-key/deleted](deploy-key-deleted.webhook.lapis) - A deploy key was deleted.
|
|
42
|
+
- [deployment/created](deployment-created.webhook.lapis) - A deployment was created.
|
|
43
|
+
- [deployment-protection-rule/requested](deployment-protection-rule-requested.webhook.lapis) - A deployment protection rule was requested for an environment.
|
|
44
|
+
- [deployment-review/approved](deployment-review-approved.webhook.lapis) - A deployment review was approved.
|
|
45
|
+
- [deployment-review/rejected](deployment-review-rejected.webhook.lapis) - A deployment review was rejected.
|
|
46
|
+
- [deployment-review/requested](deployment-review-requested.webhook.lapis) - A deployment review was requested.
|
|
47
|
+
- [deployment-status/created](deployment-status-created.webhook.lapis) - A new deployment status was created.
|
|
48
|
+
- [discussion/answered](discussion-answered.webhook.lapis) - A comment on the discussion was marked as the answer.
|
|
49
|
+
- [discussion/category-changed](discussion-category-changed.webhook.lapis) - The category of a discussion was changed.
|
|
50
|
+
- [discussion/closed](discussion-closed.webhook.lapis) - A discussion was closed.
|
|
51
|
+
- [discussion-comment/created](discussion-comment-created.webhook.lapis) - A comment on a discussion was created.
|
|
52
|
+
- [discussion-comment/deleted](discussion-comment-deleted.webhook.lapis) - A comment on a discussion was deleted.
|
|
53
|
+
- [discussion-comment/edited](discussion-comment-edited.webhook.lapis) - A comment on a discussion was edited.
|
|
54
|
+
- [discussion/created](discussion-created.webhook.lapis) - A discussion was created.
|
|
55
|
+
- [discussion/deleted](discussion-deleted.webhook.lapis) - A discussion was deleted.
|
|
56
|
+
- [discussion/edited](discussion-edited.webhook.lapis) - The title or body on a discussion was edited, or the category of the discussion was changed.
|
|
57
|
+
- [discussion/labeled](discussion-labeled.webhook.lapis) - A label was added to a discussion.
|
|
58
|
+
- [discussion/locked](discussion-locked.webhook.lapis) - A discussion was locked.
|
|
59
|
+
- [discussion/pinned](discussion-pinned.webhook.lapis) - A discussion was pinned.
|
|
60
|
+
- [discussion/reopened](discussion-reopened.webhook.lapis) - A discussion was reopened.
|
|
61
|
+
- [discussion/transferred](discussion-transferred.webhook.lapis) - A discussion was transferred to another repository.
|
|
62
|
+
- [discussion/unanswered](discussion-unanswered.webhook.lapis) - A comment on the discussion was unmarked as the answer.
|
|
63
|
+
- [discussion/unlabeled](discussion-unlabeled.webhook.lapis) - A label was removed from a discussion.
|
|
64
|
+
- [discussion/unlocked](discussion-unlocked.webhook.lapis) - A discussion was unlocked.
|
|
65
|
+
- [discussion/unpinned](discussion-unpinned.webhook.lapis) - A discussion was unpinned.
|
|
66
|
+
- [fork](fork.webhook.lapis) - This event occurs when someone forks a repository. For more information, see "[Fork a repo](https://docs.github.com/get-started/quickstart/fork-a-repo)." For information about the API to manage forks, see "[Forks](https://docs.github.com/rest/repos/forks)" in the REST API documentation. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
|
|
67
|
+
- [github-app-authorization/revoked](github-app-authorization-revoked.webhook.lapis) - Someone revoked their authorization of a GitHub App.
|
|
68
|
+
- [gollum](gollum.webhook.lapis) - This event occurs when someone creates or updates a wiki page. For more information, see "[About wikis](https://docs.github.com/communities/documenting-your-project-with-wikis/about-wikis)." To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
|
|
69
|
+
- [installation/created](installation-created.webhook.lapis) - Someone installed a GitHub App on a user or organization account.
|
|
70
|
+
- [installation/deleted](installation-deleted.webhook.lapis) - Someone uninstalled a GitHub App from their user or organization account.
|
|
71
|
+
- [installation/new-permissions-accepted](installation-new-permissions-accepted.webhook.lapis) - Someone granted new permissions to a GitHub App.
|
|
72
|
+
- [installation-repositories/added](installation-repositories-added.webhook.lapis) - A GitHub App installation was granted access to one or more repositories.
|
|
73
|
+
- [installation-repositories/removed](installation-repositories-removed.webhook.lapis) - Access to one or more repositories was revoked for a GitHub App installation.
|
|
74
|
+
- [installation/suspend](installation-suspend.webhook.lapis) - Someone blocked access by a GitHub App to their user or organization account.
|
|
75
|
+
- [installation-target/renamed](installation-target-renamed.webhook.lapis) - Somebody renamed the user or organization account that a GitHub App is installed on.
|
|
76
|
+
- [installation/unsuspend](installation-unsuspend.webhook.lapis) - A GitHub App that was blocked from accessing a user or organization account was given access the account again.
|
|
77
|
+
- [issue-comment/created](issue-comment-created.webhook.lapis) - A comment on an issue or pull request was created.
|
|
78
|
+
- [issue-comment/deleted](issue-comment-deleted.webhook.lapis) - A comment on an issue or pull request was deleted.
|
|
79
|
+
- [issue-comment/edited](issue-comment-edited.webhook.lapis) - A comment on an issue or pull request was edited.
|
|
80
|
+
- [issue-comment/pinned](issue-comment-pinned.webhook.lapis) - A comment on an issue was pinned.
|
|
81
|
+
- [issue-comment/unpinned](issue-comment-unpinned.webhook.lapis) - A comment on an issue was unpinned.
|
|
82
|
+
- [issue-dependencies/blocked-by-added](issue-dependencies-blocked-by-added.webhook.lapis) - An issue was marked as blocked by another issue.
|
|
83
|
+
- [issue-dependencies/blocked-by-removed](issue-dependencies-blocked-by-removed.webhook.lapis) - The blocked by relationship between an issue and another issue was removed.
|
|
84
|
+
- [issue-dependencies/blocking-added](issue-dependencies-blocking-added.webhook.lapis) - An issue was marked as blocking another issue.
|
|
85
|
+
- [issue-dependencies/blocking-removed](issue-dependencies-blocking-removed.webhook.lapis) - The blocking relationship between an issue and another issue was removed.
|
|
86
|
+
- [issues/assigned](issues-assigned.webhook.lapis) - An issue was assigned to a user.
|
|
87
|
+
- [issues/closed](issues-closed.webhook.lapis) - An issue was closed.
|
|
88
|
+
- [issues/deleted](issues-deleted.webhook.lapis) - An issue was deleted.
|
|
89
|
+
- [issues/demilestoned](issues-demilestoned.webhook.lapis) - An issue was removed from a milestone.
|
|
90
|
+
- [issues/edited](issues-edited.webhook.lapis) - The title or body on an issue was edited.
|
|
91
|
+
- [issues/field-added](issues-field-added.webhook.lapis) - An issue field value was set or updated on an issue.
|
|
92
|
+
- [issues/field-removed](issues-field-removed.webhook.lapis) - An issue field value was cleared from an issue.
|
|
93
|
+
- [issues/labeled](issues-labeled.webhook.lapis) - A label was added to an issue.
|
|
94
|
+
- [issues/locked](issues-locked.webhook.lapis) - Conversation on an issue was locked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
|
|
95
|
+
- [issues/milestoned](issues-milestoned.webhook.lapis) - An issue was added to a milestone.
|
|
96
|
+
- [issues/opened](issues-opened.webhook.lapis) - An issue was created. When a closed issue is reopened, the action will be `reopened` instead.
|
|
97
|
+
- [issues/pinned](issues-pinned.webhook.lapis) - An issue was pinned to a repository. For more information, see "[Pinning an issue to your repository](https://docs.github.com/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)."
|
|
98
|
+
- [issues/reopened](issues-reopened.webhook.lapis) - A closed issue was reopened.
|
|
99
|
+
- [issues/transferred](issues-transferred.webhook.lapis) - An issue was transferred to another repository. For more information, see "[Transferring an issue to another repository](https://docs.github.com/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository)."
|
|
100
|
+
- [issues/typed](issues-typed.webhook.lapis) - An issue type was added to an issue.
|
|
101
|
+
- [issues/unassigned](issues-unassigned.webhook.lapis) - A user was unassigned from an issue.
|
|
102
|
+
- [issues/unlabeled](issues-unlabeled.webhook.lapis) - A label was removed from an issue.
|
|
103
|
+
- [issues/unlocked](issues-unlocked.webhook.lapis) - Conversation on an issue was locked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
|
|
104
|
+
- [issues/unpinned](issues-unpinned.webhook.lapis) - An issue was unpinned from a repository. For more information, see "[Pinning an issue to your repository](https://docs.github.com/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)."
|
|
105
|
+
- [issues/untyped](issues-untyped.webhook.lapis) - An issue type was removed from an issue.
|
|
106
|
+
- [label/created](label-created.webhook.lapis) - A label was created.
|
|
107
|
+
- [label/deleted](label-deleted.webhook.lapis) - A label was deleted.
|
|
108
|
+
- [label/edited](label-edited.webhook.lapis) - A label's name, description, or color was changed.
|
|
109
|
+
- [marketplace-purchase/cancelled](marketplace-purchase-cancelled.webhook.lapis) - Someone cancelled a GitHub Marketplace plan, and the last billing cycle has ended. The change will take effect on the account immediately.
|
|
110
|
+
- [marketplace-purchase/changed](marketplace-purchase-changed.webhook.lapis) - Someone upgraded or downgraded a GitHub Marketplace plan, and the last billing cycle has ended. The change will take effect on the account immediately.
|
|
111
|
+
- [marketplace-purchase/pending-change](marketplace-purchase-pending-change.webhook.lapis) - Someone downgraded or cancelled a GitHub Marketplace plan. The new plan or cancellation will take effect at the end of the current billing cycle. When the change takes effect, the `changed` or `cancelled` event will be sent.
|
|
112
|
+
- [marketplace-purchase/pending-change-cancelled](marketplace-purchase-pending-change-cancelled.webhook.lapis) - Someone cancelled a pending change to a GitHub Marketplace plan. Pending changes include plan cancellations and downgrades that will take effect at the end of a billing cycle.
|
|
113
|
+
- [marketplace-purchase/purchased](marketplace-purchase-purchased.webhook.lapis) - Someone purchased a GitHub Marketplace plan. The change will take effect on the account immediately.
|
|
114
|
+
- [member/added](member-added.webhook.lapis) - A GitHub user accepted an invitation to a repository.
|
|
115
|
+
- [member/edited](member-edited.webhook.lapis) - Permissions were changed for a collaborator on a repository.
|
|
116
|
+
- [member/removed](member-removed.webhook.lapis) - A collaborator was removed from a repository.
|
|
117
|
+
- [membership/added](membership-added.webhook.lapis) - An organization member was added to a team.
|
|
118
|
+
- [membership/removed](membership-removed.webhook.lapis) - An organization member was removed from a team.
|
|
119
|
+
- [meta/deleted](meta-deleted.webhook.lapis) - The webhook was deleted.
|
|
120
|
+
- [milestone/closed](milestone-closed.webhook.lapis) - A milestone was closed.
|
|
121
|
+
- [milestone/created](milestone-created.webhook.lapis) - A milestone was created.
|
|
122
|
+
- [milestone/deleted](milestone-deleted.webhook.lapis) - A milestone was deleted.
|
|
123
|
+
- [milestone/edited](milestone-edited.webhook.lapis) - A milestone was edited.
|
|
124
|
+
- [milestone/opened](milestone-opened.webhook.lapis) - A milestone was opened.
|
|
125
|
+
- [org-block/blocked](org-block-blocked.webhook.lapis) - A user was blocked from the organization.
|
|
126
|
+
- [org-block/unblocked](org-block-unblocked.webhook.lapis) - A previously blocked user was unblocked from the organization.
|
|
127
|
+
- [organization/deleted](organization-deleted.webhook.lapis) - An organization was deleted.
|
|
128
|
+
- [organization/member-added](organization-member-added.webhook.lapis) - A member accepted an invitation to join an organization.
|
|
129
|
+
- [organization/member-invited](organization-member-invited.webhook.lapis) - A member was invited to join the organization.
|
|
130
|
+
- [organization/member-removed](organization-member-removed.webhook.lapis) - A member was removed from the organization.
|
|
131
|
+
- [organization/renamed](organization-renamed.webhook.lapis) - The name of an organization was changed.
|
|
132
|
+
- [package/published](package-published.webhook.lapis) - A package was published to a registry.
|
|
133
|
+
- [package/updated](package-updated.webhook.lapis) - A previously published package was updated.
|
|
134
|
+
- [page-build](page-build.webhook.lapis) - This event occurs when there is an attempted build of a GitHub Pages site. This event occurs regardless of whether the build is successful. For more information, see "[Configuring a publishing source for your GitHub Pages site](https://docs.github.com/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site)." For information about the API to manage GitHub Pages, see "[Pages](https://docs.github.com/rest/pages)" in the REST API documentation. To subscribe to this event, a GitHub App must have at least read-level access for the "Pages" repository permission.
|
|
135
|
+
- [personal-access-token-request/approved](personal-access-token-request-approved.webhook.lapis) - A fine-grained personal access token request was approved.
|
|
136
|
+
- [personal-access-token-request/cancelled](personal-access-token-request-cancelled.webhook.lapis) - A fine-grained personal access token request was cancelled by the requester.
|
|
137
|
+
- [personal-access-token-request/created](personal-access-token-request-created.webhook.lapis) - A fine-grained personal access token request was created.
|
|
138
|
+
- [personal-access-token-request/denied](personal-access-token-request-denied.webhook.lapis) - A fine-grained personal access token request was denied.
|
|
139
|
+
- [ping](ping.webhook.lapis) - This event occurs when you create a new webhook. The ping event is a confirmation from GitHub that you configured the webhook correctly.
|
|
140
|
+
- [project-card/converted](project-card-converted.webhook.lapis) - A note in a project (classic) was converted to an issue.
|
|
141
|
+
- [project-card/created](project-card-created.webhook.lapis) - A card was added to a project (classic).
|
|
142
|
+
- [project-card/deleted](project-card-deleted.webhook.lapis) - A card on a project (classic) was deleted.
|
|
143
|
+
- [project-card/edited](project-card-edited.webhook.lapis) - A note on a project (classic) was edited.
|
|
144
|
+
- [project-card/moved](project-card-moved.webhook.lapis) - A card on a project (classic) was moved to another column or to another position in its column.
|
|
145
|
+
- [project/closed](project-closed.webhook.lapis) - A project (classic) was closed.
|
|
146
|
+
- [project-column/created](project-column-created.webhook.lapis) - A column was added to a project (classic).
|
|
147
|
+
- [project-column/deleted](project-column-deleted.webhook.lapis) - A column was deleted from a project (classic).
|
|
148
|
+
- [project-column/edited](project-column-edited.webhook.lapis) - The name of a column on a project (classic) was changed.
|
|
149
|
+
- [project-column/moved](project-column-moved.webhook.lapis) - A column was moved to a new position on a project (classic).
|
|
150
|
+
- [project/created](project-created.webhook.lapis) - A project (classic) was created.
|
|
151
|
+
- [project/deleted](project-deleted.webhook.lapis) - A project (classic) was deleted.
|
|
152
|
+
- [project/edited](project-edited.webhook.lapis) - The name or description of a project (classic) was changed.
|
|
153
|
+
- [project/reopened](project-reopened.webhook.lapis) - A project (classic) was closed.
|
|
154
|
+
- [projects-v2/closed](projects-v2-closed.webhook.lapis) - A project in the organization was closed.
|
|
155
|
+
- [projects-v2/created](projects-v2-created.webhook.lapis) - A project in the organization was created.
|
|
156
|
+
- [projects-v2/deleted](projects-v2-deleted.webhook.lapis) - A project in the organization was deleted.
|
|
157
|
+
- [projects-v2/edited](projects-v2-edited.webhook.lapis) - The title, description, or README of a project in the organization was changed.
|
|
158
|
+
- [projects-v2-item/archived](projects-v2-item-archived.webhook.lapis) - An item on an organization project was archived. For more information, see "[Archiving items from your project](https://docs.github.com/issues/planning-and-tracking-with-projects/managing-items-in-your-project/archiving-items-from-your-project)."
|
|
159
|
+
- [projects-v2-item/converted](projects-v2-item-converted.webhook.lapis) - A draft issue in an organization project was converted to an issue.
|
|
160
|
+
- [projects-v2-item/created](projects-v2-item-created.webhook.lapis) - An item was added to a project in the organization.
|
|
161
|
+
- [projects-v2-item/deleted](projects-v2-item-deleted.webhook.lapis) - An item was deleted from a project in the organization.
|
|
162
|
+
- [projects-v2-item/edited](projects-v2-item-edited.webhook.lapis) - The values or state of an item in an organization project were changed. For example, the value of a field was updated, the body of a draft issue was changed, or a draft issue was converted to an issue.
|
|
163
|
+
- [projects-v2-item/reordered](projects-v2-item-reordered.webhook.lapis) - The position of an item in an organization project was changed. For example, an item was moved above or below another item in the table or board layout.
|
|
164
|
+
- [projects-v2-item/restored](projects-v2-item-restored.webhook.lapis) - An archived item on an organization project was restored from the archive. For more information, see "[Archiving items from your project](https://docs.github.com/issues/planning-and-tracking-with-projects/managing-items-in-your-project/archiving-items-from-your-project)."
|
|
165
|
+
- [projects-v2/reopened](projects-v2-reopened.webhook.lapis) - A project in the organization was reopened.
|
|
166
|
+
- [projects-v2-status-update/created](projects-v2-status-update-created.webhook.lapis) - A status update was added to a project in the organization.
|
|
167
|
+
- [projects-v2-status-update/deleted](projects-v2-status-update-deleted.webhook.lapis) - A status update was removed from a project in the organization.
|
|
168
|
+
- [projects-v2-status-update/edited](projects-v2-status-update-edited.webhook.lapis) - A status update was edited on a project in the organization.
|
|
169
|
+
- [public](public.webhook.lapis) - This event occurs when repository visibility changes from private to public. For more information, see "[Setting repository visibility](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility)." To subscribe to this event, a GitHub App must have at least read-level access for the "Metadata" repository permission.
|
|
170
|
+
- [pull-request/assigned](pull-request-assigned.webhook.lapis) - A pull request was assigned to a user.
|
|
171
|
+
- [pull-request/auto-merge-disabled](pull-request-auto-merge-disabled.webhook.lapis) - Auto merge was disabled for a pull request. For more information, see "[Automatically merging a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request)."
|
|
172
|
+
- [pull-request/auto-merge-enabled](pull-request-auto-merge-enabled.webhook.lapis) - Auto merge was enabled for a pull request. For more information, see "[Automatically merging a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request)."
|
|
173
|
+
- [pull-request/closed](pull-request-closed.webhook.lapis) - A pull request was closed. If `merged` is false in the webhook payload, the pull request was closed with unmerged commits. If `merged` is true in the webhook payload, the pull request was merged.
|
|
174
|
+
- [pull-request/converted-to-draft](pull-request-converted-to-draft.webhook.lapis) - A pull request was converted to a draft. For more information, see "[Changing the stage of a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request)."
|
|
175
|
+
- [pull-request/demilestoned](pull-request-demilestoned.webhook.lapis) - A pull request was removed from a milestone.
|
|
176
|
+
- [pull-request/dequeued](pull-request-dequeued.webhook.lapis) - A pull request was removed from the merge queue.
|
|
177
|
+
- [pull-request/edited](pull-request-edited.webhook.lapis) - The title or body of a pull request was edited, or the base branch of a pull request was changed.
|
|
178
|
+
- [pull-request/enqueued](pull-request-enqueued.webhook.lapis) - A pull request was added to the merge queue.
|
|
179
|
+
- [pull-request/labeled](pull-request-labeled.webhook.lapis) - A label was added to a pull request.
|
|
180
|
+
- [pull-request/locked](pull-request-locked.webhook.lapis) - Conversation on a pull request was locked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
|
|
181
|
+
- [pull-request/milestoned](pull-request-milestoned.webhook.lapis) - A pull request was added to a milestone.
|
|
182
|
+
- [pull-request/opened](pull-request-opened.webhook.lapis) - A pull request was created
|
|
183
|
+
- [pull-request/ready-for-review](pull-request-ready-for-review.webhook.lapis) - A draft pull request was marked as ready for review. For more information, see "[Changing the stage of a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request)."
|
|
184
|
+
- [pull-request/reopened](pull-request-reopened.webhook.lapis) - A previously closed pull request was reopened.
|
|
185
|
+
- [pull-request-review-comment/created](pull-request-review-comment-created.webhook.lapis) - A comment on a pull request diff was created.
|
|
186
|
+
- [pull-request-review-comment/deleted](pull-request-review-comment-deleted.webhook.lapis) - A comment on a pull request diff was deleted.
|
|
187
|
+
- [pull-request-review-comment/edited](pull-request-review-comment-edited.webhook.lapis) - The content of a comment on a pull request diff was changed.
|
|
188
|
+
- [pull-request-review/dismissed](pull-request-review-dismissed.webhook.lapis) - A review on a pull request was dismissed.
|
|
189
|
+
- [pull-request-review/edited](pull-request-review-edited.webhook.lapis) - The body comment on a pull request review was edited.
|
|
190
|
+
- [pull-request/review-request-removed](pull-request-review-request-removed.webhook.lapis) - A request for review by a person or team was removed from a pull request.
|
|
191
|
+
- [pull-request/review-requested](pull-request-review-requested.webhook.lapis) - Review by a person or team was requested for a pull request. For more information, see "[Requesting a pull request review](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review)."
|
|
192
|
+
- [pull-request-review/submitted](pull-request-review-submitted.webhook.lapis) - A review on a pull request was submitted.
|
|
193
|
+
- [pull-request-review-thread/resolved](pull-request-review-thread-resolved.webhook.lapis) - A comment thread on a pull request was marked as resolved.
|
|
194
|
+
- [pull-request-review-thread/unresolved](pull-request-review-thread-unresolved.webhook.lapis) - A previously resolved comment thread on a pull request was marked as unresolved.
|
|
195
|
+
- [pull-request/synchronize](pull-request-synchronize.webhook.lapis) - A pull request's head branch was updated. For example, the head branch was updated from the base branch or new commits were pushed to the head branch.
|
|
196
|
+
- [pull-request/unassigned](pull-request-unassigned.webhook.lapis) - A user was unassigned from a pull request.
|
|
197
|
+
- [pull-request/unlabeled](pull-request-unlabeled.webhook.lapis) - A label was removed from a pull request.
|
|
198
|
+
- [pull-request/unlocked](pull-request-unlocked.webhook.lapis) - Conversation on a pull request was unlocked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
|
|
199
|
+
- [push](push.webhook.lapis) - This event occurs when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template. To subscribe to only branch and tag deletions, use the [`delete`](#delete) webhook event. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. > [!NOTE] > Events will not be created if more than 5000 branches are pushed at once. Events will not be created for tags when more than three tags are pushed at once.
|
|
200
|
+
- [registry-package/published](registry-package-published.webhook.lapis) - A package was published to a registry.
|
|
201
|
+
- [registry-package/updated](registry-package-updated.webhook.lapis) - A package that was previously published to a registry was updated.
|
|
202
|
+
- [release/created](release-created.webhook.lapis) - A draft was saved, or a release or pre-release was published without previously being saved as a draft.
|
|
203
|
+
- [release/deleted](release-deleted.webhook.lapis) - A release, pre-release, or draft release was deleted.
|
|
204
|
+
- [release/edited](release-edited.webhook.lapis) - The details of a release, pre-release, or draft release were edited. For more information, see "[Managing releases in a repository](https://docs.github.com/repositories/releasing-projects-on-github/managing-releases-in-a-repository#editing-a-release)."
|
|
205
|
+
- [release/prereleased](release-prereleased.webhook.lapis) - A release was created and identified as a pre-release. A pre-release is a release that is not ready for production and may be unstable.
|
|
206
|
+
- [release/published](release-published.webhook.lapis) - A release, pre-release, or draft of a release was published.
|
|
207
|
+
- [release/released](release-released.webhook.lapis) - A release was published, or a pre-release was changed to a release.
|
|
208
|
+
- [release/unpublished](release-unpublished.webhook.lapis) - A release or pre-release was unpublished.
|
|
209
|
+
- [repository-advisory/published](repository-advisory-published.webhook.lapis) - A repository security advisory was published.
|
|
210
|
+
- [repository-advisory/reported](repository-advisory-reported.webhook.lapis) - A private vulnerability report was submitted.
|
|
211
|
+
- [repository/archived](repository-archived.webhook.lapis) - A repository was archived.
|
|
212
|
+
- [repository/created](repository-created.webhook.lapis) - A repository was created.
|
|
213
|
+
- [repository/deleted](repository-deleted.webhook.lapis) - A repository was deleted. GitHub Apps and repository webhooks will not receive this event.
|
|
214
|
+
- [repository-dispatch/sample.collected](repository-dispatch-sample-collected.webhook.lapis) - This event occurs when a GitHub App sends a `POST` request to `/repos/{owner}/{repo}/dispatches`. For more information, see [the REST API documentation for creating a repository dispatch event](https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event). In the payload, the `action` will be the `event_type` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
|
|
215
|
+
- [repository/edited](repository-edited.webhook.lapis) - The topics, default branch, description, or homepage of a repository was changed.
|
|
216
|
+
- [repository-import](repository-import.webhook.lapis) - This event occurs when a repository is imported to GitHub. For more information, see "[Importing a repository with GitHub Importer](https://docs.github.com/get-started/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer)." For more information about the API to manage imports, see [the REST API documentation](https://docs.github.com/rest/migrations/source-imports).
|
|
217
|
+
- [repository/privatized](repository-privatized.webhook.lapis) - The visibility of a repository was changed to `private`.
|
|
218
|
+
- [repository/publicized](repository-publicized.webhook.lapis) - The visibility of a repository was changed to `public`.
|
|
219
|
+
- [repository/renamed](repository-renamed.webhook.lapis) - The name of a repository was changed.
|
|
220
|
+
- [repository-ruleset/created](repository-ruleset-created.webhook.lapis) - A repository ruleset was created.
|
|
221
|
+
- [repository-ruleset/deleted](repository-ruleset-deleted.webhook.lapis) - A repository ruleset was deleted.
|
|
222
|
+
- [repository-ruleset/edited](repository-ruleset-edited.webhook.lapis) - A repository ruleset was edited.
|
|
223
|
+
- [repository/transferred](repository-transferred.webhook.lapis) - Ownership of the repository was transferred to a user or organization account. This event is only sent to the account where the ownership is transferred. To receive the `repository.transferred` event, the new owner account must have the GitHub App installed, and the App must be subscribed to "Repository" events.
|
|
224
|
+
- [repository/unarchived](repository-unarchived.webhook.lapis) - A previously archived repository was unarchived.
|
|
225
|
+
- [repository-vulnerability-alert/create](repository-vulnerability-alert-create.webhook.lapis) - A repository vulnerability alert was created.
|
|
226
|
+
- [repository-vulnerability-alert/dismiss](repository-vulnerability-alert-dismiss.webhook.lapis) - A repository vulnerability alert was dismissed.
|
|
227
|
+
- [repository-vulnerability-alert/reopen](repository-vulnerability-alert-reopen.webhook.lapis) - A previously dismissed or resolved repository vulnerability alert was reopened.
|
|
228
|
+
- [repository-vulnerability-alert/resolve](repository-vulnerability-alert-resolve.webhook.lapis) - A repository vulnerability alert was marked as resolved.
|
|
229
|
+
- [secret-scanning-alert/assigned](secret-scanning-alert-assigned.webhook.lapis) - A secret scanning alert was assigned.
|
|
230
|
+
- [secret-scanning-alert/created](secret-scanning-alert-created.webhook.lapis) - A secret scanning alert was created.
|
|
231
|
+
- [secret-scanning-alert-location/created](secret-scanning-alert-location-created.webhook.lapis) - A new instance of a previously detected secret was detected in a repository, and the location of the secret was added to the existing alert.
|
|
232
|
+
- [secret-scanning-alert/publicly-leaked](secret-scanning-alert-publicly-leaked.webhook.lapis) - A secret scanning alert was detected in a public repo.
|
|
233
|
+
- [secret-scanning-alert/reopened](secret-scanning-alert-reopened.webhook.lapis) - A previously closed secret scanning alert was reopened.
|
|
234
|
+
- [secret-scanning-alert/resolved](secret-scanning-alert-resolved.webhook.lapis) - A secret scanning alert was closed.
|
|
235
|
+
- [secret-scanning-alert/unassigned](secret-scanning-alert-unassigned.webhook.lapis) - A secret scanning alert was unassigned.
|
|
236
|
+
- [secret-scanning-alert/validated](secret-scanning-alert-validated.webhook.lapis) - A secret scanning alert was validated.
|
|
237
|
+
- [secret-scanning-scan/completed](secret-scanning-scan-completed.webhook.lapis) - A secret scanning scan was completed.
|
|
238
|
+
- [security-advisory/published](security-advisory-published.webhook.lapis) - A security advisory was published to the GitHub community.
|
|
239
|
+
- [security-advisory/updated](security-advisory-updated.webhook.lapis) - The metadata or description of a security advisory was changed.
|
|
240
|
+
- [security-advisory/withdrawn](security-advisory-withdrawn.webhook.lapis) - A previously published security advisory was withdrawn.
|
|
241
|
+
- [security-and-analysis](security-and-analysis.webhook.lapis) - This event occurs when code security and analysis features are enabled or disabled for a repository. For more information, see "[GitHub security features](https://docs.github.com/code-security/getting-started/github-security-features)." To subscribe to this event, a GitHub App must have at least read-level access for the "Administration" repository permission.
|
|
242
|
+
- [sponsorship/cancelled](sponsorship-cancelled.webhook.lapis) - A sponsorship was cancelled and the last billing cycle has ended. This event is only sent when a recurring (monthly) sponsorship is cancelled; it is not sent for one-time sponsorships.
|
|
243
|
+
- [sponsorship/created](sponsorship-created.webhook.lapis) - A sponsor created a sponsorship for a sponsored account. This event occurs once the payment is successfully processed.
|
|
244
|
+
- [sponsorship/edited](sponsorship-edited.webhook.lapis) - A monthly sponsor changed who can see their sponsorship. If you recognize your sponsors publicly, you may want to update your sponsor recognition to reflect the change when this event occurs.
|
|
245
|
+
- [sponsorship/pending-cancellation](sponsorship-pending-cancellation.webhook.lapis) - A sponsor scheduled a cancellation for their sponsorship. The cancellation will become effective on their next billing date. This event is only sent when a recurring (monthly) sponsorship is cancelled; it is not sent for one-time sponsorships.
|
|
246
|
+
- [sponsorship/pending-tier-change](sponsorship-pending-tier-change.webhook.lapis) - A sponsor scheduled a downgrade to a lower sponsorship tier. The new tier will become effective on their next billing date.
|
|
247
|
+
- [sponsorship/tier-changed](sponsorship-tier-changed.webhook.lapis) - A sponsor changed the tier of their sponsorship and the change has taken effect. If a sponsor upgraded their tier, the change took effect immediately. If a sponsor downgraded their tier, the change took effect at the beginning of the sponsor's next billing cycle.
|
|
248
|
+
- [star/created](star-created.webhook.lapis) - Someone starred a repository.
|
|
249
|
+
- [star/deleted](star-deleted.webhook.lapis) - Someone unstarred the repository.
|
|
250
|
+
- [status](status.webhook.lapis) - This event occurs when the status of a Git commit changes. For example, commits can be marked as `error`, `failure`, `pending`, or `success`. For more information, see "[About status checks](https://docs.github.com/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)." For information about the APIs to manage commit statuses, see [the GraphQL documentation](https://docs.github.com/graphql/reference/objects#status) or "[Commit statuses](https://docs.github.com/rest/commits/statuses)" in the REST API documentation. To subscribe to this event, a GitHub App must have at least read-level access for the "Commit statuses" repository permission.
|
|
251
|
+
- [sub-issues/parent-issue-added](sub-issues-parent-issue-added.webhook.lapis) - A parent issue was added to an issue.
|
|
252
|
+
- [sub-issues/parent-issue-removed](sub-issues-parent-issue-removed.webhook.lapis) - A parent issue was removed from an issue.
|
|
253
|
+
- [sub-issues/sub-issue-added](sub-issues-sub-issue-added.webhook.lapis) - A sub-issue was added to an issue.
|
|
254
|
+
- [sub-issues/sub-issue-removed](sub-issues-sub-issue-removed.webhook.lapis) - A sub-issue was removed from an issue.
|
|
255
|
+
- [team-add](team-add.webhook.lapis) - This event occurs when a team is added to a repository. For more information, see "[Managing teams and people with access to your repository](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository)." For activity relating to teams, see the `teams` event. To subscribe to this event, a GitHub App must have at least read-level access for the "Members" organization permission.
|
|
256
|
+
- [team/added-to-repository](team-added-to-repository.webhook.lapis) - A team was granted access to a repository.
|
|
257
|
+
- [team/created](team-created.webhook.lapis) - A team was created.
|
|
258
|
+
- [team/deleted](team-deleted.webhook.lapis) - A team was deleted.
|
|
259
|
+
- [team/edited](team-edited.webhook.lapis) - The name, description, or visibility of a team was changed.
|
|
260
|
+
- [team/removed-from-repository](team-removed-from-repository.webhook.lapis) - A team's access to a repository was removed.
|
|
261
|
+
- [watch/started](watch-started.webhook.lapis) - Someone started watching the repository.
|
|
262
|
+
- [workflow-dispatch](workflow-dispatch.webhook.lapis) - This event occurs when a GitHub Actions workflow is manually triggered. For more information, see "[Manually running a workflow](https://docs.github.com/actions/managing-workflow-runs/manually-running-a-workflow)." For activity relating to workflow runs, use the `workflow_run` event. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
|
|
263
|
+
- [workflow-job/completed](workflow-job-completed.webhook.lapis) - A job in a workflow run finished. This event occurs when a job in a workflow is completed, regardless of whether the job was successful or unsuccessful.
|
|
264
|
+
- [workflow-job/in-progress](workflow-job-in-progress.webhook.lapis) - A job in a workflow run started processing on a runner.
|
|
265
|
+
- [workflow-job/queued](workflow-job-queued.webhook.lapis) - A job in a workflow run was created.
|
|
266
|
+
- [workflow-job/waiting](workflow-job-waiting.webhook.lapis) - A job in a workflow run was created and is waiting for approvals.
|
|
267
|
+
- [workflow-run/completed](workflow-run-completed.webhook.lapis) - A workflow run finished. This event occurs when a workflow run is completed, regardless of whether the workflow was successful or unsuccessful.
|
|
268
|
+
- [workflow-run/in-progress](workflow-run-in-progress.webhook.lapis) - A workflow run started processing on a runner.
|
|
269
|
+
- [workflow-run/requested](workflow-run-requested.webhook.lapis) - A workflow run was triggered.
|
package/examples/github/api.github.com.2026-03-10/_untagged/installation-created.webhook.lapis
ADDED
|
@@ -0,0 +1,312 @@
|
|
|
1
|
+
# LAPIS v0.1.0
|
|
2
|
+
|
|
3
|
+
[meta]
|
|
4
|
+
api: GitHub v3 REST API
|
|
5
|
+
base: https://api.github.com
|
|
6
|
+
version: 1.1.4
|
|
7
|
+
desc: GitHub is a source code hosting and collaboration platform for Git repositories, issues, pull requests, automation, and related developer workflows. It also provides APIs and tooling for integrating repository, organization, and application operations.
|
|
8
|
+
|
|
9
|
+
[types]
|
|
10
|
+
simple-user:
|
|
11
|
+
name?: str
|
|
12
|
+
email?: str
|
|
13
|
+
login: str
|
|
14
|
+
id: int
|
|
15
|
+
node_id: str
|
|
16
|
+
avatar_url: str
|
|
17
|
+
gravatar_id: str
|
|
18
|
+
url: str
|
|
19
|
+
html_url: str
|
|
20
|
+
followers_url: str
|
|
21
|
+
following_url: str
|
|
22
|
+
gists_url: str
|
|
23
|
+
starred_url: str
|
|
24
|
+
subscriptions_url: str
|
|
25
|
+
organizations_url: str
|
|
26
|
+
repos_url: str
|
|
27
|
+
events_url: str
|
|
28
|
+
received_events_url: str
|
|
29
|
+
type: str
|
|
30
|
+
site_admin: bool
|
|
31
|
+
starred_at?: str
|
|
32
|
+
user_view_type?: str
|
|
33
|
+
|
|
34
|
+
app-permissions:
|
|
35
|
+
actions?: read | write
|
|
36
|
+
administration?: read | write
|
|
37
|
+
artifact_metadata?: read | write
|
|
38
|
+
attestations?: read | write
|
|
39
|
+
checks?: read | write
|
|
40
|
+
code_quality?: read | write
|
|
41
|
+
codespaces?: read | write
|
|
42
|
+
contents?: read | write
|
|
43
|
+
dependabot_secrets?: read | write
|
|
44
|
+
deployments?: read | write
|
|
45
|
+
discussions?: read | write
|
|
46
|
+
environments?: read | write
|
|
47
|
+
issues?: read | write
|
|
48
|
+
merge_queues?: read | write
|
|
49
|
+
metadata?: read | write
|
|
50
|
+
packages?: read | write
|
|
51
|
+
pages?: read | write
|
|
52
|
+
pull_requests?: read | write
|
|
53
|
+
repository_custom_properties?: read | write
|
|
54
|
+
repository_hooks?: read | write
|
|
55
|
+
repository_projects?: read | write | admin
|
|
56
|
+
secret_scanning_alerts?: read | write
|
|
57
|
+
secrets?: read | write
|
|
58
|
+
security_events?: read | write
|
|
59
|
+
single_file?: read | write
|
|
60
|
+
statuses?: read | write
|
|
61
|
+
vulnerability_alerts?: read | write
|
|
62
|
+
workflows?: write
|
|
63
|
+
custom_properties_for_organizations?: read | write
|
|
64
|
+
members?: read | write
|
|
65
|
+
organization_administration?: read | write
|
|
66
|
+
organization_custom_roles?: read | write
|
|
67
|
+
organization_custom_org_roles?: read | write
|
|
68
|
+
organization_custom_properties?: read | write | admin
|
|
69
|
+
organization_copilot_seat_management?: read | write
|
|
70
|
+
organization_copilot_agent_settings?: read | write
|
|
71
|
+
organization_announcement_banners?: read | write
|
|
72
|
+
organization_events?: read
|
|
73
|
+
organization_hooks?: read | write
|
|
74
|
+
organization_personal_access_tokens?: read | write
|
|
75
|
+
organization_personal_access_token_requests?: read | write
|
|
76
|
+
organization_plan?: read
|
|
77
|
+
organization_projects?: read | write | admin
|
|
78
|
+
organization_packages?: read | write
|
|
79
|
+
organization_secrets?: read | write
|
|
80
|
+
organization_self_hosted_runners?: read | write
|
|
81
|
+
organization_user_blocking?: read | write
|
|
82
|
+
email_addresses?: read | write
|
|
83
|
+
followers?: read | write
|
|
84
|
+
git_ssh_keys?: read | write
|
|
85
|
+
gpg_keys?: read | write
|
|
86
|
+
interaction_limits?: read | write
|
|
87
|
+
profile?: write
|
|
88
|
+
starring?: read | write
|
|
89
|
+
enterprise_custom_properties_for_organizations?: read | write | admin
|
|
90
|
+
|
|
91
|
+
nullable-simple-user:
|
|
92
|
+
name?: str
|
|
93
|
+
email?: str
|
|
94
|
+
login: str
|
|
95
|
+
id: int
|
|
96
|
+
node_id: str
|
|
97
|
+
avatar_url: str
|
|
98
|
+
gravatar_id: str
|
|
99
|
+
url: str
|
|
100
|
+
html_url: str
|
|
101
|
+
followers_url: str
|
|
102
|
+
following_url: str
|
|
103
|
+
gists_url: str
|
|
104
|
+
starred_url: str
|
|
105
|
+
subscriptions_url: str
|
|
106
|
+
organizations_url: str
|
|
107
|
+
repos_url: str
|
|
108
|
+
events_url: str
|
|
109
|
+
received_events_url: str
|
|
110
|
+
type: str
|
|
111
|
+
site_admin: bool
|
|
112
|
+
starred_at?: str
|
|
113
|
+
user_view_type?: str
|
|
114
|
+
|
|
115
|
+
installation:
|
|
116
|
+
id: int
|
|
117
|
+
account: any
|
|
118
|
+
repository_selection: all | selected
|
|
119
|
+
access_tokens_url: str
|
|
120
|
+
repositories_url: str
|
|
121
|
+
html_url: str
|
|
122
|
+
app_id: int
|
|
123
|
+
client_id?: str
|
|
124
|
+
target_id: int
|
|
125
|
+
target_type: str
|
|
126
|
+
permissions: app-permissions
|
|
127
|
+
events: [str]
|
|
128
|
+
created_at: datetime
|
|
129
|
+
updated_at: datetime
|
|
130
|
+
single_file_name: str
|
|
131
|
+
has_multiple_single_files?: bool
|
|
132
|
+
single_file_paths?: [str]
|
|
133
|
+
app_slug: str
|
|
134
|
+
suspended_by: nullable-simple-user
|
|
135
|
+
suspended_at: datetime
|
|
136
|
+
contact_email?: str
|
|
137
|
+
|
|
138
|
+
nullable-license-simple:
|
|
139
|
+
key: str
|
|
140
|
+
name: str
|
|
141
|
+
url: str
|
|
142
|
+
spdx_id: str
|
|
143
|
+
node_id: str
|
|
144
|
+
html_url?: str
|
|
145
|
+
|
|
146
|
+
language:
|
|
147
|
+
|
|
148
|
+
enterprise-webhooks:
|
|
149
|
+
description?: str
|
|
150
|
+
html_url: str
|
|
151
|
+
website_url?: str
|
|
152
|
+
id: int
|
|
153
|
+
node_id: str
|
|
154
|
+
name: str
|
|
155
|
+
slug: str
|
|
156
|
+
created_at: datetime
|
|
157
|
+
updated_at: datetime
|
|
158
|
+
avatar_url: str
|
|
159
|
+
|
|
160
|
+
organization-simple-webhooks:
|
|
161
|
+
login: str
|
|
162
|
+
id: int
|
|
163
|
+
node_id: str
|
|
164
|
+
url: str
|
|
165
|
+
repos_url: str
|
|
166
|
+
events_url: str
|
|
167
|
+
hooks_url: str
|
|
168
|
+
issues_url: str
|
|
169
|
+
members_url: str
|
|
170
|
+
public_members_url: str
|
|
171
|
+
avatar_url: str
|
|
172
|
+
description: str
|
|
173
|
+
|
|
174
|
+
repository-webhooks:
|
|
175
|
+
id: int
|
|
176
|
+
node_id: str
|
|
177
|
+
name: str
|
|
178
|
+
full_name: str
|
|
179
|
+
license: nullable-license-simple
|
|
180
|
+
organization?: nullable-simple-user
|
|
181
|
+
forks: int
|
|
182
|
+
permissions?: {admin: bool, pull: bool, triage?: bool, push: bool, maintain?: bool}
|
|
183
|
+
owner: simple-user
|
|
184
|
+
private: bool = false
|
|
185
|
+
html_url: str
|
|
186
|
+
description: str
|
|
187
|
+
fork: bool
|
|
188
|
+
url: str
|
|
189
|
+
archive_url: str
|
|
190
|
+
assignees_url: str
|
|
191
|
+
blobs_url: str
|
|
192
|
+
branches_url: str
|
|
193
|
+
collaborators_url: str
|
|
194
|
+
comments_url: str
|
|
195
|
+
commits_url: str
|
|
196
|
+
compare_url: str
|
|
197
|
+
contents_url: str
|
|
198
|
+
contributors_url: str
|
|
199
|
+
deployments_url: str
|
|
200
|
+
downloads_url: str
|
|
201
|
+
events_url: str
|
|
202
|
+
forks_url: str
|
|
203
|
+
git_commits_url: str
|
|
204
|
+
git_refs_url: str
|
|
205
|
+
git_tags_url: str
|
|
206
|
+
git_url: str
|
|
207
|
+
issue_comment_url: str
|
|
208
|
+
issue_events_url: str
|
|
209
|
+
issues_url: str
|
|
210
|
+
keys_url: str
|
|
211
|
+
labels_url: str
|
|
212
|
+
languages_url: str
|
|
213
|
+
merges_url: str
|
|
214
|
+
milestones_url: str
|
|
215
|
+
notifications_url: str
|
|
216
|
+
pulls_url: str
|
|
217
|
+
releases_url: str
|
|
218
|
+
ssh_url: str
|
|
219
|
+
stargazers_url: str
|
|
220
|
+
statuses_url: str
|
|
221
|
+
subscribers_url: str
|
|
222
|
+
subscription_url: str
|
|
223
|
+
tags_url: str
|
|
224
|
+
teams_url: str
|
|
225
|
+
trees_url: str
|
|
226
|
+
clone_url: str
|
|
227
|
+
mirror_url: str
|
|
228
|
+
hooks_url: str
|
|
229
|
+
svn_url: str
|
|
230
|
+
homepage: str
|
|
231
|
+
language: str
|
|
232
|
+
forks_count: int
|
|
233
|
+
stargazers_count: int
|
|
234
|
+
watchers_count: int
|
|
235
|
+
size: int
|
|
236
|
+
default_branch: str
|
|
237
|
+
open_issues_count: int
|
|
238
|
+
is_template?: bool = false
|
|
239
|
+
topics?: [str]
|
|
240
|
+
custom_properties?: {str:any}
|
|
241
|
+
has_issues: bool = true
|
|
242
|
+
has_projects: bool = true
|
|
243
|
+
has_wiki: bool = true
|
|
244
|
+
has_pages: bool
|
|
245
|
+
has_downloads: bool = true
|
|
246
|
+
has_discussions?: bool = false
|
|
247
|
+
has_pull_requests?: bool = true
|
|
248
|
+
pull_request_creation_policy?: all | collaborators_only
|
|
249
|
+
archived: bool = false
|
|
250
|
+
disabled: bool
|
|
251
|
+
visibility?: str = "public"
|
|
252
|
+
pushed_at: datetime
|
|
253
|
+
created_at: datetime
|
|
254
|
+
updated_at: datetime
|
|
255
|
+
allow_rebase_merge?: bool = true
|
|
256
|
+
template_repository?: {id?: int, node_id?: str, name?: str, full_name?: str, owner?: {login?: str, id?: int, node_id?: str, avatar_url?: str, gravatar_id?: str, url?: str, html_url?: str, followers_url?: str, following_url?: str, gists_url?: str, starred_url?: str, subscriptions_url?: str, organizations_url?: str, repos_url?: str, events_url?: str, received_events_url?: str, type?: str, site_admin?: bool}, private?: bool, html_url?: str, description?: str, fork?: bool, url?: str, archive_url?: str, assignees_url?: str, blobs_url?: str, branches_url?: str, collaborators_url?: str, comments_url?: str, commits_url?: str, compare_url?: str, contents_url?: str, contributors_url?: str, deployments_url?: str, downloads_url?: str, events_url?: str, forks_url?: str, git_commits_url?: str, git_refs_url?: str, git_tags_url?: str, git_url?: str, issue_comment_url?: str, issue_events_url?: str, issues_url?: str, keys_url?: str, labels_url?: str, languages_url?: str, merges_url?: str, milestones_url?: str, notifications_url?: str, pulls_url?: str, releases_url?: str, ssh_url?: str, stargazers_url?: str, statuses_url?: str, subscribers_url?: str, subscription_url?: str, tags_url?: str, teams_url?: str, trees_url?: str, clone_url?: str, mirror_url?: str, hooks_url?: str, svn_url?: str, homepage?: str, language?: str, forks_count?: int, stargazers_count?: int, watchers_count?: int, size?: int, default_branch?: str, open_issues_count?: int, is_template?: bool, topics?: [str], has_issues?: bool, has_projects?: bool, has_wiki?: bool, has_pages?: bool, has_downloads?: bool, archived?: bool, disabled?: bool, visibility?: str, pushed_at?: str, created_at?: str, updated_at?: str, permissions?: {admin?: bool, maintain?: bool, push?: bool, triage?: bool, pull?: bool}, allow_rebase_merge?: bool, temp_clone_token?: str, allow_squash_merge?: bool, allow_auto_merge?: bool, delete_branch_on_merge?: bool, allow_update_branch?: bool, squash_merge_commit_title?: PR_TITLE | COMMIT_OR_PR_TITLE, squash_merge_commit_message?: PR_BODY | COMMIT_MESSAGES | BLANK, merge_commit_title?: PR_TITLE | MERGE_MESSAGE, merge_commit_message?: PR_BODY | PR_TITLE | BLANK, allow_merge_commit?: bool, subscribers_count?: int, network_count?: int}
|
|
257
|
+
temp_clone_token?: str
|
|
258
|
+
allow_squash_merge?: bool = true
|
|
259
|
+
allow_auto_merge?: bool = false
|
|
260
|
+
delete_branch_on_merge?: bool = false
|
|
261
|
+
allow_update_branch?: bool = false
|
|
262
|
+
squash_merge_commit_title?: PR_TITLE | COMMIT_OR_PR_TITLE
|
|
263
|
+
squash_merge_commit_message?: PR_BODY | COMMIT_MESSAGES | BLANK
|
|
264
|
+
merge_commit_title?: PR_TITLE | MERGE_MESSAGE
|
|
265
|
+
merge_commit_message?: PR_BODY | PR_TITLE | BLANK
|
|
266
|
+
allow_merge_commit?: bool = true
|
|
267
|
+
allow_forking?: bool
|
|
268
|
+
web_commit_signoff_required?: bool = false
|
|
269
|
+
subscribers_count?: int
|
|
270
|
+
network_count?: int
|
|
271
|
+
open_issues: int
|
|
272
|
+
watchers: int
|
|
273
|
+
starred_at?: str
|
|
274
|
+
anonymous_access_enabled?: bool
|
|
275
|
+
|
|
276
|
+
webhooks_user:
|
|
277
|
+
avatar_url?: str
|
|
278
|
+
deleted?: bool
|
|
279
|
+
email?: str
|
|
280
|
+
events_url?: str
|
|
281
|
+
followers_url?: str
|
|
282
|
+
following_url?: str
|
|
283
|
+
gists_url?: str
|
|
284
|
+
gravatar_id?: str
|
|
285
|
+
html_url?: str
|
|
286
|
+
id: int
|
|
287
|
+
login: str
|
|
288
|
+
name?: str
|
|
289
|
+
node_id?: str
|
|
290
|
+
organizations_url?: str
|
|
291
|
+
received_events_url?: str
|
|
292
|
+
repos_url?: str
|
|
293
|
+
site_admin?: bool
|
|
294
|
+
starred_url?: str
|
|
295
|
+
subscriptions_url?: str
|
|
296
|
+
type?: Bot | User | Organization
|
|
297
|
+
url?: str
|
|
298
|
+
user_view_type?: str
|
|
299
|
+
|
|
300
|
+
[webhooks]
|
|
301
|
+
installation/created -> POST /webhooks/installation-created
|
|
302
|
+
Someone installed a GitHub App on a user or organization account.
|
|
303
|
+
# This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event.
|
|
304
|
+
# For more information about GitHub Apps, see "[About apps](https://docs.github.com/developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/graphql/reference/objects#app) or "[Apps](https://docs.github.com/rest/apps)" in the REST API documentation.
|
|
305
|
+
< action: created
|
|
306
|
+
< enterprise?: enterprise-webhooks
|
|
307
|
+
< installation: installation
|
|
308
|
+
< organization?: organization-simple-webhooks
|
|
309
|
+
< repositories?: [{full_name: str, id: int, name: str, node_id: str, private: bool}]
|
|
310
|
+
< repository?: repository-webhooks
|
|
311
|
+
< requester?: webhooks_user
|
|
312
|
+
< sender: simple-user
|