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,403 @@
|
|
|
1
|
+
import { mkdir, writeFile } from "node:fs/promises";
|
|
2
|
+
import { basename, dirname, extname, join } from "node:path";
|
|
3
|
+
import posixPath from "node:path/posix";
|
|
4
|
+
import { emit } from "./emitter.js";
|
|
5
|
+
import type {
|
|
6
|
+
LapisDocument,
|
|
7
|
+
LapisError,
|
|
8
|
+
LapisField,
|
|
9
|
+
LapisOperation,
|
|
10
|
+
LapisType,
|
|
11
|
+
LapisWebhook,
|
|
12
|
+
OpenApiDocument,
|
|
13
|
+
} from "./models.js";
|
|
14
|
+
import { convert } from "./converter.js";
|
|
15
|
+
import { normalizeDescription, toSnakeCase, isRecord } from "./utils.js";
|
|
16
|
+
|
|
17
|
+
const UNTAGGED = "_untagged";
|
|
18
|
+
|
|
19
|
+
export interface MultiLapisWriteOptions {
|
|
20
|
+
outputDir?: string;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface MultiLapisBuildOptions {
|
|
24
|
+
truncateDescriptions?: boolean;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface GeneratedFile {
|
|
28
|
+
path: string;
|
|
29
|
+
content: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
interface TagInfo {
|
|
33
|
+
name: string;
|
|
34
|
+
slug: string;
|
|
35
|
+
description?: string;
|
|
36
|
+
ops: FileEntry<LapisOperation>[];
|
|
37
|
+
webhooks: FileEntry<LapisWebhook>[];
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
interface FileEntry<T> {
|
|
41
|
+
item: T;
|
|
42
|
+
kind: "operation" | "webhook";
|
|
43
|
+
filename: string;
|
|
44
|
+
summary?: string;
|
|
45
|
+
deprecatedEndpoint?: boolean;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export async function writeMultiLapis(
|
|
49
|
+
doc: OpenApiDocument,
|
|
50
|
+
inputPath: string,
|
|
51
|
+
options: MultiLapisWriteOptions = {},
|
|
52
|
+
): Promise<string> {
|
|
53
|
+
const outputDir = options.outputDir ?? defaultMultiLapisOutputPath(inputPath);
|
|
54
|
+
const files = buildMultiLapis(doc);
|
|
55
|
+
|
|
56
|
+
await mkdir(outputDir, { recursive: true });
|
|
57
|
+
for (const file of files) {
|
|
58
|
+
const outputPath = join(outputDir, file.path);
|
|
59
|
+
await mkdir(dirname(outputPath), { recursive: true });
|
|
60
|
+
await writeFile(outputPath, file.content, "utf8");
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
return outputDir;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function buildMultiLapis(
|
|
67
|
+
doc: OpenApiDocument,
|
|
68
|
+
options: MultiLapisBuildOptions = {},
|
|
69
|
+
): GeneratedFile[] {
|
|
70
|
+
const lapis = convert(doc, {
|
|
71
|
+
truncateDescriptions: options.truncateDescriptions ?? false,
|
|
72
|
+
});
|
|
73
|
+
const tagDescriptions = extractTagDescriptions(doc);
|
|
74
|
+
const tags = groupByTags(lapis, tagDescriptions);
|
|
75
|
+
const files: GeneratedFile[] = [
|
|
76
|
+
{
|
|
77
|
+
path: "index.md",
|
|
78
|
+
content: emitTopLevelIndex(lapis, tags),
|
|
79
|
+
},
|
|
80
|
+
];
|
|
81
|
+
|
|
82
|
+
for (const tag of tags) {
|
|
83
|
+
files.push({
|
|
84
|
+
path: posixPath.join(tag.slug, "index.md"),
|
|
85
|
+
content: emitTagIndex(tag),
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
for (const entry of tag.ops) {
|
|
89
|
+
const op = withDuplicateComments(entry, tag, tags);
|
|
90
|
+
files.push({
|
|
91
|
+
path: posixPath.join(tag.slug, entry.filename),
|
|
92
|
+
content: emit(singleOperationDocument(lapis, op)),
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
for (const entry of tag.webhooks) {
|
|
97
|
+
const webhook = withDuplicateComments(entry, tag, tags);
|
|
98
|
+
files.push({
|
|
99
|
+
path: posixPath.join(tag.slug, entry.filename),
|
|
100
|
+
content: emit(singleWebhookDocument(lapis, webhook)),
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
return files;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export function defaultMultiLapisOutputPath(input: string): string {
|
|
109
|
+
return join(dirname(input), basename(input, extname(input)));
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
function groupByTags(lapis: LapisDocument, tagDescriptions: Map<string, string>): TagInfo[] {
|
|
113
|
+
const tags = new Map<string, TagInfo>();
|
|
114
|
+
const deprecatedEndpointPaths = allDeprecatedEndpointPaths(lapis.ops);
|
|
115
|
+
|
|
116
|
+
for (const op of lapis.ops) {
|
|
117
|
+
const opTags = itemTags(op);
|
|
118
|
+
const baseSlug = slugify(op.name);
|
|
119
|
+
const filename = `${baseSlug}.op.lapis`;
|
|
120
|
+
for (const tagName of opTags) {
|
|
121
|
+
const tag = getTag(tags, tagName, tagDescriptions);
|
|
122
|
+
tag.ops.push({
|
|
123
|
+
item: op,
|
|
124
|
+
kind: "operation",
|
|
125
|
+
filename: uniqueFilename(filename, [...tag.ops, ...tag.webhooks]),
|
|
126
|
+
summary: itemSummary(op),
|
|
127
|
+
deprecatedEndpoint: deprecatedEndpointPaths.has(op.path),
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
for (const webhook of lapis.webhooks) {
|
|
133
|
+
const webhookTags = itemTags(webhook);
|
|
134
|
+
const baseSlug = slugify(webhook.name);
|
|
135
|
+
const filename = `${baseSlug}.webhook.lapis`;
|
|
136
|
+
for (const tagName of webhookTags) {
|
|
137
|
+
const tag = getTag(tags, tagName, tagDescriptions);
|
|
138
|
+
tag.webhooks.push({
|
|
139
|
+
item: webhook,
|
|
140
|
+
kind: "webhook",
|
|
141
|
+
filename: uniqueFilename(filename, [...tag.ops, ...tag.webhooks]),
|
|
142
|
+
summary: itemSummary(webhook),
|
|
143
|
+
});
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
return [...tags.values()].sort((a, b) => a.name.localeCompare(b.name));
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
function getTag(
|
|
151
|
+
tags: Map<string, TagInfo>,
|
|
152
|
+
name: string,
|
|
153
|
+
descriptions: Map<string, string>,
|
|
154
|
+
): TagInfo {
|
|
155
|
+
const slug = tagSlug(name);
|
|
156
|
+
const existing = tags.get(slug);
|
|
157
|
+
if (existing) return existing;
|
|
158
|
+
|
|
159
|
+
const tag: TagInfo = {
|
|
160
|
+
name,
|
|
161
|
+
slug,
|
|
162
|
+
description: descriptions.get(name),
|
|
163
|
+
ops: [],
|
|
164
|
+
webhooks: [],
|
|
165
|
+
};
|
|
166
|
+
tags.set(slug, tag);
|
|
167
|
+
return tag;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
function itemTags(item: { tags?: string[] }): string[] {
|
|
171
|
+
return item.tags && item.tags.length > 0 ? item.tags : [UNTAGGED];
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
function itemSummary(item: { description?: string; comments?: string[] }): string | undefined {
|
|
175
|
+
const candidates = [item.description, ...(item.comments ?? [])]
|
|
176
|
+
.map((value) => normalizeDescription(value)?.replace(/\n/g, " "))
|
|
177
|
+
.filter((value): value is string => Boolean(value));
|
|
178
|
+
if (candidates.length === 0) return undefined;
|
|
179
|
+
return candidates.sort((a, b) => a.length - b.length)[0];
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
function allDeprecatedEndpointPaths(ops: LapisOperation[]): Set<string> {
|
|
183
|
+
const byPath = new Map<string, LapisOperation[]>();
|
|
184
|
+
for (const op of ops) {
|
|
185
|
+
const pathOps = byPath.get(op.path);
|
|
186
|
+
if (pathOps) pathOps.push(op);
|
|
187
|
+
else byPath.set(op.path, [op]);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
const deprecatedPaths = new Set<string>();
|
|
191
|
+
for (const [path, pathOps] of byPath) {
|
|
192
|
+
if (pathOps.length > 0 && pathOps.every(isDeprecatedOperation)) deprecatedPaths.add(path);
|
|
193
|
+
}
|
|
194
|
+
return deprecatedPaths;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
function isDeprecatedOperation(op: LapisOperation): boolean {
|
|
198
|
+
return op.modifiers.some(
|
|
199
|
+
(modifier) => modifier === "+deprecated" || modifier.startsWith("+deprecated "),
|
|
200
|
+
);
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
function withDuplicateComments<T extends LapisOperation | LapisWebhook>(
|
|
204
|
+
entry: FileEntry<T>,
|
|
205
|
+
currentTag: TagInfo,
|
|
206
|
+
tags: TagInfo[],
|
|
207
|
+
): T {
|
|
208
|
+
const siblingPaths = findSiblingPaths(entry, currentTag, tags);
|
|
209
|
+
if (siblingPaths.length === 0) return entry.item;
|
|
210
|
+
|
|
211
|
+
const label = entry.kind === "webhook" ? "webhook" : "operation";
|
|
212
|
+
const preComments = siblingPaths.map((path) => `Same ${label} as ${path}`);
|
|
213
|
+
return { ...entry.item, preComments: [...preComments, ...(entry.item.preComments ?? [])] };
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
function findSiblingPaths<T extends LapisOperation | LapisWebhook>(
|
|
217
|
+
entry: FileEntry<T>,
|
|
218
|
+
currentTag: TagInfo,
|
|
219
|
+
tags: TagInfo[],
|
|
220
|
+
): string[] {
|
|
221
|
+
const siblings: string[] = [];
|
|
222
|
+
for (const tag of tags) {
|
|
223
|
+
if (tag.slug === currentTag.slug) continue;
|
|
224
|
+
const entries = entry.kind === "operation" ? tag.ops : tag.webhooks;
|
|
225
|
+
const sibling = entries.find((candidate) => candidate.item === entry.item);
|
|
226
|
+
if (sibling)
|
|
227
|
+
siblings.push(
|
|
228
|
+
posixPath.relative(currentTag.slug, posixPath.join(tag.slug, sibling.filename)),
|
|
229
|
+
);
|
|
230
|
+
}
|
|
231
|
+
return siblings;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
function singleOperationDocument(lapis: LapisDocument, op: LapisOperation): LapisDocument {
|
|
235
|
+
const errors = operationErrors(lapis, op);
|
|
236
|
+
return {
|
|
237
|
+
...lapis,
|
|
238
|
+
types: collectTypes(lapis.types, operationTypeRoots(op, errors, lapis.errorBaseType)),
|
|
239
|
+
ops: [op],
|
|
240
|
+
webhooks: [],
|
|
241
|
+
errors,
|
|
242
|
+
errorBaseType: errors.length > 0 ? lapis.errorBaseType : undefined,
|
|
243
|
+
flows: [],
|
|
244
|
+
limits: undefined,
|
|
245
|
+
};
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
function singleWebhookDocument(lapis: LapisDocument, webhook: LapisWebhook): LapisDocument {
|
|
249
|
+
return {
|
|
250
|
+
...lapis,
|
|
251
|
+
types: collectTypes(lapis.types, fieldsTypeRoots(webhook.outputs)),
|
|
252
|
+
ops: [],
|
|
253
|
+
webhooks: [webhook],
|
|
254
|
+
errors: [],
|
|
255
|
+
errorBaseType: undefined,
|
|
256
|
+
flows: [],
|
|
257
|
+
limits: undefined,
|
|
258
|
+
};
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
function operationErrors(lapis: LapisDocument, op: LapisOperation): LapisError[] {
|
|
262
|
+
return lapis.errors
|
|
263
|
+
.filter((error) => error.ops.length === 0 || error.ops.includes(op.name))
|
|
264
|
+
.map((error) => ({ ...error, ops: [] }));
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
function operationTypeRoots(
|
|
268
|
+
op: LapisOperation,
|
|
269
|
+
errors: LapisError[],
|
|
270
|
+
errorBaseType?: string,
|
|
271
|
+
): Set<string> {
|
|
272
|
+
const roots = fieldsTypeRoots([...op.inputs, ...op.outputs]);
|
|
273
|
+
if (op.outputRef) addTypeExprRoots(roots, op.outputRef);
|
|
274
|
+
for (const error of errors) addFieldRoots(roots, error.fields);
|
|
275
|
+
if (errors.length > 0 && errorBaseType) roots.add(errorBaseType);
|
|
276
|
+
return roots;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
function fieldsTypeRoots(fields: LapisField[]): Set<string> {
|
|
280
|
+
const roots = new Set<string>();
|
|
281
|
+
addFieldRoots(roots, fields);
|
|
282
|
+
return roots;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
function addFieldRoots(roots: Set<string>, fields: LapisField[]): void {
|
|
286
|
+
for (const field of fields) addTypeExprRoots(roots, field.typeExpr);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
function addTypeExprRoots(roots: Set<string>, typeExpr: string): void {
|
|
290
|
+
for (const token of typeExpr.split(/[\s[\]{}:,?|]+/)) {
|
|
291
|
+
const name = token.trim();
|
|
292
|
+
if (name) roots.add(name);
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
function collectTypes(types: LapisType[], roots: Set<string>): LapisType[] {
|
|
297
|
+
const byName = new Map(types.map((type) => [type.name, type]));
|
|
298
|
+
const needed = new Set<string>();
|
|
299
|
+
const queue = [...roots].filter((name) => byName.has(name));
|
|
300
|
+
|
|
301
|
+
for (let index = 0; index < queue.length; index += 1) {
|
|
302
|
+
const name = queue[index];
|
|
303
|
+
if (needed.has(name)) continue;
|
|
304
|
+
needed.add(name);
|
|
305
|
+
|
|
306
|
+
const type = byName.get(name);
|
|
307
|
+
if (!type || type.kind !== "object") continue;
|
|
308
|
+
for (const field of type.fields) {
|
|
309
|
+
for (const token of field.typeExpr.split(/[\s[\]{}:,?|]+/)) {
|
|
310
|
+
if (byName.has(token) && !needed.has(token)) queue.push(token);
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
return types.filter((type) => needed.has(type.name));
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
function emitTopLevelIndex(lapis: LapisDocument, tags: TagInfo[]): string {
|
|
319
|
+
const lines = [`# ${lapis.meta.api}`, ""];
|
|
320
|
+
if (lapis.meta.desc) lines.push(lapis.meta.desc, "");
|
|
321
|
+
if (lapis.meta.version) lines.push(`- Version: ${lapis.meta.version}`);
|
|
322
|
+
lines.push(`- Base URL: ${lapis.meta.base}`);
|
|
323
|
+
if (lapis.meta.auth) lines.push(`- Auth: ${lapis.meta.auth}`);
|
|
324
|
+
lines.push("", "## Tags", "");
|
|
325
|
+
for (const tag of tags) {
|
|
326
|
+
const count = tag.ops.length + tag.webhooks.length;
|
|
327
|
+
const href = tagIndexHref(tag);
|
|
328
|
+
lines.push(
|
|
329
|
+
tag.description
|
|
330
|
+
? `- [${tag.name}](${href}) - ${tag.description}`
|
|
331
|
+
: `- [${tag.name}](${href}) - ${count} entries`,
|
|
332
|
+
);
|
|
333
|
+
}
|
|
334
|
+
lines.push("");
|
|
335
|
+
return lines.join("\n");
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
function tagIndexHref(tag: TagInfo): string {
|
|
339
|
+
return `${tag.slug}/index.md`;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
function emitTagIndex(tag: TagInfo): string {
|
|
343
|
+
const lines = [`# ${tag.name}`, ""];
|
|
344
|
+
if (tag.description) lines.push(tag.description, "");
|
|
345
|
+
|
|
346
|
+
if (tag.ops.length) {
|
|
347
|
+
lines.push("## Operations", "");
|
|
348
|
+
for (const entry of tag.ops) lines.push(indexLine(entry));
|
|
349
|
+
lines.push("");
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
if (tag.webhooks.length) {
|
|
353
|
+
lines.push("## Webhooks", "");
|
|
354
|
+
for (const entry of tag.webhooks) lines.push(indexLine(entry));
|
|
355
|
+
lines.push("");
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
return lines.join("\n");
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
function indexLine(entry: FileEntry<LapisOperation | LapisWebhook>): string {
|
|
362
|
+
const deprecated = entry.deprecatedEndpoint ? ", deprecated" : "";
|
|
363
|
+
return entry.summary
|
|
364
|
+
? `- [${entry.item.name}](${entry.filename}) - ${entry.summary}${deprecated}`
|
|
365
|
+
: `- [${entry.item.name}](${entry.filename})${deprecated}`;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
function extractTagDescriptions(doc: OpenApiDocument): Map<string, string> {
|
|
369
|
+
const descriptions = new Map<string, string>();
|
|
370
|
+
if (!Array.isArray(doc.tags)) return descriptions;
|
|
371
|
+
for (const tag of doc.tags) {
|
|
372
|
+
if (!isRecord(tag) || typeof tag.name !== "string") continue;
|
|
373
|
+
const description = normalizeDescription(tag.description);
|
|
374
|
+
if (description) descriptions.set(tag.name, description);
|
|
375
|
+
}
|
|
376
|
+
return descriptions;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
function uniqueFilename(
|
|
380
|
+
filename: string,
|
|
381
|
+
entries: FileEntry<LapisOperation | LapisWebhook>[],
|
|
382
|
+
): string {
|
|
383
|
+
const used = new Set(entries.map((entry) => entry.filename));
|
|
384
|
+
if (!used.has(filename)) return filename;
|
|
385
|
+
|
|
386
|
+
const extension = filename.endsWith(".webhook.lapis") ? ".webhook.lapis" : ".op.lapis";
|
|
387
|
+
const base = filename.slice(0, -extension.length);
|
|
388
|
+
let index = 2;
|
|
389
|
+
let next = `${base}-${index}${extension}`;
|
|
390
|
+
while (used.has(next)) {
|
|
391
|
+
index += 1;
|
|
392
|
+
next = `${base}-${index}${extension}`;
|
|
393
|
+
}
|
|
394
|
+
return next;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
function tagSlug(name: string): string {
|
|
398
|
+
return name === UNTAGGED ? UNTAGGED : slugify(name);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
function slugify(value: string): string {
|
|
402
|
+
return toSnakeCase(value).replace(/_/g, "-") || UNTAGGED;
|
|
403
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import { readFile } from "node:fs/promises";
|
|
2
|
+
import { extname } from "node:path";
|
|
3
|
+
import { load as loadYaml } from "js-yaml";
|
|
4
|
+
import { isRecord } from "./utils.js";
|
|
5
|
+
import type { OpenApiDocument } from "./models.js";
|
|
6
|
+
import {
|
|
7
|
+
applyOpenApiOverlaySources,
|
|
8
|
+
applyOpenApiOverlays,
|
|
9
|
+
type OpenApiOverlaySource,
|
|
10
|
+
OpenApiOverlayError,
|
|
11
|
+
} from "./openapi-overlay.js";
|
|
12
|
+
|
|
13
|
+
export class OpenApiLoadError extends Error {}
|
|
14
|
+
|
|
15
|
+
export interface LoadOpenApiFromStringOptions {
|
|
16
|
+
skipValidation?: boolean;
|
|
17
|
+
overlays?: OpenApiOverlaySource[];
|
|
18
|
+
sourceName: string;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export async function loadOpenApi(
|
|
22
|
+
path: string,
|
|
23
|
+
options: { skipValidation?: boolean; overlayPaths?: string[] } = {},
|
|
24
|
+
): Promise<OpenApiDocument> {
|
|
25
|
+
let text: string;
|
|
26
|
+
try {
|
|
27
|
+
text = await readFile(path, "utf8");
|
|
28
|
+
} catch (error) {
|
|
29
|
+
throw new OpenApiLoadError(`File not found: ${path}`, { cause: error });
|
|
30
|
+
}
|
|
31
|
+
if (!options.overlayPaths || options.overlayPaths.length === 0) {
|
|
32
|
+
return loadOpenApiFromString(text, {
|
|
33
|
+
skipValidation: options.skipValidation,
|
|
34
|
+
sourceName: path,
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
let data: unknown;
|
|
39
|
+
try {
|
|
40
|
+
data = parseOpenApiText(text, path);
|
|
41
|
+
} catch (error) {
|
|
42
|
+
if (error instanceof OpenApiLoadError) throw error;
|
|
43
|
+
throw new OpenApiLoadError(
|
|
44
|
+
`Failed to parse ${path}: ${error instanceof Error ? error.message : String(error)}`,
|
|
45
|
+
{ cause: error },
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
if (!isRecord(data)) throw new OpenApiLoadError(`Expected a mapping at the root of ${path}`);
|
|
49
|
+
let doc: OpenApiDocument;
|
|
50
|
+
try {
|
|
51
|
+
doc = await applyOpenApiOverlays(data, options.overlayPaths);
|
|
52
|
+
} catch (error) {
|
|
53
|
+
if (error instanceof OpenApiOverlayError) {
|
|
54
|
+
throw new OpenApiLoadError(`OpenAPI overlay failed: ${error.message}`, { cause: error });
|
|
55
|
+
}
|
|
56
|
+
throw error;
|
|
57
|
+
}
|
|
58
|
+
checkOpenApiVersion(doc);
|
|
59
|
+
void options.skipValidation;
|
|
60
|
+
return doc;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export function loadOpenApiFromString(
|
|
64
|
+
text: string,
|
|
65
|
+
options: LoadOpenApiFromStringOptions,
|
|
66
|
+
): OpenApiDocument {
|
|
67
|
+
let data: unknown;
|
|
68
|
+
try {
|
|
69
|
+
data = parseOpenApiText(text, options.sourceName);
|
|
70
|
+
} catch (error) {
|
|
71
|
+
if (error instanceof OpenApiLoadError) throw error;
|
|
72
|
+
throw new OpenApiLoadError(
|
|
73
|
+
`Failed to parse ${options.sourceName}: ${
|
|
74
|
+
error instanceof Error ? error.message : String(error)
|
|
75
|
+
}`,
|
|
76
|
+
{ cause: error },
|
|
77
|
+
);
|
|
78
|
+
}
|
|
79
|
+
if (!isRecord(data))
|
|
80
|
+
throw new OpenApiLoadError(`Expected a mapping at the root of ${options.sourceName}`);
|
|
81
|
+
|
|
82
|
+
let doc: OpenApiDocument;
|
|
83
|
+
try {
|
|
84
|
+
doc = applyOpenApiOverlaySources(data, options.overlays);
|
|
85
|
+
} catch (error) {
|
|
86
|
+
if (error instanceof OpenApiOverlayError) {
|
|
87
|
+
throw new OpenApiLoadError(`OpenAPI overlay failed: ${error.message}`, { cause: error });
|
|
88
|
+
}
|
|
89
|
+
throw error;
|
|
90
|
+
}
|
|
91
|
+
checkOpenApiVersion(doc);
|
|
92
|
+
void options.skipValidation;
|
|
93
|
+
return doc;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export function detectOpenApiVersion(doc: OpenApiDocument): string {
|
|
97
|
+
return String(doc.openapi ?? "");
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function parseOpenApiText(text: string, sourceName: string): unknown {
|
|
101
|
+
return parse(extname(sourceName).toLowerCase(), text);
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function parse(suffix: string, text: string): unknown {
|
|
105
|
+
if (suffix === ".json") return JSON.parse(text);
|
|
106
|
+
if (suffix === ".yaml" || suffix === ".yml") return loadYaml(text);
|
|
107
|
+
throw new OpenApiLoadError(`Unsupported file extension: ${suffix} (expected .json, .yaml, .yml)`);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
function checkOpenApiVersion(data: Record<string, unknown>): void {
|
|
111
|
+
const version = String(data.openapi ?? "");
|
|
112
|
+
if (!(version.startsWith("3.0") || version.startsWith("3.1"))) {
|
|
113
|
+
throw new OpenApiLoadError(
|
|
114
|
+
`Unsupported OpenAPI version: ${JSON.stringify(version)}. Only 3.0.x and 3.1.x are supported.`,
|
|
115
|
+
);
|
|
116
|
+
}
|
|
117
|
+
}
|