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.
Files changed (1571) hide show
  1. package/.github/workflows/ci.yml +44 -0
  2. package/.prettierignore +2 -0
  3. package/.prettierrc +4 -0
  4. package/README.md +139 -0
  5. package/dist/bin/multilapis.d.ts +7 -0
  6. package/dist/bin/multilapis.js +132 -0
  7. package/dist/converter.d.ts +3 -0
  8. package/dist/converter.js +55 -0
  9. package/dist/emitter.d.ts +2 -0
  10. package/dist/emitter.js +203 -0
  11. package/dist/index.d.ts +10 -0
  12. package/dist/index.js +10 -0
  13. package/dist/models.d.ts +132 -0
  14. package/dist/models.js +1 -0
  15. package/dist/multilapis.d.ts +14 -0
  16. package/dist/multilapis.js +311 -0
  17. package/dist/openapi-loader.d.ts +15 -0
  18. package/dist/openapi-loader.js +91 -0
  19. package/dist/openapi-overlay.d.ts +14 -0
  20. package/dist/openapi-overlay.js +237 -0
  21. package/dist/ref-resolver.d.ts +6 -0
  22. package/dist/ref-resolver.js +86 -0
  23. package/dist/schema-flattener.d.ts +3 -0
  24. package/dist/schema-flattener.js +87 -0
  25. package/dist/sections.d.ts +14 -0
  26. package/dist/sections.js +624 -0
  27. package/dist/type-mapper.d.ts +6 -0
  28. package/dist/type-mapper.js +87 -0
  29. package/dist/utils.d.ts +13 -0
  30. package/dist/utils.js +57 -0
  31. package/docs/lapis.md +107 -0
  32. package/docs/multilapis.md +142 -0
  33. package/docs/openapi-overlays.md +230 -0
  34. package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-configuration-disabled.webhook.lapis +212 -0
  35. package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-configuration-enabled.webhook.lapis +212 -0
  36. package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-rule-created.webhook.lapis +241 -0
  37. package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-rule-deleted.webhook.lapis +241 -0
  38. package/examples/github/api.github.com.2026-03-10/_untagged/branch-protection-rule-edited.webhook.lapis +242 -0
  39. package/examples/github/api.github.com.2026-03-10/_untagged/check-run-completed.webhook.lapis +430 -0
  40. package/examples/github/api.github.com.2026-03-10/_untagged/check-run-created.webhook.lapis +430 -0
  41. package/examples/github/api.github.com.2026-03-10/_untagged/check-run-requested-action.webhook.lapis +431 -0
  42. package/examples/github/api.github.com.2026-03-10/_untagged/check-run-rerequested.webhook.lapis +430 -0
  43. package/examples/github/api.github.com.2026-03-10/_untagged/check-suite-completed.webhook.lapis +550 -0
  44. package/examples/github/api.github.com.2026-03-10/_untagged/check-suite-requested.webhook.lapis +550 -0
  45. package/examples/github/api.github.com.2026-03-10/_untagged/check-suite-rerequested.webhook.lapis +550 -0
  46. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-appeared-in-branch.webhook.lapis +234 -0
  47. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-closed-by-user.webhook.lapis +234 -0
  48. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-created.webhook.lapis +234 -0
  49. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-fixed.webhook.lapis +234 -0
  50. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-reopened-by-user.webhook.lapis +234 -0
  51. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-reopened.webhook.lapis +234 -0
  52. package/examples/github/api.github.com.2026-03-10/_untagged/code-scanning-alert-updated-assignment.webhook.lapis +232 -0
  53. package/examples/github/api.github.com.2026-03-10/_untagged/commit-comment-created.webhook.lapis +218 -0
  54. package/examples/github/api.github.com.2026-03-10/_untagged/create.webhook.lapis +223 -0
  55. package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-created.webhook.lapis +99 -0
  56. package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-deleted.webhook.lapis +75 -0
  57. package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-promote-to-enterprise.webhook.lapis +99 -0
  58. package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-updated.webhook.lapis +99 -0
  59. package/examples/github/api.github.com.2026-03-10/_untagged/custom-property-values-updated.webhook.lapis +213 -0
  60. package/examples/github/api.github.com.2026-03-10/_untagged/delete.webhook.lapis +221 -0
  61. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-assignees-changed.webhook.lapis +409 -0
  62. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-auto-dismissed.webhook.lapis +409 -0
  63. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-auto-reopened.webhook.lapis +409 -0
  64. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-created.webhook.lapis +409 -0
  65. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-dismissed.webhook.lapis +409 -0
  66. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-fixed.webhook.lapis +409 -0
  67. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-reintroduced.webhook.lapis +409 -0
  68. package/examples/github/api.github.com.2026-03-10/_untagged/dependabot-alert-reopened.webhook.lapis +409 -0
  69. package/examples/github/api.github.com.2026-03-10/_untagged/deploy-key-created.webhook.lapis +223 -0
  70. package/examples/github/api.github.com.2026-03-10/_untagged/deploy-key-deleted.webhook.lapis +223 -0
  71. package/examples/github/api.github.com.2026-03-10/_untagged/deployment-created.webhook.lapis +594 -0
  72. package/examples/github/api.github.com.2026-03-10/_untagged/deployment-protection-rule-requested.webhook.lapis +542 -0
  73. package/examples/github/api.github.com.2026-03-10/_untagged/deployment-review-approved.webhook.lapis +398 -0
  74. package/examples/github/api.github.com.2026-03-10/_untagged/deployment-review-rejected.webhook.lapis +398 -0
  75. package/examples/github/api.github.com.2026-03-10/_untagged/deployment-review-requested.webhook.lapis +390 -0
  76. package/examples/github/api.github.com.2026-03-10/_untagged/deployment-status-created.webhook.lapis +598 -0
  77. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-answered.webhook.lapis +300 -0
  78. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-category-changed.webhook.lapis +285 -0
  79. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-closed.webhook.lapis +284 -0
  80. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-comment-created.webhook.lapis +300 -0
  81. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-comment-deleted.webhook.lapis +300 -0
  82. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-comment-edited.webhook.lapis +301 -0
  83. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-created.webhook.lapis +284 -0
  84. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-deleted.webhook.lapis +284 -0
  85. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-edited.webhook.lapis +285 -0
  86. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-labeled.webhook.lapis +294 -0
  87. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-locked.webhook.lapis +284 -0
  88. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-pinned.webhook.lapis +284 -0
  89. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-reopened.webhook.lapis +284 -0
  90. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-transferred.webhook.lapis +316 -0
  91. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unanswered.webhook.lapis +282 -0
  92. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unlabeled.webhook.lapis +294 -0
  93. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unlocked.webhook.lapis +284 -0
  94. package/examples/github/api.github.com.2026-03-10/_untagged/discussion-unpinned.webhook.lapis +284 -0
  95. package/examples/github/api.github.com.2026-03-10/_untagged/fork.webhook.lapis +223 -0
  96. package/examples/github/api.github.com.2026-03-10/_untagged/github-app-authorization-revoked.webhook.lapis +41 -0
  97. package/examples/github/api.github.com.2026-03-10/_untagged/gollum.webhook.lapis +208 -0
  98. package/examples/github/api.github.com.2026-03-10/_untagged/index.md +269 -0
  99. package/examples/github/api.github.com.2026-03-10/_untagged/installation-created.webhook.lapis +312 -0
  100. package/examples/github/api.github.com.2026-03-10/_untagged/installation-deleted.webhook.lapis +288 -0
  101. package/examples/github/api.github.com.2026-03-10/_untagged/installation-new-permissions-accepted.webhook.lapis +288 -0
  102. package/examples/github/api.github.com.2026-03-10/_untagged/installation-repositories-added.webhook.lapis +316 -0
  103. package/examples/github/api.github.com.2026-03-10/_untagged/installation-repositories-removed.webhook.lapis +316 -0
  104. package/examples/github/api.github.com.2026-03-10/_untagged/installation-suspend.webhook.lapis +288 -0
  105. package/examples/github/api.github.com.2026-03-10/_untagged/installation-target-renamed.webhook.lapis +212 -0
  106. package/examples/github/api.github.com.2026-03-10/_untagged/installation-unsuspend.webhook.lapis +288 -0
  107. package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-created.webhook.lapis +239 -0
  108. package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-deleted.webhook.lapis +314 -0
  109. package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-edited.webhook.lapis +318 -0
  110. package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-pinned.webhook.lapis +314 -0
  111. package/examples/github/api.github.com.2026-03-10/_untagged/issue-comment-unpinned.webhook.lapis +314 -0
  112. package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocked-by-added.webhook.lapis +451 -0
  113. package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocked-by-removed.webhook.lapis +451 -0
  114. package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocking-added.webhook.lapis +451 -0
  115. package/examples/github/api.github.com.2026-03-10/_untagged/issue-dependencies-blocking-removed.webhook.lapis +451 -0
  116. package/examples/github/api.github.com.2026-03-10/_untagged/issues-assigned.webhook.lapis +665 -0
  117. package/examples/github/api.github.com.2026-03-10/_untagged/issues-closed.webhook.lapis +238 -0
  118. package/examples/github/api.github.com.2026-03-10/_untagged/issues-deleted.webhook.lapis +547 -0
  119. package/examples/github/api.github.com.2026-03-10/_untagged/issues-demilestoned.webhook.lapis +566 -0
  120. package/examples/github/api.github.com.2026-03-10/_untagged/issues-edited.webhook.lapis +558 -0
  121. package/examples/github/api.github.com.2026-03-10/_untagged/issues-field-added.webhook.lapis +667 -0
  122. package/examples/github/api.github.com.2026-03-10/_untagged/issues-field-removed.webhook.lapis +666 -0
  123. package/examples/github/api.github.com.2026-03-10/_untagged/issues-labeled.webhook.lapis +557 -0
  124. package/examples/github/api.github.com.2026-03-10/_untagged/issues-locked.webhook.lapis +547 -0
  125. package/examples/github/api.github.com.2026-03-10/_untagged/issues-milestoned.webhook.lapis +566 -0
  126. package/examples/github/api.github.com.2026-03-10/_untagged/issues-opened.webhook.lapis +573 -0
  127. package/examples/github/api.github.com.2026-03-10/_untagged/issues-pinned.webhook.lapis +664 -0
  128. package/examples/github/api.github.com.2026-03-10/_untagged/issues-reopened.webhook.lapis +547 -0
  129. package/examples/github/api.github.com.2026-03-10/_untagged/issues-transferred.webhook.lapis +690 -0
  130. package/examples/github/api.github.com.2026-03-10/_untagged/issues-typed.webhook.lapis +665 -0
  131. package/examples/github/api.github.com.2026-03-10/_untagged/issues-unassigned.webhook.lapis +689 -0
  132. package/examples/github/api.github.com.2026-03-10/_untagged/issues-unlabeled.webhook.lapis +674 -0
  133. package/examples/github/api.github.com.2026-03-10/_untagged/issues-unlocked.webhook.lapis +547 -0
  134. package/examples/github/api.github.com.2026-03-10/_untagged/issues-unpinned.webhook.lapis +664 -0
  135. package/examples/github/api.github.com.2026-03-10/_untagged/issues-untyped.webhook.lapis +665 -0
  136. package/examples/github/api.github.com.2026-03-10/_untagged/label-created.webhook.lapis +221 -0
  137. package/examples/github/api.github.com.2026-03-10/_untagged/label-deleted.webhook.lapis +221 -0
  138. package/examples/github/api.github.com.2026-03-10/_untagged/label-edited.webhook.lapis +222 -0
  139. package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-cancelled.webhook.lapis +230 -0
  140. package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-changed.webhook.lapis +221 -0
  141. package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-pending-change-cancelled.webhook.lapis +221 -0
  142. package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-pending-change.webhook.lapis +221 -0
  143. package/examples/github/api.github.com.2026-03-10/_untagged/marketplace-purchase-purchased.webhook.lapis +230 -0
  144. package/examples/github/api.github.com.2026-03-10/_untagged/member-added.webhook.lapis +236 -0
  145. package/examples/github/api.github.com.2026-03-10/_untagged/member-edited.webhook.lapis +236 -0
  146. package/examples/github/api.github.com.2026-03-10/_untagged/member-removed.webhook.lapis +235 -0
  147. package/examples/github/api.github.com.2026-03-10/_untagged/membership-added.webhook.lapis +312 -0
  148. package/examples/github/api.github.com.2026-03-10/_untagged/membership-removed.webhook.lapis +312 -0
  149. package/examples/github/api.github.com.2026-03-10/_untagged/meta-deleted.webhook.lapis +677 -0
  150. package/examples/github/api.github.com.2026-03-10/_untagged/milestone-closed.webhook.lapis +254 -0
  151. package/examples/github/api.github.com.2026-03-10/_untagged/milestone-created.webhook.lapis +254 -0
  152. package/examples/github/api.github.com.2026-03-10/_untagged/milestone-deleted.webhook.lapis +254 -0
  153. package/examples/github/api.github.com.2026-03-10/_untagged/milestone-edited.webhook.lapis +255 -0
  154. package/examples/github/api.github.com.2026-03-10/_untagged/milestone-opened.webhook.lapis +254 -0
  155. package/examples/github/api.github.com.2026-03-10/_untagged/org-block-blocked.webhook.lapis +236 -0
  156. package/examples/github/api.github.com.2026-03-10/_untagged/org-block-unblocked.webhook.lapis +236 -0
  157. package/examples/github/api.github.com.2026-03-10/_untagged/organization-deleted.webhook.lapis +245 -0
  158. package/examples/github/api.github.com.2026-03-10/_untagged/organization-member-added.webhook.lapis +245 -0
  159. package/examples/github/api.github.com.2026-03-10/_untagged/organization-member-invited.webhook.lapis +243 -0
  160. package/examples/github/api.github.com.2026-03-10/_untagged/organization-member-removed.webhook.lapis +245 -0
  161. package/examples/github/api.github.com.2026-03-10/_untagged/organization-renamed.webhook.lapis +246 -0
  162. package/examples/github/api.github.com.2026-03-10/_untagged/package-published.webhook.lapis +402 -0
  163. package/examples/github/api.github.com.2026-03-10/_untagged/package-updated.webhook.lapis +279 -0
  164. package/examples/github/api.github.com.2026-03-10/_untagged/page-build.webhook.lapis +261 -0
  165. package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-approved.webhook.lapis +195 -0
  166. package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-cancelled.webhook.lapis +195 -0
  167. package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-created.webhook.lapis +195 -0
  168. package/examples/github/api.github.com.2026-03-10/_untagged/personal-access-token-request-denied.webhook.lapis +195 -0
  169. package/examples/github/api.github.com.2026-03-10/_untagged/ping.webhook.lapis +205 -0
  170. package/examples/github/api.github.com.2026-03-10/_untagged/project-card-converted.webhook.lapis +253 -0
  171. package/examples/github/api.github.com.2026-03-10/_untagged/project-card-created.webhook.lapis +252 -0
  172. package/examples/github/api.github.com.2026-03-10/_untagged/project-card-deleted.webhook.lapis +219 -0
  173. package/examples/github/api.github.com.2026-03-10/_untagged/project-card-edited.webhook.lapis +253 -0
  174. package/examples/github/api.github.com.2026-03-10/_untagged/project-card-moved.webhook.lapis +214 -0
  175. package/examples/github/api.github.com.2026-03-10/_untagged/project-closed.webhook.lapis +252 -0
  176. package/examples/github/api.github.com.2026-03-10/_untagged/project-column-created.webhook.lapis +224 -0
  177. package/examples/github/api.github.com.2026-03-10/_untagged/project-column-deleted.webhook.lapis +224 -0
  178. package/examples/github/api.github.com.2026-03-10/_untagged/project-column-edited.webhook.lapis +225 -0
  179. package/examples/github/api.github.com.2026-03-10/_untagged/project-column-moved.webhook.lapis +224 -0
  180. package/examples/github/api.github.com.2026-03-10/_untagged/project-created.webhook.lapis +252 -0
  181. package/examples/github/api.github.com.2026-03-10/_untagged/project-deleted.webhook.lapis +252 -0
  182. package/examples/github/api.github.com.2026-03-10/_untagged/project-edited.webhook.lapis +253 -0
  183. package/examples/github/api.github.com.2026-03-10/_untagged/project-reopened.webhook.lapis +252 -0
  184. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-closed.webhook.lapis +119 -0
  185. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-created.webhook.lapis +119 -0
  186. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-deleted.webhook.lapis +119 -0
  187. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-edited.webhook.lapis +120 -0
  188. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-archived.webhook.lapis +85 -0
  189. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-converted.webhook.lapis +78 -0
  190. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-created.webhook.lapis +77 -0
  191. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-deleted.webhook.lapis +77 -0
  192. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-edited.webhook.lapis +78 -0
  193. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-reordered.webhook.lapis +78 -0
  194. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-item-restored.webhook.lapis +85 -0
  195. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-reopened.webhook.lapis +119 -0
  196. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-status-update-created.webhook.lapis +76 -0
  197. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-status-update-deleted.webhook.lapis +76 -0
  198. package/examples/github/api.github.com.2026-03-10/_untagged/projects-v2-status-update-edited.webhook.lapis +114 -0
  199. package/examples/github/api.github.com.2026-03-10/_untagged/public.webhook.lapis +207 -0
  200. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-assigned.webhook.lapis +544 -0
  201. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-auto-merge-disabled.webhook.lapis +520 -0
  202. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-auto-merge-enabled.webhook.lapis +520 -0
  203. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-closed.webhook.lapis +593 -0
  204. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-converted-to-draft.webhook.lapis +593 -0
  205. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-demilestoned.webhook.lapis +594 -0
  206. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-dequeued.webhook.lapis +520 -0
  207. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-edited.webhook.lapis +594 -0
  208. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-enqueued.webhook.lapis +519 -0
  209. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-labeled.webhook.lapis +529 -0
  210. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-locked.webhook.lapis +519 -0
  211. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-milestoned.webhook.lapis +594 -0
  212. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-opened.webhook.lapis +593 -0
  213. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-ready-for-review.webhook.lapis +593 -0
  214. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-reopened.webhook.lapis +593 -0
  215. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-comment-created.webhook.lapis +519 -0
  216. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-comment-deleted.webhook.lapis +572 -0
  217. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-comment-edited.webhook.lapis +576 -0
  218. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-dismissed.webhook.lapis +519 -0
  219. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-edited.webhook.lapis +558 -0
  220. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-request-removed.webhook.lapis +14 -0
  221. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-requested.webhook.lapis +14 -0
  222. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-submitted.webhook.lapis +557 -0
  223. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-thread-resolved.webhook.lapis +520 -0
  224. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-review-thread-unresolved.webhook.lapis +520 -0
  225. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-synchronize.webhook.lapis +521 -0
  226. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-unassigned.webhook.lapis +544 -0
  227. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-unlabeled.webhook.lapis +529 -0
  228. package/examples/github/api.github.com.2026-03-10/_untagged/pull-request-unlocked.webhook.lapis +519 -0
  229. package/examples/github/api.github.com.2026-03-10/_untagged/push.webhook.lapis +115 -0
  230. package/examples/github/api.github.com.2026-03-10/_untagged/registry-package-published.webhook.lapis +399 -0
  231. package/examples/github/api.github.com.2026-03-10/_untagged/registry-package-updated.webhook.lapis +276 -0
  232. package/examples/github/api.github.com.2026-03-10/_untagged/release-created.webhook.lapis +287 -0
  233. package/examples/github/api.github.com.2026-03-10/_untagged/release-deleted.webhook.lapis +287 -0
  234. package/examples/github/api.github.com.2026-03-10/_untagged/release-edited.webhook.lapis +288 -0
  235. package/examples/github/api.github.com.2026-03-10/_untagged/release-prereleased.webhook.lapis +226 -0
  236. package/examples/github/api.github.com.2026-03-10/_untagged/release-published.webhook.lapis +287 -0
  237. package/examples/github/api.github.com.2026-03-10/_untagged/release-released.webhook.lapis +287 -0
  238. package/examples/github/api.github.com.2026-03-10/_untagged/release-unpublished.webhook.lapis +287 -0
  239. package/examples/github/api.github.com.2026-03-10/_untagged/repository-advisory-published.webhook.lapis +361 -0
  240. package/examples/github/api.github.com.2026-03-10/_untagged/repository-advisory-reported.webhook.lapis +361 -0
  241. package/examples/github/api.github.com.2026-03-10/_untagged/repository-archived.webhook.lapis +210 -0
  242. package/examples/github/api.github.com.2026-03-10/_untagged/repository-created.webhook.lapis +210 -0
  243. package/examples/github/api.github.com.2026-03-10/_untagged/repository-deleted.webhook.lapis +210 -0
  244. package/examples/github/api.github.com.2026-03-10/_untagged/repository-dispatch-sample-collected.webhook.lapis +210 -0
  245. package/examples/github/api.github.com.2026-03-10/_untagged/repository-edited.webhook.lapis +211 -0
  246. package/examples/github/api.github.com.2026-03-10/_untagged/repository-import.webhook.lapis +208 -0
  247. package/examples/github/api.github.com.2026-03-10/_untagged/repository-privatized.webhook.lapis +210 -0
  248. package/examples/github/api.github.com.2026-03-10/_untagged/repository-publicized.webhook.lapis +210 -0
  249. package/examples/github/api.github.com.2026-03-10/_untagged/repository-renamed.webhook.lapis +308 -0
  250. package/examples/github/api.github.com.2026-03-10/_untagged/repository-ruleset-created.webhook.lapis +346 -0
  251. package/examples/github/api.github.com.2026-03-10/_untagged/repository-ruleset-deleted.webhook.lapis +346 -0
  252. package/examples/github/api.github.com.2026-03-10/_untagged/repository-ruleset-edited.webhook.lapis +347 -0
  253. package/examples/github/api.github.com.2026-03-10/_untagged/repository-transferred.webhook.lapis +217 -0
  254. package/examples/github/api.github.com.2026-03-10/_untagged/repository-unarchived.webhook.lapis +210 -0
  255. package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-create.webhook.lapis +237 -0
  256. package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-dismiss.webhook.lapis +218 -0
  257. package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-reopen.webhook.lapis +237 -0
  258. package/examples/github/api.github.com.2026-03-10/_untagged/repository-vulnerability-alert-resolve.webhook.lapis +218 -0
  259. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-assigned.webhook.lapis +245 -0
  260. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-created.webhook.lapis +244 -0
  261. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-location-created.webhook.lapis +276 -0
  262. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-publicly-leaked.webhook.lapis +244 -0
  263. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-reopened.webhook.lapis +244 -0
  264. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-resolved.webhook.lapis +244 -0
  265. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-unassigned.webhook.lapis +245 -0
  266. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-alert-validated.webhook.lapis +244 -0
  267. package/examples/github/api.github.com.2026-03-10/_untagged/secret-scanning-scan-completed.webhook.lapis +328 -0
  268. package/examples/github/api.github.com.2026-03-10/_untagged/security-advisory-published.webhook.lapis +239 -0
  269. package/examples/github/api.github.com.2026-03-10/_untagged/security-advisory-updated.webhook.lapis +239 -0
  270. package/examples/github/api.github.com.2026-03-10/_untagged/security-advisory-withdrawn.webhook.lapis +347 -0
  271. package/examples/github/api.github.com.2026-03-10/_untagged/security-and-analysis.webhook.lapis +437 -0
  272. package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-cancelled.webhook.lapis +265 -0
  273. package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-created.webhook.lapis +265 -0
  274. package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-edited.webhook.lapis +266 -0
  275. package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-pending-cancellation.webhook.lapis +266 -0
  276. package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-pending-tier-change.webhook.lapis +270 -0
  277. package/examples/github/api.github.com.2026-03-10/_untagged/sponsorship-tier-changed.webhook.lapis +269 -0
  278. package/examples/github/api.github.com.2026-03-10/_untagged/star-created.webhook.lapis +211 -0
  279. package/examples/github/api.github.com.2026-03-10/_untagged/star-deleted.webhook.lapis +211 -0
  280. package/examples/github/api.github.com.2026-03-10/_untagged/status.webhook.lapis +258 -0
  281. package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-parent-issue-added.webhook.lapis +451 -0
  282. package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-parent-issue-removed.webhook.lapis +451 -0
  283. package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-sub-issue-added.webhook.lapis +451 -0
  284. package/examples/github/api.github.com.2026-03-10/_untagged/sub-issues-sub-issue-removed.webhook.lapis +451 -0
  285. package/examples/github/api.github.com.2026-03-10/_untagged/team-add.webhook.lapis +239 -0
  286. package/examples/github/api.github.com.2026-03-10/_untagged/team-added-to-repository.webhook.lapis +140 -0
  287. package/examples/github/api.github.com.2026-03-10/_untagged/team-created.webhook.lapis +140 -0
  288. package/examples/github/api.github.com.2026-03-10/_untagged/team-deleted.webhook.lapis +140 -0
  289. package/examples/github/api.github.com.2026-03-10/_untagged/team-edited.webhook.lapis +246 -0
  290. package/examples/github/api.github.com.2026-03-10/_untagged/team-removed-from-repository.webhook.lapis +140 -0
  291. package/examples/github/api.github.com.2026-03-10/_untagged/watch-started.webhook.lapis +210 -0
  292. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-dispatch.webhook.lapis +210 -0
  293. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-completed.webhook.lapis +264 -0
  294. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-in-progress.webhook.lapis +264 -0
  295. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-queued.webhook.lapis +264 -0
  296. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-job-waiting.webhook.lapis +264 -0
  297. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-run-completed.webhook.lapis +359 -0
  298. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-run-in-progress.webhook.lapis +359 -0
  299. package/examples/github/api.github.com.2026-03-10/_untagged/workflow-run-requested.webhook.lapis +359 -0
  300. package/examples/github/api.github.com.2026-03-10/actions/actions-add-custom-labels-to-self-hosted-runner-for-org.op.lapis +39 -0
  301. package/examples/github/api.github.com.2026-03-10/actions/actions-add-custom-labels-to-self-hosted-runner-for-repo.op.lapis +40 -0
  302. 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
  303. package/examples/github/api.github.com.2026-03-10/actions/actions-add-selected-repo-to-org-secret.op.lapis +22 -0
  304. package/examples/github/api.github.com.2026-03-10/actions/actions-add-selected-repo-to-org-variable.op.lapis +21 -0
  305. package/examples/github/api.github.com.2026-03-10/actions/actions-add-self-hosted-runner-to-group-for-org.op.lapis +16 -0
  306. package/examples/github/api.github.com.2026-03-10/actions/actions-approve-workflow-run.op.lapis +35 -0
  307. package/examples/github/api.github.com.2026-03-10/actions/actions-cancel-workflow-run.op.lapis +28 -0
  308. package/examples/github/api.github.com.2026-03-10/actions/actions-create-environment-variable.op.lapis +23 -0
  309. package/examples/github/api.github.com.2026-03-10/actions/actions-create-hosted-runner-for-org.op.lapis +55 -0
  310. package/examples/github/api.github.com.2026-03-10/actions/actions-create-or-update-environment-secret.op.lapis +25 -0
  311. package/examples/github/api.github.com.2026-03-10/actions/actions-create-or-update-org-secret.op.lapis +25 -0
  312. package/examples/github/api.github.com.2026-03-10/actions/actions-create-or-update-repo-secret.op.lapis +24 -0
  313. package/examples/github/api.github.com.2026-03-10/actions/actions-create-org-variable.op.lapis +23 -0
  314. package/examples/github/api.github.com.2026-03-10/actions/actions-create-registration-token-for-org.op.lapis +158 -0
  315. package/examples/github/api.github.com.2026-03-10/actions/actions-create-registration-token-for-repo.op.lapis +159 -0
  316. package/examples/github/api.github.com.2026-03-10/actions/actions-create-remove-token-for-org.op.lapis +158 -0
  317. package/examples/github/api.github.com.2026-03-10/actions/actions-create-remove-token-for-repo.op.lapis +159 -0
  318. package/examples/github/api.github.com.2026-03-10/actions/actions-create-repo-variable.op.lapis +22 -0
  319. package/examples/github/api.github.com.2026-03-10/actions/actions-create-self-hosted-runner-group-for-org.op.lapis +40 -0
  320. package/examples/github/api.github.com.2026-03-10/actions/actions-create-workflow-dispatch.op.lapis +26 -0
  321. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-actions-cache-by-id.op.lapis +16 -0
  322. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-actions-cache-by-key.op.lapis +33 -0
  323. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-artifact.op.lapis +16 -0
  324. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-custom-image-from-org.op.lapis +15 -0
  325. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-custom-image-version-from-org.op.lapis +16 -0
  326. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-environment-secret.op.lapis +18 -0
  327. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-environment-variable.op.lapis +18 -0
  328. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-hosted-runner-for-org.op.lapis +48 -0
  329. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-org-secret.op.lapis +16 -0
  330. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-org-variable.op.lapis +16 -0
  331. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-repo-secret.op.lapis +17 -0
  332. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-repo-variable.op.lapis +17 -0
  333. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-self-hosted-runner-from-org.op.lapis +23 -0
  334. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-self-hosted-runner-from-repo.op.lapis +24 -0
  335. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-self-hosted-runner-group-from-org.op.lapis +15 -0
  336. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-workflow-run-logs.op.lapis +31 -0
  337. package/examples/github/api.github.com.2026-03-10/actions/actions-delete-workflow-run.op.lapis +17 -0
  338. package/examples/github/api.github.com.2026-03-10/actions/actions-disable-selected-repository-github-actions-organization.op.lapis +15 -0
  339. package/examples/github/api.github.com.2026-03-10/actions/actions-disable-selected-repository-self-hosted-runners-organization.op.lapis +43 -0
  340. package/examples/github/api.github.com.2026-03-10/actions/actions-disable-workflow.op.lapis +16 -0
  341. package/examples/github/api.github.com.2026-03-10/actions/actions-download-artifact.op.lapis +25 -0
  342. package/examples/github/api.github.com.2026-03-10/actions/actions-download-job-logs-for-workflow-run.op.lapis +18 -0
  343. package/examples/github/api.github.com.2026-03-10/actions/actions-download-workflow-run-attempt-logs.op.lapis +19 -0
  344. package/examples/github/api.github.com.2026-03-10/actions/actions-download-workflow-run-logs.op.lapis +18 -0
  345. package/examples/github/api.github.com.2026-03-10/actions/actions-enable-selected-repository-github-actions-organization.op.lapis +15 -0
  346. package/examples/github/api.github.com.2026-03-10/actions/actions-enable-selected-repository-self-hosted-runners-organization.op.lapis +43 -0
  347. package/examples/github/api.github.com.2026-03-10/actions/actions-enable-workflow.op.lapis +16 -0
  348. package/examples/github/api.github.com.2026-03-10/actions/actions-force-cancel-workflow-run.op.lapis +29 -0
  349. package/examples/github/api.github.com.2026-03-10/actions/actions-generate-runner-jitconfig-for-org.op.lapis +59 -0
  350. package/examples/github/api.github.com.2026-03-10/actions/actions-generate-runner-jitconfig-for-repo.op.lapis +60 -0
  351. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-list.op.lapis +37 -0
  352. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-retention-limit-for-enterprise.op.lapis +35 -0
  353. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-retention-limit-for-organization.op.lapis +35 -0
  354. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-retention-limit-for-repository.op.lapis +36 -0
  355. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-storage-limit-for-enterprise.op.lapis +35 -0
  356. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-storage-limit-for-organization.op.lapis +35 -0
  357. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-storage-limit-for-repository.op.lapis +36 -0
  358. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-usage-by-repo-for-org.op.lapis +25 -0
  359. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-usage-for-org.op.lapis +21 -0
  360. package/examples/github/api.github.com.2026-03-10/actions/actions-get-actions-cache-usage.op.lapis +24 -0
  361. package/examples/github/api.github.com.2026-03-10/actions/actions-get-allowed-actions-organization.op.lapis +21 -0
  362. package/examples/github/api.github.com.2026-03-10/actions/actions-get-allowed-actions-repository.op.lapis +22 -0
  363. package/examples/github/api.github.com.2026-03-10/actions/actions-get-artifact-and-log-retention-settings-organization.op.lapis +35 -0
  364. package/examples/github/api.github.com.2026-03-10/actions/actions-get-artifact-and-log-retention-settings-repository.op.lapis +29 -0
  365. package/examples/github/api.github.com.2026-03-10/actions/actions-get-artifact.op.lapis +33 -0
  366. package/examples/github/api.github.com.2026-03-10/actions/actions-get-concurrency-group-for-repository.op.lapis +86 -0
  367. package/examples/github/api.github.com.2026-03-10/actions/actions-get-custom-image-for-org.op.lapis +27 -0
  368. package/examples/github/api.github.com.2026-03-10/actions/actions-get-custom-image-version-for-org.op.lapis +25 -0
  369. package/examples/github/api.github.com.2026-03-10/actions/actions-get-custom-oidc-sub-claim-for-repo.op.lapis +38 -0
  370. package/examples/github/api.github.com.2026-03-10/actions/actions-get-environment-public-key.op.lapis +28 -0
  371. package/examples/github/api.github.com.2026-03-10/actions/actions-get-environment-secret.op.lapis +25 -0
  372. package/examples/github/api.github.com.2026-03-10/actions/actions-get-environment-variable.op.lapis +26 -0
  373. package/examples/github/api.github.com.2026-03-10/actions/actions-get-fork-pr-contributor-approval-permissions-organization.op.lapis +27 -0
  374. package/examples/github/api.github.com.2026-03-10/actions/actions-get-fork-pr-contributor-approval-permissions-repository.op.lapis +28 -0
  375. package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-default-workflow-permissions-organization.op.lapis +24 -0
  376. package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-default-workflow-permissions-repository.op.lapis +25 -0
  377. package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-permissions-organization.op.lapis +27 -0
  378. package/examples/github/api.github.com.2026-03-10/actions/actions-get-github-actions-permissions-repository.op.lapis +25 -0
  379. package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runner-for-org.op.lapis +49 -0
  380. package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-github-owned-images-for-org.op.lapis +23 -0
  381. package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-limits-for-org.op.lapis +18 -0
  382. package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-machine-specs-for-org.op.lapis +22 -0
  383. package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-partner-images-for-org.op.lapis +23 -0
  384. package/examples/github/api.github.com.2026-03-10/actions/actions-get-hosted-runners-platforms-for-org.op.lapis +15 -0
  385. package/examples/github/api.github.com.2026-03-10/actions/actions-get-job-for-workflow-run.op.lapis +81 -0
  386. package/examples/github/api.github.com.2026-03-10/actions/actions-get-org-public-key.op.lapis +26 -0
  387. package/examples/github/api.github.com.2026-03-10/actions/actions-get-org-secret.op.lapis +25 -0
  388. package/examples/github/api.github.com.2026-03-10/actions/actions-get-org-variable.op.lapis +26 -0
  389. package/examples/github/api.github.com.2026-03-10/actions/actions-get-pending-deployments-for-run.op.lapis +26 -0
  390. package/examples/github/api.github.com.2026-03-10/actions/actions-get-private-repo-fork-pr-workflows-settings-organization.op.lapis +36 -0
  391. package/examples/github/api.github.com.2026-03-10/actions/actions-get-private-repo-fork-pr-workflows-settings-repository.op.lapis +38 -0
  392. package/examples/github/api.github.com.2026-03-10/actions/actions-get-repo-public-key.op.lapis +27 -0
  393. package/examples/github/api.github.com.2026-03-10/actions/actions-get-repo-secret.op.lapis +24 -0
  394. package/examples/github/api.github.com.2026-03-10/actions/actions-get-repo-variable.op.lapis +25 -0
  395. package/examples/github/api.github.com.2026-03-10/actions/actions-get-reviews-for-run.op.lapis +48 -0
  396. package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runner-for-org.op.lapis +34 -0
  397. package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runner-for-repo.op.lapis +35 -0
  398. package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runner-group-for-org.op.lapis +33 -0
  399. package/examples/github/api.github.com.2026-03-10/actions/actions-get-self-hosted-runners-permissions-organization.op.lapis +35 -0
  400. package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-access-to-repository.op.lapis +22 -0
  401. package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-run-attempt.op.lapis +232 -0
  402. package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-run-usage.op.lapis +25 -0
  403. package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-run.op.lapis +231 -0
  404. package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow-usage.op.lapis +25 -0
  405. package/examples/github/api.github.com.2026-03-10/actions/actions-get-workflow.op.lapis +33 -0
  406. package/examples/github/api.github.com.2026-03-10/actions/actions-list-artifacts-for-repo.op.lapis +36 -0
  407. package/examples/github/api.github.com.2026-03-10/actions/actions-list-concurrency-groups-for-repository.op.lapis +30 -0
  408. package/examples/github/api.github.com.2026-03-10/actions/actions-list-concurrency-groups-for-workflow-run.op.lapis +89 -0
  409. package/examples/github/api.github.com.2026-03-10/actions/actions-list-custom-image-versions-for-org.op.lapis +25 -0
  410. package/examples/github/api.github.com.2026-03-10/actions/actions-list-custom-images-for-org.op.lapis +27 -0
  411. package/examples/github/api.github.com.2026-03-10/actions/actions-list-environment-secrets.op.lapis +28 -0
  412. package/examples/github/api.github.com.2026-03-10/actions/actions-list-environment-variables.op.lapis +28 -0
  413. package/examples/github/api.github.com.2026-03-10/actions/actions-list-github-hosted-runners-in-group-for-org.op.lapis +52 -0
  414. package/examples/github/api.github.com.2026-03-10/actions/actions-list-hosted-runners-for-org.op.lapis +51 -0
  415. package/examples/github/api.github.com.2026-03-10/actions/actions-list-jobs-for-workflow-run-attempt.op.lapis +94 -0
  416. package/examples/github/api.github.com.2026-03-10/actions/actions-list-jobs-for-workflow-run.op.lapis +86 -0
  417. package/examples/github/api.github.com.2026-03-10/actions/actions-list-labels-for-self-hosted-runner-for-org.op.lapis +32 -0
  418. package/examples/github/api.github.com.2026-03-10/actions/actions-list-labels-for-self-hosted-runner-for-repo.op.lapis +33 -0
  419. package/examples/github/api.github.com.2026-03-10/actions/actions-list-org-secrets.op.lapis +28 -0
  420. package/examples/github/api.github.com.2026-03-10/actions/actions-list-org-variables.op.lapis +28 -0
  421. 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
  422. package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-organization-secrets.op.lapis +27 -0
  423. package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-organization-variables.op.lapis +27 -0
  424. package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-secrets.op.lapis +27 -0
  425. package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-variables.op.lapis +27 -0
  426. package/examples/github/api.github.com.2026-03-10/actions/actions-list-repo-workflows.op.lapis +34 -0
  427. package/examples/github/api.github.com.2026-03-10/actions/actions-list-runner-applications-for-org.op.lapis +25 -0
  428. package/examples/github/api.github.com.2026-03-10/actions/actions-list-runner-applications-for-repo.op.lapis +26 -0
  429. package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repos-for-org-secret.op.lapis +169 -0
  430. package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repos-for-org-variable.op.lapis +173 -0
  431. package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repositories-enabled-github-actions-organization.op.lapis +148 -0
  432. package/examples/github/api.github.com.2026-03-10/actions/actions-list-selected-repositories-self-hosted-runners-organization.op.lapis +163 -0
  433. package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runner-groups-for-org.op.lapis +36 -0
  434. package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runners-for-org.op.lapis +37 -0
  435. package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runners-for-repo.op.lapis +38 -0
  436. package/examples/github/api.github.com.2026-03-10/actions/actions-list-self-hosted-runners-in-group-for-org.op.lapis +36 -0
  437. package/examples/github/api.github.com.2026-03-10/actions/actions-list-workflow-run-artifacts.op.lapis +38 -0
  438. package/examples/github/api.github.com.2026-03-10/actions/actions-list-workflow-runs-for-repo.op.lapis +241 -0
  439. package/examples/github/api.github.com.2026-03-10/actions/actions-list-workflow-runs.op.lapis +242 -0
  440. package/examples/github/api.github.com.2026-03-10/actions/actions-re-run-job-for-workflow-run.op.lapis +30 -0
  441. package/examples/github/api.github.com.2026-03-10/actions/actions-re-run-workflow-failed-jobs.op.lapis +21 -0
  442. package/examples/github/api.github.com.2026-03-10/actions/actions-re-run-workflow.op.lapis +21 -0
  443. 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
  444. 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
  445. package/examples/github/api.github.com.2026-03-10/actions/actions-remove-custom-label-from-self-hosted-runner-for-org.op.lapis +42 -0
  446. package/examples/github/api.github.com.2026-03-10/actions/actions-remove-custom-label-from-self-hosted-runner-for-repo.op.lapis +43 -0
  447. 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
  448. package/examples/github/api.github.com.2026-03-10/actions/actions-remove-selected-repo-from-org-secret.op.lapis +22 -0
  449. package/examples/github/api.github.com.2026-03-10/actions/actions-remove-selected-repo-from-org-variable.op.lapis +22 -0
  450. package/examples/github/api.github.com.2026-03-10/actions/actions-remove-self-hosted-runner-from-group-for-org.op.lapis +16 -0
  451. package/examples/github/api.github.com.2026-03-10/actions/actions-review-custom-gates-for-run.op.lapis +18 -0
  452. package/examples/github/api.github.com.2026-03-10/actions/actions-review-pending-deployments-for-run.op.lapis +84 -0
  453. package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-retention-limit-for-enterprise.op.lapis +42 -0
  454. package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-retention-limit-for-organization.op.lapis +42 -0
  455. package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-retention-limit-for-repository.op.lapis +43 -0
  456. package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-storage-limit-for-enterprise.op.lapis +42 -0
  457. package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-storage-limit-for-organization.op.lapis +42 -0
  458. package/examples/github/api.github.com.2026-03-10/actions/actions-set-actions-cache-storage-limit-for-repository.op.lapis +43 -0
  459. package/examples/github/api.github.com.2026-03-10/actions/actions-set-allowed-actions-organization.op.lapis +21 -0
  460. package/examples/github/api.github.com.2026-03-10/actions/actions-set-allowed-actions-repository.op.lapis +22 -0
  461. package/examples/github/api.github.com.2026-03-10/actions/actions-set-artifact-and-log-retention-settings-organization.op.lapis +47 -0
  462. package/examples/github/api.github.com.2026-03-10/actions/actions-set-artifact-and-log-retention-settings-repository.op.lapis +34 -0
  463. package/examples/github/api.github.com.2026-03-10/actions/actions-set-custom-labels-for-self-hosted-runner-for-org.op.lapis +40 -0
  464. package/examples/github/api.github.com.2026-03-10/actions/actions-set-custom-labels-for-self-hosted-runner-for-repo.op.lapis +41 -0
  465. package/examples/github/api.github.com.2026-03-10/actions/actions-set-custom-oidc-sub-claim-for-repo.op.lapis +43 -0
  466. package/examples/github/api.github.com.2026-03-10/actions/actions-set-fork-pr-contributor-approval-permissions-organization.op.lapis +33 -0
  467. package/examples/github/api.github.com.2026-03-10/actions/actions-set-fork-pr-contributor-approval-permissions-repository.op.lapis +34 -0
  468. package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-default-workflow-permissions-organization.op.lapis +24 -0
  469. package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-default-workflow-permissions-repository.op.lapis +29 -0
  470. package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-permissions-organization.op.lapis +22 -0
  471. package/examples/github/api.github.com.2026-03-10/actions/actions-set-github-actions-permissions-repository.op.lapis +21 -0
  472. package/examples/github/api.github.com.2026-03-10/actions/actions-set-private-repo-fork-pr-workflows-settings-organization.op.lapis +42 -0
  473. package/examples/github/api.github.com.2026-03-10/actions/actions-set-private-repo-fork-pr-workflows-settings-repository.op.lapis +37 -0
  474. 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
  475. package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repos-for-org-secret.op.lapis +19 -0
  476. package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repos-for-org-variable.op.lapis +23 -0
  477. package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repositories-enabled-github-actions-organization.op.lapis +15 -0
  478. package/examples/github/api.github.com.2026-03-10/actions/actions-set-selected-repositories-self-hosted-runners-organization.op.lapis +36 -0
  479. package/examples/github/api.github.com.2026-03-10/actions/actions-set-self-hosted-runners-in-group-for-org.op.lapis +16 -0
  480. package/examples/github/api.github.com.2026-03-10/actions/actions-set-self-hosted-runners-permissions-organization.op.lapis +43 -0
  481. package/examples/github/api.github.com.2026-03-10/actions/actions-set-workflow-access-to-repository.op.lapis +22 -0
  482. package/examples/github/api.github.com.2026-03-10/actions/actions-update-environment-variable.op.lapis +20 -0
  483. package/examples/github/api.github.com.2026-03-10/actions/actions-update-hosted-runner-for-org.op.lapis +58 -0
  484. package/examples/github/api.github.com.2026-03-10/actions/actions-update-org-variable.op.lapis +20 -0
  485. package/examples/github/api.github.com.2026-03-10/actions/actions-update-repo-variable.op.lapis +19 -0
  486. package/examples/github/api.github.com.2026-03-10/actions/actions-update-self-hosted-runner-group-for-org.op.lapis +39 -0
  487. package/examples/github/api.github.com.2026-03-10/actions/index.md +193 -0
  488. package/examples/github/api.github.com.2026-03-10/activity/activity-check-repo-is-starred-by-authenticated-user.op.lapis +36 -0
  489. package/examples/github/api.github.com.2026-03-10/activity/activity-delete-repo-subscription.op.lapis +14 -0
  490. package/examples/github/api.github.com.2026-03-10/activity/activity-delete-thread-subscription.op.lapis +28 -0
  491. package/examples/github/api.github.com.2026-03-10/activity/activity-get-feeds.op.lapis +37 -0
  492. package/examples/github/api.github.com.2026-03-10/activity/activity-get-repo-subscription.op.lapis +35 -0
  493. package/examples/github/api.github.com.2026-03-10/activity/activity-get-thread-subscription-for-authenticated-user.op.lapis +40 -0
  494. package/examples/github/api.github.com.2026-03-10/activity/activity-get-thread.op.lapis +188 -0
  495. package/examples/github/api.github.com.2026-03-10/activity/activity-list-events-for-authenticated-user.op.lapis +37 -0
  496. package/examples/github/api.github.com.2026-03-10/activity/activity-list-notifications-for-authenticated-user.op.lapis +199 -0
  497. package/examples/github/api.github.com.2026-03-10/activity/activity-list-org-events-for-authenticated-user.op.lapis +38 -0
  498. package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-events-for-repo-network.op.lapis +52 -0
  499. package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-events-for-user.op.lapis +36 -0
  500. package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-events.op.lapis +49 -0
  501. package/examples/github/api.github.com.2026-03-10/activity/activity-list-public-org-events.op.lapis +36 -0
  502. package/examples/github/api.github.com.2026-03-10/activity/activity-list-received-events-for-user.op.lapis +38 -0
  503. package/examples/github/api.github.com.2026-03-10/activity/activity-list-received-public-events-for-user.op.lapis +36 -0
  504. package/examples/github/api.github.com.2026-03-10/activity/activity-list-repo-events.op.lapis +37 -0
  505. package/examples/github/api.github.com.2026-03-10/activity/activity-list-repo-notifications-for-authenticated-user.op.lapis +180 -0
  506. package/examples/github/api.github.com.2026-03-10/activity/activity-list-repos-starred-by-authenticated-user.op.lapis +164 -0
  507. package/examples/github/api.github.com.2026-03-10/activity/activity-list-repos-starred-by-user.op.lapis +19 -0
  508. package/examples/github/api.github.com.2026-03-10/activity/activity-list-repos-watched-by-user.op.lapis +164 -0
  509. package/examples/github/api.github.com.2026-03-10/activity/activity-list-stargazers-for-repo.op.lapis +25 -0
  510. package/examples/github/api.github.com.2026-03-10/activity/activity-list-watched-repos-for-authenticated-user.op.lapis +178 -0
  511. package/examples/github/api.github.com.2026-03-10/activity/activity-list-watchers-for-repo.op.lapis +42 -0
  512. package/examples/github/api.github.com.2026-03-10/activity/activity-mark-notifications-as-read.op.lapis +30 -0
  513. package/examples/github/api.github.com.2026-03-10/activity/activity-mark-repo-notifications-as-read.op.lapis +17 -0
  514. package/examples/github/api.github.com.2026-03-10/activity/activity-mark-thread-as-done.op.lapis +13 -0
  515. package/examples/github/api.github.com.2026-03-10/activity/activity-mark-thread-as-read.op.lapis +21 -0
  516. package/examples/github/api.github.com.2026-03-10/activity/activity-set-repo-subscription.op.lapis +26 -0
  517. package/examples/github/api.github.com.2026-03-10/activity/activity-set-thread-subscription.op.lapis +42 -0
  518. package/examples/github/api.github.com.2026-03-10/activity/activity-star-repo-for-authenticated-user.op.lapis +36 -0
  519. package/examples/github/api.github.com.2026-03-10/activity/activity-unstar-repo-for-authenticated-user.op.lapis +36 -0
  520. package/examples/github/api.github.com.2026-03-10/activity/index.md +38 -0
  521. package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-create-task-in-repo.op.lapis +69 -0
  522. package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-get-task-by-id.op.lapis +199 -0
  523. package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-get-task-by-repo-and-id.op.lapis +201 -0
  524. package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-list-tasks-for-repo.op.lapis +195 -0
  525. package/examples/github/api.github.com.2026-03-10/agent-tasks/agent-tasks-list-tasks.op.lapis +186 -0
  526. package/examples/github/api.github.com.2026-03-10/agent-tasks/index.md +11 -0
  527. package/examples/github/api.github.com.2026-03-10/agents/agents-add-selected-repo-to-org-secret.op.lapis +22 -0
  528. package/examples/github/api.github.com.2026-03-10/agents/agents-add-selected-repo-to-org-variable.op.lapis +21 -0
  529. package/examples/github/api.github.com.2026-03-10/agents/agents-create-or-update-org-secret.op.lapis +25 -0
  530. package/examples/github/api.github.com.2026-03-10/agents/agents-create-or-update-repo-secret.op.lapis +24 -0
  531. package/examples/github/api.github.com.2026-03-10/agents/agents-create-org-variable.op.lapis +23 -0
  532. package/examples/github/api.github.com.2026-03-10/agents/agents-create-repo-variable.op.lapis +22 -0
  533. package/examples/github/api.github.com.2026-03-10/agents/agents-delete-org-secret.op.lapis +16 -0
  534. package/examples/github/api.github.com.2026-03-10/agents/agents-delete-org-variable.op.lapis +16 -0
  535. package/examples/github/api.github.com.2026-03-10/agents/agents-delete-repo-secret.op.lapis +17 -0
  536. package/examples/github/api.github.com.2026-03-10/agents/agents-delete-repo-variable.op.lapis +17 -0
  537. package/examples/github/api.github.com.2026-03-10/agents/agents-get-org-public-key.op.lapis +26 -0
  538. package/examples/github/api.github.com.2026-03-10/agents/agents-get-org-secret.op.lapis +25 -0
  539. package/examples/github/api.github.com.2026-03-10/agents/agents-get-org-variable.op.lapis +26 -0
  540. package/examples/github/api.github.com.2026-03-10/agents/agents-get-repo-public-key.op.lapis +27 -0
  541. package/examples/github/api.github.com.2026-03-10/agents/agents-get-repo-secret.op.lapis +24 -0
  542. package/examples/github/api.github.com.2026-03-10/agents/agents-get-repo-variable.op.lapis +25 -0
  543. package/examples/github/api.github.com.2026-03-10/agents/agents-list-org-secrets.op.lapis +28 -0
  544. package/examples/github/api.github.com.2026-03-10/agents/agents-list-org-variables.op.lapis +29 -0
  545. package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-organization-secrets.op.lapis +27 -0
  546. package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-organization-variables.op.lapis +27 -0
  547. package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-secrets.op.lapis +27 -0
  548. package/examples/github/api.github.com.2026-03-10/agents/agents-list-repo-variables.op.lapis +27 -0
  549. package/examples/github/api.github.com.2026-03-10/agents/agents-list-selected-repos-for-org-secret.op.lapis +169 -0
  550. package/examples/github/api.github.com.2026-03-10/agents/agents-list-selected-repos-for-org-variable.op.lapis +173 -0
  551. package/examples/github/api.github.com.2026-03-10/agents/agents-remove-selected-repo-from-org-secret.op.lapis +22 -0
  552. package/examples/github/api.github.com.2026-03-10/agents/agents-remove-selected-repo-from-org-variable.op.lapis +22 -0
  553. package/examples/github/api.github.com.2026-03-10/agents/agents-set-selected-repos-for-org-secret.op.lapis +19 -0
  554. package/examples/github/api.github.com.2026-03-10/agents/agents-set-selected-repos-for-org-variable.op.lapis +23 -0
  555. package/examples/github/api.github.com.2026-03-10/agents/agents-update-org-variable.op.lapis +20 -0
  556. package/examples/github/api.github.com.2026-03-10/agents/agents-update-repo-variable.op.lapis +19 -0
  557. package/examples/github/api.github.com.2026-03-10/agents/index.md +36 -0
  558. package/examples/github/api.github.com.2026-03-10/apps/apps-add-repo-to-installation-for-authenticated-user.op.lapis +30 -0
  559. package/examples/github/api.github.com.2026-03-10/apps/apps-check-token.op.lapis +161 -0
  560. package/examples/github/api.github.com.2026-03-10/apps/apps-create-from-manifest.op.lapis +46 -0
  561. package/examples/github/api.github.com.2026-03-10/apps/apps-create-installation-access-token.op.lapis +247 -0
  562. package/examples/github/api.github.com.2026-03-10/apps/apps-delete-authorization.op.lapis +22 -0
  563. package/examples/github/api.github.com.2026-03-10/apps/apps-delete-installation.op.lapis +22 -0
  564. package/examples/github/api.github.com.2026-03-10/apps/apps-delete-token.op.lapis +21 -0
  565. package/examples/github/api.github.com.2026-03-10/apps/apps-get-authenticated.op.lapis +33 -0
  566. package/examples/github/api.github.com.2026-03-10/apps/apps-get-by-slug.op.lapis +48 -0
  567. package/examples/github/api.github.com.2026-03-10/apps/apps-get-installation.op.lapis +128 -0
  568. package/examples/github/api.github.com.2026-03-10/apps/apps-get-org-installation.op.lapis +120 -0
  569. package/examples/github/api.github.com.2026-03-10/apps/apps-get-repo-installation.op.lapis +129 -0
  570. package/examples/github/api.github.com.2026-03-10/apps/apps-get-subscription-plan-for-account-stubbed.op.lapis +37 -0
  571. package/examples/github/api.github.com.2026-03-10/apps/apps-get-subscription-plan-for-account.op.lapis +41 -0
  572. package/examples/github/api.github.com.2026-03-10/apps/apps-get-user-installation.op.lapis +120 -0
  573. package/examples/github/api.github.com.2026-03-10/apps/apps-get-webhook-config-for-app.op.lapis +21 -0
  574. package/examples/github/api.github.com.2026-03-10/apps/apps-get-webhook-delivery.op.lapis +46 -0
  575. package/examples/github/api.github.com.2026-03-10/apps/apps-list-accounts-for-plan-stubbed.op.lapis +38 -0
  576. package/examples/github/api.github.com.2026-03-10/apps/apps-list-accounts-for-plan.op.lapis +51 -0
  577. package/examples/github/api.github.com.2026-03-10/apps/apps-list-installation-repos-for-authenticated-user.op.lapis +165 -0
  578. package/examples/github/api.github.com.2026-03-10/apps/apps-list-installation-requests-for-authenticated-app.op.lapis +55 -0
  579. package/examples/github/api.github.com.2026-03-10/apps/apps-list-installations-for-authenticated-user.op.lapis +138 -0
  580. package/examples/github/api.github.com.2026-03-10/apps/apps-list-installations.op.lapis +123 -0
  581. package/examples/github/api.github.com.2026-03-10/apps/apps-list-plans-stubbed.op.lapis +40 -0
  582. package/examples/github/api.github.com.2026-03-10/apps/apps-list-plans.op.lapis +47 -0
  583. package/examples/github/api.github.com.2026-03-10/apps/apps-list-repos-accessible-to-installation.op.lapis +162 -0
  584. package/examples/github/api.github.com.2026-03-10/apps/apps-list-subscriptions-for-authenticated-user-stubbed.op.lapis +58 -0
  585. package/examples/github/api.github.com.2026-03-10/apps/apps-list-subscriptions-for-authenticated-user.op.lapis +65 -0
  586. package/examples/github/api.github.com.2026-03-10/apps/apps-list-webhook-deliveries.op.lapis +46 -0
  587. package/examples/github/api.github.com.2026-03-10/apps/apps-redeliver-webhook-delivery.op.lapis +27 -0
  588. package/examples/github/api.github.com.2026-03-10/apps/apps-remove-repo-from-installation-for-authenticated-user.op.lapis +33 -0
  589. package/examples/github/api.github.com.2026-03-10/apps/apps-reset-token.op.lapis +154 -0
  590. package/examples/github/api.github.com.2026-03-10/apps/apps-revoke-installation-access-token.op.lapis +13 -0
  591. package/examples/github/api.github.com.2026-03-10/apps/apps-scope-token.op.lapis +183 -0
  592. package/examples/github/api.github.com.2026-03-10/apps/apps-suspend-installation.op.lapis +22 -0
  593. package/examples/github/api.github.com.2026-03-10/apps/apps-unsuspend-installation.op.lapis +22 -0
  594. package/examples/github/api.github.com.2026-03-10/apps/apps-update-webhook-config-for-app.op.lapis +25 -0
  595. package/examples/github/api.github.com.2026-03-10/apps/index.md +43 -0
  596. package/examples/github/api.github.com.2026-03-10/billing/billing-create-organization-budget.op.lapis +211 -0
  597. package/examples/github/api.github.com.2026-03-10/billing/billing-delete-budget-org.op.lapis +55 -0
  598. package/examples/github/api.github.com.2026-03-10/billing/billing-get-all-budgets-org.op.lapis +201 -0
  599. package/examples/github/api.github.com.2026-03-10/billing/billing-get-budget-org.op.lapis +203 -0
  600. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-ai-credit-usage-report-org.op.lapis +65 -0
  601. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-ai-credit-usage-report-user.op.lapis +63 -0
  602. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-premium-request-usage-report-org.op.lapis +65 -0
  603. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-premium-request-usage-report-user.op.lapis +63 -0
  604. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-report-org.op.lapis +50 -0
  605. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-report-user.op.lapis +50 -0
  606. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-summary-report-org.op.lapis +60 -0
  607. package/examples/github/api.github.com.2026-03-10/billing/billing-get-github-billing-usage-summary-report-user.op.lapis +67 -0
  608. package/examples/github/api.github.com.2026-03-10/billing/billing-update-budget-org.op.lapis +211 -0
  609. package/examples/github/api.github.com.2026-03-10/billing/index.md +19 -0
  610. package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-create-campaign.op.lapis +149 -0
  611. package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-delete-campaign.op.lapis +30 -0
  612. package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-get-campaign-summary.op.lapis +130 -0
  613. package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-list-org-campaigns.op.lapis +127 -0
  614. package/examples/github/api.github.com.2026-03-10/campaigns/campaigns-update-campaign.op.lapis +144 -0
  615. package/examples/github/api.github.com.2026-03-10/campaigns/index.md +11 -0
  616. package/examples/github/api.github.com.2026-03-10/checks/checks-create-suite.op.lapis +227 -0
  617. package/examples/github/api.github.com.2026-03-10/checks/checks-create.op.lapis +99 -0
  618. package/examples/github/api.github.com.2026-03-10/checks/checks-get-suite.op.lapis +227 -0
  619. package/examples/github/api.github.com.2026-03-10/checks/checks-get.op.lapis +80 -0
  620. package/examples/github/api.github.com.2026-03-10/checks/checks-list-annotations.op.lapis +32 -0
  621. package/examples/github/api.github.com.2026-03-10/checks/checks-list-for-ref.op.lapis +88 -0
  622. package/examples/github/api.github.com.2026-03-10/checks/checks-list-for-suite.op.lapis +86 -0
  623. package/examples/github/api.github.com.2026-03-10/checks/checks-list-suites-for-ref.op.lapis +232 -0
  624. package/examples/github/api.github.com.2026-03-10/checks/checks-rerequest-run.op.lapis +42 -0
  625. package/examples/github/api.github.com.2026-03-10/checks/checks-rerequest-suite.op.lapis +19 -0
  626. package/examples/github/api.github.com.2026-03-10/checks/checks-set-suites-preferences.op.lapis +169 -0
  627. package/examples/github/api.github.com.2026-03-10/checks/checks-update.op.lapis +98 -0
  628. package/examples/github/api.github.com.2026-03-10/checks/index.md +18 -0
  629. package/examples/github/api.github.com.2026-03-10/classroom/classroom-get-a-classroom.op.lapis +38 -0
  630. package/examples/github/api.github.com.2026-03-10/classroom/classroom-get-an-assignment.op.lapis +67 -0
  631. package/examples/github/api.github.com.2026-03-10/classroom/classroom-get-assignment-grades.op.lapis +36 -0
  632. package/examples/github/api.github.com.2026-03-10/classroom/classroom-list-accepted-assignments-for-an-assignment.op.lapis +67 -0
  633. package/examples/github/api.github.com.2026-03-10/classroom/classroom-list-assignments-for-a-classroom.op.lapis +43 -0
  634. package/examples/github/api.github.com.2026-03-10/classroom/classroom-list-classrooms.op.lapis +22 -0
  635. package/examples/github/api.github.com.2026-03-10/classroom/index.md +12 -0
  636. package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-get-finding.op.lapis +67 -0
  637. package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-get-setup.op.lapis +46 -0
  638. package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-list-findings-for-repo.op.lapis +71 -0
  639. package/examples/github/api.github.com.2026-03-10/code-quality/code-quality-update-setup.op.lapis +61 -0
  640. package/examples/github/api.github.com.2026-03-10/code-quality/index.md +10 -0
  641. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-commit-autofix.op.lapis +59 -0
  642. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-create-autofix.op.lapis +59 -0
  643. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-create-variant-analysis.op.lapis +240 -0
  644. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-delete-analysis.op.lapis +100 -0
  645. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-delete-codeql-database.op.lapis +37 -0
  646. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-alert.op.lapis +151 -0
  647. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-analysis.op.lapis +78 -0
  648. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-autofix.op.lapis +54 -0
  649. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-codeql-database.op.lapis +80 -0
  650. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-default-setup.op.lapis +48 -0
  651. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-sarif.op.lapis +40 -0
  652. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-variant-analysis-repo-task.op.lapis +118 -0
  653. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-get-variant-analysis.op.lapis +226 -0
  654. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-alert-instances.op.lapis +66 -0
  655. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-alerts-for-org.op.lapis +207 -0
  656. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-alerts-for-repo.op.lapis +170 -0
  657. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-codeql-databases.op.lapis +74 -0
  658. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-list-recent-analyses.op.lapis +79 -0
  659. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-update-alert.op.lapis +165 -0
  660. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-update-default-setup.op.lapis +63 -0
  661. package/examples/github/api.github.com.2026-03-10/code-scanning/code-scanning-upload-sarif.op.lapis +77 -0
  662. package/examples/github/api.github.com.2026-03-10/code-scanning/index.md +27 -0
  663. package/examples/github/api.github.com.2026-03-10/code-security/code-security-attach-configuration.op.lapis +19 -0
  664. package/examples/github/api.github.com.2026-03-10/code-security/code-security-attach-enterprise-configuration.op.lapis +40 -0
  665. package/examples/github/api.github.com.2026-03-10/code-security/code-security-create-configuration-for-enterprise.op.lapis +113 -0
  666. package/examples/github/api.github.com.2026-03-10/code-security/code-security-create-configuration.op.lapis +94 -0
  667. package/examples/github/api.github.com.2026-03-10/code-security/code-security-delete-configuration-for-enterprise.op.lapis +47 -0
  668. package/examples/github/api.github.com.2026-03-10/code-security/code-security-delete-configuration.op.lapis +47 -0
  669. package/examples/github/api.github.com.2026-03-10/code-security/code-security-detach-configuration.op.lapis +46 -0
  670. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configuration-for-repository.op.lapis +88 -0
  671. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configuration.op.lapis +84 -0
  672. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configurations-for-enterprise.op.lapis +86 -0
  673. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-configurations-for-org.op.lapis +87 -0
  674. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-default-configurations-for-enterprise.op.lapis +29 -0
  675. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-default-configurations.op.lapis +44 -0
  676. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-repositories-for-configuration.op.lapis +113 -0
  677. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-repositories-for-enterprise-configuration.op.lapis +113 -0
  678. package/examples/github/api.github.com.2026-03-10/code-security/code-security-get-single-configuration-for-enterprise.op.lapis +84 -0
  679. package/examples/github/api.github.com.2026-03-10/code-security/code-security-set-configuration-as-default-for-enterprise.op.lapis +87 -0
  680. package/examples/github/api.github.com.2026-03-10/code-security/code-security-set-configuration-as-default.op.lapis +87 -0
  681. package/examples/github/api.github.com.2026-03-10/code-security/code-security-update-configuration.op.lapis +95 -0
  682. package/examples/github/api.github.com.2026-03-10/code-security/code-security-update-enterprise-configuration.op.lapis +114 -0
  683. package/examples/github/api.github.com.2026-03-10/code-security/index.md +26 -0
  684. package/examples/github/api.github.com.2026-03-10/codes-of-conduct/codes-of-conduct-get-all-codes-of-conduct.op.lapis +21 -0
  685. package/examples/github/api.github.com.2026-03-10/codes-of-conduct/codes-of-conduct-get-conduct-code.op.lapis +29 -0
  686. package/examples/github/api.github.com.2026-03-10/codes-of-conduct/index.md +8 -0
  687. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-add-repository-for-secret-for-authenticated-user.op.lapis +44 -0
  688. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-add-selected-repo-to-org-secret.op.lapis +32 -0
  689. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-check-permissions-for-devcontainer.op.lapis +56 -0
  690. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-codespace-machines-for-authenticated-user.op.lapis +55 -0
  691. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-for-authenticated-user.op.lapis +234 -0
  692. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-or-update-org-secret.op.lapis +38 -0
  693. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-or-update-repo-secret.op.lapis +23 -0
  694. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-or-update-secret-for-authenticated-user.op.lapis +37 -0
  695. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-with-pr-for-authenticated-user.op.lapis +246 -0
  696. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-create-with-repo-for-authenticated-user.op.lapis +253 -0
  697. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-codespaces-access-users.op.lapis +41 -0
  698. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-for-authenticated-user.op.lapis +43 -0
  699. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-from-organization.op.lapis +45 -0
  700. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-org-secret.op.lapis +23 -0
  701. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-repo-secret.op.lapis +16 -0
  702. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-delete-secret-for-authenticated-user.op.lapis +15 -0
  703. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-export-for-authenticated-user.op.lapis +61 -0
  704. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-codespaces-for-user-in-org.op.lapis +239 -0
  705. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-export-details-for-authenticated-user.op.lapis +34 -0
  706. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-for-authenticated-user.op.lapis +235 -0
  707. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-org-public-key.op.lapis +24 -0
  708. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-org-secret.op.lapis +24 -0
  709. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-public-key-for-authenticated-user.op.lapis +20 -0
  710. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-repo-public-key.op.lapis +26 -0
  711. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-repo-secret.op.lapis +23 -0
  712. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-get-secret-for-authenticated-user.op.lapis +24 -0
  713. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-devcontainers-in-repository-for-authenticated-user.op.lapis +56 -0
  714. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-for-authenticated-user.op.lapis +238 -0
  715. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-in-organization.op.lapis +238 -0
  716. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-in-repository-for-authenticated-user.op.lapis +239 -0
  717. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-org-secrets.op.lapis +27 -0
  718. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-repo-secrets.op.lapis +26 -0
  719. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-repositories-for-secret-for-authenticated-user.op.lapis +194 -0
  720. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-secrets-for-authenticated-user.op.lapis +27 -0
  721. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-list-selected-repos-for-org-secret.op.lapis +176 -0
  722. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-pre-flight-with-repo-for-authenticated-user.op.lapis +66 -0
  723. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-publish-for-authenticated-user.op.lapis +466 -0
  724. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-remove-repository-for-secret-for-authenticated-user.op.lapis +44 -0
  725. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-remove-selected-repo-from-org-secret.op.lapis +34 -0
  726. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-repo-machines-for-authenticated-user.op.lapis +59 -0
  727. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-codespaces-access-users.op.lapis +41 -0
  728. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-codespaces-access.op.lapis +40 -0
  729. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-repositories-for-secret-for-authenticated-user.op.lapis +45 -0
  730. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-set-selected-repos-for-org-secret.op.lapis +29 -0
  731. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-start-for-authenticated-user.op.lapis +256 -0
  732. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-stop-for-authenticated-user.op.lapis +235 -0
  733. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-stop-in-organization.op.lapis +237 -0
  734. package/examples/github/api.github.com.2026-03-10/codespaces/codespaces-update-for-authenticated-user.op.lapis +232 -0
  735. package/examples/github/api.github.com.2026-03-10/codespaces/index.md +54 -0
  736. package/examples/github/api.github.com.2026-03-10/copilot/copilot-add-copilot-seats-for-teams.op.lapis +55 -0
  737. package/examples/github/api.github.com.2026-03-10/copilot/copilot-add-copilot-seats-for-users.op.lapis +55 -0
  738. package/examples/github/api.github.com.2026-03-10/copilot/copilot-add-organizations-to-enterprise-coding-agent-policy.op.lapis +28 -0
  739. package/examples/github/api.github.com.2026-03-10/copilot/copilot-cancel-copilot-seat-assignment-for-teams.op.lapis +54 -0
  740. package/examples/github/api.github.com.2026-03-10/copilot/copilot-cancel-copilot-seat-assignment-for-users.op.lapis +54 -0
  741. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-content-exclusion-for-organization.op.lapis +55 -0
  742. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-enterprise-one-day-usage-metrics.op.lapis +45 -0
  743. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-enterprise-usage-metrics.op.lapis +45 -0
  744. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-enterprise-user-teams-one-day-report.op.lapis +45 -0
  745. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-one-day-usage-metrics.op.lapis +46 -0
  746. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-usage-metrics.op.lapis +46 -0
  747. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-user-teams-one-day-report.op.lapis +46 -0
  748. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-users-one-day-usage-metrics.op.lapis +46 -0
  749. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-organization-users-usage-metrics.op.lapis +46 -0
  750. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-users-one-day-usage-metrics.op.lapis +45 -0
  751. package/examples/github/api.github.com.2026-03-10/copilot/copilot-copilot-users-usage-metrics.op.lapis +45 -0
  752. package/examples/github/api.github.com.2026-03-10/copilot/copilot-disable-copilot-coding-agent-for-repository-in-organization.op.lapis +55 -0
  753. package/examples/github/api.github.com.2026-03-10/copilot/copilot-enable-copilot-coding-agent-for-repository-in-organization.op.lapis +61 -0
  754. package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-cloud-agent-configuration.op.lapis +54 -0
  755. package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-coding-agent-permissions-organization.op.lapis +50 -0
  756. package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-organization-details.op.lapis +82 -0
  757. package/examples/github/api.github.com.2026-03-10/copilot/copilot-get-copilot-seat-details-for-user.op.lapis +116 -0
  758. package/examples/github/api.github.com.2026-03-10/copilot/copilot-list-copilot-coding-agent-selected-repositories-for-organization.op.lapis +206 -0
  759. package/examples/github/api.github.com.2026-03-10/copilot/copilot-list-copilot-seats.op.lapis +115 -0
  760. package/examples/github/api.github.com.2026-03-10/copilot/copilot-remove-organizations-from-enterprise-coding-agent-policy.op.lapis +28 -0
  761. package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-copilot-coding-agent-permissions-organization.op.lapis +54 -0
  762. package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-copilot-coding-agent-selected-repositories-for-organization.op.lapis +61 -0
  763. package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-copilot-content-exclusion-for-organization.op.lapis +65 -0
  764. package/examples/github/api.github.com.2026-03-10/copilot/copilot-set-enterprise-coding-agent-policy.op.lapis +27 -0
  765. package/examples/github/api.github.com.2026-03-10/copilot/index.md +35 -0
  766. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-add-collaborator-for-org.op.lapis +46 -0
  767. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-add-collaborator-for-user.op.lapis +44 -0
  768. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-for-org.op.lapis +198 -0
  769. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-for-user.op.lapis +197 -0
  770. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-resource-for-org.op.lapis +182 -0
  771. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-create-resource-for-user.op.lapis +181 -0
  772. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-for-org.op.lapis +32 -0
  773. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-for-user.op.lapis +30 -0
  774. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-resource-for-org.op.lapis +33 -0
  775. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-delete-resource-for-user.op.lapis +32 -0
  776. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-for-org.op.lapis +186 -0
  777. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-for-user.op.lapis +186 -0
  778. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-resource-for-org.op.lapis +172 -0
  779. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-get-resource-for-user.op.lapis +171 -0
  780. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-collaborators-for-org.op.lapis +37 -0
  781. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-collaborators-for-user.op.lapis +36 -0
  782. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-for-org.op.lapis +188 -0
  783. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-for-user.op.lapis +187 -0
  784. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-resources-for-org.op.lapis +171 -0
  785. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-list-resources-for-user.op.lapis +170 -0
  786. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-remove-collaborator-for-org.op.lapis +33 -0
  787. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-remove-collaborator-for-user.op.lapis +32 -0
  788. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-collaborator-for-org.op.lapis +44 -0
  789. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-collaborator-for-user.op.lapis +43 -0
  790. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-for-org.op.lapis +199 -0
  791. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-for-user.op.lapis +198 -0
  792. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-resource-for-org.op.lapis +179 -0
  793. package/examples/github/api.github.com.2026-03-10/copilot-spaces/copilot-spaces-update-resource-for-user.op.lapis +178 -0
  794. package/examples/github/api.github.com.2026-03-10/copilot-spaces/index.md +34 -0
  795. package/examples/github/api.github.com.2026-03-10/credentials/credentials-revoke.op.lapis +38 -0
  796. package/examples/github/api.github.com.2026-03-10/credentials/index.md +7 -0
  797. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-add-selected-repo-to-org-secret.op.lapis +21 -0
  798. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-create-or-update-org-secret.op.lapis +24 -0
  799. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-create-or-update-repo-secret.op.lapis +23 -0
  800. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-delete-org-secret.op.lapis +15 -0
  801. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-delete-repo-secret.op.lapis +16 -0
  802. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-alert.op.lapis +277 -0
  803. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-org-public-key.op.lapis +21 -0
  804. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-org-secret.op.lapis +24 -0
  805. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-repo-public-key.op.lapis +23 -0
  806. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-get-repo-secret.op.lapis +23 -0
  807. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-alerts-for-enterprise.op.lapis +347 -0
  808. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-alerts-for-org.op.lapis +356 -0
  809. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-alerts-for-repo.op.lapis +304 -0
  810. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-org-secrets.op.lapis +27 -0
  811. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-repo-secrets.op.lapis +26 -0
  812. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-list-selected-repos-for-org-secret.op.lapis +168 -0
  813. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-remove-selected-repo-from-org-secret.op.lapis +21 -0
  814. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-repository-access-for-enterprise.op.lapis +109 -0
  815. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-repository-access-for-org.op.lapis +111 -0
  816. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-set-repository-access-default-level-for-enterprise.op.lapis +32 -0
  817. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-set-repository-access-default-level.op.lapis +33 -0
  818. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-set-selected-repos-for-org-secret.op.lapis +18 -0
  819. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-update-alert.op.lapis +303 -0
  820. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-update-repository-access-for-enterprise.op.lapis +38 -0
  821. package/examples/github/api.github.com.2026-03-10/dependabot/dependabot-update-repository-access-for-org.op.lapis +40 -0
  822. package/examples/github/api.github.com.2026-03-10/dependabot/index.md +31 -0
  823. package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-create-repository-snapshot.op.lapis +34 -0
  824. package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-diff-range.op.lapis +76 -0
  825. package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-export-sbom.op.lapis +34 -0
  826. package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-fetch-sbom-report.op.lapis +33 -0
  827. package/examples/github/api.github.com.2026-03-10/dependency-graph/dependency-graph-generate-sbom-report.op.lapis +30 -0
  828. package/examples/github/api.github.com.2026-03-10/dependency-graph/index.md +11 -0
  829. package/examples/github/api.github.com.2026-03-10/emojis/emojis-get.op.lapis +13 -0
  830. package/examples/github/api.github.com.2026-03-10/emojis/index.md +7 -0
  831. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-add.op.lapis +41 -0
  832. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-bulk-add.op.lapis +41 -0
  833. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-bulk-remove.op.lapis +41 -0
  834. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-get.op.lapis +41 -0
  835. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-list.op.lapis +42 -0
  836. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/enterprise-team-memberships-remove.op.lapis +23 -0
  837. package/examples/github/api.github.com.2026-03-10/enterprise-team-memberships/index.md +12 -0
  838. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-add.op.lapis +31 -0
  839. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-bulk-add.op.lapis +31 -0
  840. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-bulk-remove.op.lapis +15 -0
  841. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-delete.op.lapis +15 -0
  842. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-get-assignment.op.lapis +35 -0
  843. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/enterprise-team-organizations-get-assignments.op.lapis +32 -0
  844. package/examples/github/api.github.com.2026-03-10/enterprise-team-organizations/index.md +12 -0
  845. package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-create.op.lapis +37 -0
  846. package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-delete.op.lapis +23 -0
  847. package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-get.op.lapis +40 -0
  848. package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-list.op.lapis +41 -0
  849. package/examples/github/api.github.com.2026-03-10/enterprise-teams/enterprise-teams-update.op.lapis +46 -0
  850. package/examples/github/api.github.com.2026-03-10/enterprise-teams/index.md +11 -0
  851. package/examples/github/api.github.com.2026-03-10/gists/gists-check-is-starred.op.lapis +23 -0
  852. package/examples/github/api.github.com.2026-03-10/gists/gists-create-comment.op.lapis +69 -0
  853. package/examples/github/api.github.com.2026-03-10/gists/gists-create.op.lapis +94 -0
  854. package/examples/github/api.github.com.2026-03-10/gists/gists-delete-comment.op.lapis +28 -0
  855. package/examples/github/api.github.com.2026-03-10/gists/gists-delete.op.lapis +27 -0
  856. package/examples/github/api.github.com.2026-03-10/gists/gists-fork.op.lapis +81 -0
  857. package/examples/github/api.github.com.2026-03-10/gists/gists-get-comment.op.lapis +68 -0
  858. package/examples/github/api.github.com.2026-03-10/gists/gists-get-revision.op.lapis +92 -0
  859. package/examples/github/api.github.com.2026-03-10/gists/gists-get.op.lapis +85 -0
  860. package/examples/github/api.github.com.2026-03-10/gists/gists-list-comments.op.lapis +70 -0
  861. package/examples/github/api.github.com.2026-03-10/gists/gists-list-commits.op.lapis +62 -0
  862. package/examples/github/api.github.com.2026-03-10/gists/gists-list-for-user.op.lapis +71 -0
  863. package/examples/github/api.github.com.2026-03-10/gists/gists-list-forks.op.lapis +85 -0
  864. package/examples/github/api.github.com.2026-03-10/gists/gists-list-public.op.lapis +78 -0
  865. package/examples/github/api.github.com.2026-03-10/gists/gists-list-starred.op.lapis +78 -0
  866. package/examples/github/api.github.com.2026-03-10/gists/gists-list.op.lapis +71 -0
  867. package/examples/github/api.github.com.2026-03-10/gists/gists-star.op.lapis +28 -0
  868. package/examples/github/api.github.com.2026-03-10/gists/gists-unstar.op.lapis +27 -0
  869. package/examples/github/api.github.com.2026-03-10/gists/gists-update-comment.op.lapis +63 -0
  870. package/examples/github/api.github.com.2026-03-10/gists/gists-update.op.lapis +90 -0
  871. package/examples/github/api.github.com.2026-03-10/gists/index.md +26 -0
  872. package/examples/github/api.github.com.2026-03-10/git/git-create-blob.op.lapis +46 -0
  873. package/examples/github/api.github.com.2026-03-10/git/git-create-commit.op.lapis +102 -0
  874. package/examples/github/api.github.com.2026-03-10/git/git-create-ref.op.lapis +38 -0
  875. package/examples/github/api.github.com.2026-03-10/git/git-create-tag.op.lapis +123 -0
  876. package/examples/github/api.github.com.2026-03-10/git/git-create-tree.op.lapis +102 -0
  877. package/examples/github/api.github.com.2026-03-10/git/git-delete-ref.op.lapis +26 -0
  878. package/examples/github/api.github.com.2026-03-10/git/git-get-blob.op.lapis +57 -0
  879. package/examples/github/api.github.com.2026-03-10/git/git-get-commit.op.lapis +86 -0
  880. package/examples/github/api.github.com.2026-03-10/git/git-get-ref.op.lapis +40 -0
  881. package/examples/github/api.github.com.2026-03-10/git/git-get-tag.op.lapis +77 -0
  882. package/examples/github/api.github.com.2026-03-10/git/git-get-tree.op.lapis +48 -0
  883. package/examples/github/api.github.com.2026-03-10/git/git-list-matching-refs.op.lapis +35 -0
  884. package/examples/github/api.github.com.2026-03-10/git/git-update-ref.op.lapis +39 -0
  885. package/examples/github/api.github.com.2026-03-10/git/index.md +19 -0
  886. package/examples/github/api.github.com.2026-03-10/gitignore/gitignore-get-all-templates.op.lapis +13 -0
  887. package/examples/github/api.github.com.2026-03-10/gitignore/gitignore-get-template.op.lapis +20 -0
  888. package/examples/github/api.github.com.2026-03-10/gitignore/index.md +8 -0
  889. package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-create-network-configuration-for-org.op.lapis +30 -0
  890. package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-delete-network-configuration-from-org.op.lapis +15 -0
  891. package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-get-network-configuration-for-org.op.lapis +26 -0
  892. package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-get-network-settings-for-org.op.lapis +24 -0
  893. package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-list-network-configurations-for-org.op.lapis +28 -0
  894. package/examples/github/api.github.com.2026-03-10/hosted-compute/hosted-compute-update-network-configuration-for-org.op.lapis +31 -0
  895. package/examples/github/api.github.com.2026-03-10/hosted-compute/index.md +12 -0
  896. package/examples/github/api.github.com.2026-03-10/index.md +58 -0
  897. package/examples/github/api.github.com.2026-03-10/interactions/index.md +18 -0
  898. package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-pull-request-bypass-list-for-repo.op.lapis +58 -0
  899. package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-restrictions-for-authenticated-user.op.lapis +12 -0
  900. package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-restrictions-for-org.op.lapis +13 -0
  901. package/examples/github/api.github.com.2026-03-10/interactions/interactions-get-restrictions-for-repo.op.lapis +14 -0
  902. package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-pull-request-bypass-list-for-repo.op.lapis +43 -0
  903. package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-restrictions-for-authenticated-user.op.lapis +12 -0
  904. package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-restrictions-for-org.op.lapis +13 -0
  905. package/examples/github/api.github.com.2026-03-10/interactions/interactions-remove-restrictions-for-repo.op.lapis +18 -0
  906. package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-pull-request-bypass-list-for-repo.op.lapis +45 -0
  907. package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-restrictions-for-authenticated-user.op.lapis +35 -0
  908. package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-restrictions-for-org.op.lapis +36 -0
  909. package/examples/github/api.github.com.2026-03-10/interactions/interactions-set-restrictions-for-repo.op.lapis +34 -0
  910. package/examples/github/api.github.com.2026-03-10/issues/index.md +61 -0
  911. package/examples/github/api.github.com.2026-03-10/issues/issues-add-assignees.op.lapis +322 -0
  912. package/examples/github/api.github.com.2026-03-10/issues/issues-add-blocked-by-dependency.op.lapis +358 -0
  913. package/examples/github/api.github.com.2026-03-10/issues/issues-add-issue-field-values.op.lapis +75 -0
  914. package/examples/github/api.github.com.2026-03-10/issues/issues-add-labels.op.lapis +47 -0
  915. package/examples/github/api.github.com.2026-03-10/issues/issues-add-sub-issue.op.lapis +359 -0
  916. package/examples/github/api.github.com.2026-03-10/issues/issues-check-user-can-be-assigned-to-issue.op.lapis +25 -0
  917. package/examples/github/api.github.com.2026-03-10/issues/issues-check-user-can-be-assigned.op.lapis +24 -0
  918. package/examples/github/api.github.com.2026-03-10/issues/issues-create-comment.op.lapis +136 -0
  919. package/examples/github/api.github.com.2026-03-10/issues/issues-create-label.op.lapis +42 -0
  920. package/examples/github/api.github.com.2026-03-10/issues/issues-create-milestone.op.lapis +76 -0
  921. package/examples/github/api.github.com.2026-03-10/issues/issues-create.op.lapis +375 -0
  922. package/examples/github/api.github.com.2026-03-10/issues/issues-delete-comment.op.lapis +15 -0
  923. package/examples/github/api.github.com.2026-03-10/issues/issues-delete-issue-field-value.op.lapis +47 -0
  924. package/examples/github/api.github.com.2026-03-10/issues/issues-delete-label.op.lapis +14 -0
  925. package/examples/github/api.github.com.2026-03-10/issues/issues-delete-milestone.op.lapis +23 -0
  926. package/examples/github/api.github.com.2026-03-10/issues/issues-get-comment.op.lapis +111 -0
  927. package/examples/github/api.github.com.2026-03-10/issues/issues-get-event.op.lapis +503 -0
  928. package/examples/github/api.github.com.2026-03-10/issues/issues-get-label.op.lapis +33 -0
  929. package/examples/github/api.github.com.2026-03-10/issues/issues-get-milestone.op.lapis +67 -0
  930. package/examples/github/api.github.com.2026-03-10/issues/issues-get-parent.op.lapis +341 -0
  931. package/examples/github/api.github.com.2026-03-10/issues/issues-get.op.lapis +348 -0
  932. package/examples/github/api.github.com.2026-03-10/issues/issues-list-assignees.op.lapis +50 -0
  933. package/examples/github/api.github.com.2026-03-10/issues/issues-list-comments-for-repo.op.lapis +122 -0
  934. package/examples/github/api.github.com.2026-03-10/issues/issues-list-comments.op.lapis +122 -0
  935. package/examples/github/api.github.com.2026-03-10/issues/issues-list-dependencies-blocked-by.op.lapis +343 -0
  936. package/examples/github/api.github.com.2026-03-10/issues/issues-list-dependencies-blocking.op.lapis +343 -0
  937. package/examples/github/api.github.com.2026-03-10/issues/issues-list-events-for-repo.op.lapis +490 -0
  938. package/examples/github/api.github.com.2026-03-10/issues/issues-list-events-for-timeline.op.lapis +43 -0
  939. package/examples/github/api.github.com.2026-03-10/issues/issues-list-events.op.lapis +26 -0
  940. package/examples/github/api.github.com.2026-03-10/issues/issues-list-for-authenticated-user.op.lapis +341 -0
  941. package/examples/github/api.github.com.2026-03-10/issues/issues-list-for-org.op.lapis +343 -0
  942. package/examples/github/api.github.com.2026-03-10/issues/issues-list-for-repo.op.lapis +354 -0
  943. package/examples/github/api.github.com.2026-03-10/issues/issues-list-issue-field-values-for-issue.op.lapis +48 -0
  944. package/examples/github/api.github.com.2026-03-10/issues/issues-list-labels-for-milestone.op.lapis +28 -0
  945. package/examples/github/api.github.com.2026-03-10/issues/issues-list-labels-for-repo.op.lapis +35 -0
  946. package/examples/github/api.github.com.2026-03-10/issues/issues-list-labels-on-issue.op.lapis +43 -0
  947. package/examples/github/api.github.com.2026-03-10/issues/issues-list-milestones.op.lapis +71 -0
  948. package/examples/github/api.github.com.2026-03-10/issues/issues-list-sub-issues.op.lapis +343 -0
  949. package/examples/github/api.github.com.2026-03-10/issues/issues-list.op.lapis +353 -0
  950. package/examples/github/api.github.com.2026-03-10/issues/issues-lock.op.lapis +45 -0
  951. package/examples/github/api.github.com.2026-03-10/issues/issues-pin-comment.op.lapis +138 -0
  952. package/examples/github/api.github.com.2026-03-10/issues/issues-remove-all-labels.op.lapis +30 -0
  953. package/examples/github/api.github.com.2026-03-10/issues/issues-remove-assignees.op.lapis +322 -0
  954. package/examples/github/api.github.com.2026-03-10/issues/issues-remove-dependency-blocked-by.op.lapis +366 -0
  955. package/examples/github/api.github.com.2026-03-10/issues/issues-remove-label.op.lapis +41 -0
  956. package/examples/github/api.github.com.2026-03-10/issues/issues-remove-sub-issue.op.lapis +345 -0
  957. package/examples/github/api.github.com.2026-03-10/issues/issues-reprioritize-sub-issue.op.lapis +351 -0
  958. package/examples/github/api.github.com.2026-03-10/issues/issues-set-issue-field-values.op.lapis +75 -0
  959. package/examples/github/api.github.com.2026-03-10/issues/issues-set-labels.op.lapis +47 -0
  960. package/examples/github/api.github.com.2026-03-10/issues/issues-unlock.op.lapis +30 -0
  961. package/examples/github/api.github.com.2026-03-10/issues/issues-unpin-comment.op.lapis +50 -0
  962. package/examples/github/api.github.com.2026-03-10/issues/issues-update-comment.op.lapis +111 -0
  963. package/examples/github/api.github.com.2026-03-10/issues/issues-update-label.op.lapis +28 -0
  964. package/examples/github/api.github.com.2026-03-10/issues/issues-update-milestone.op.lapis +62 -0
  965. package/examples/github/api.github.com.2026-03-10/issues/issues-update.op.lapis +370 -0
  966. package/examples/github/api.github.com.2026-03-10/licenses/index.md +9 -0
  967. package/examples/github/api.github.com.2026-03-10/licenses/licenses-get-all-commonly-used.op.lapis +25 -0
  968. package/examples/github/api.github.com.2026-03-10/licenses/licenses-get-for-repo.op.lapis +51 -0
  969. package/examples/github/api.github.com.2026-03-10/licenses/licenses-get.op.lapis +44 -0
  970. package/examples/github/api.github.com.2026-03-10/markdown/index.md +8 -0
  971. package/examples/github/api.github.com.2026-03-10/markdown/markdown-render-raw.op.lapis +12 -0
  972. package/examples/github/api.github.com.2026-03-10/markdown/markdown-render.op.lapis +15 -0
  973. package/examples/github/api.github.com.2026-03-10/merge-queue/index.md +8 -0
  974. package/examples/github/api.github.com.2026-03-10/merge-queue/merge-group-checks-requested.webhook.lapis +219 -0
  975. package/examples/github/api.github.com.2026-03-10/merge-queue/merge-group-destroyed.webhook.lapis +220 -0
  976. package/examples/github/api.github.com.2026-03-10/meta/index.md +11 -0
  977. package/examples/github/api.github.com.2026-03-10/meta/meta-get-all-versions.op.lapis +21 -0
  978. package/examples/github/api.github.com.2026-03-10/meta/meta-get-octocat.op.lapis +13 -0
  979. package/examples/github/api.github.com.2026-03-10/meta/meta-get-zen.op.lapis +12 -0
  980. package/examples/github/api.github.com.2026-03-10/meta/meta-get.op.lapis +37 -0
  981. package/examples/github/api.github.com.2026-03-10/meta/meta-root.op.lapis +47 -0
  982. package/examples/github/api.github.com.2026-03-10/migrations/index.md +20 -0
  983. package/examples/github/api.github.com.2026-03-10/migrations/migrations-cancel-import.op.lapis +24 -0
  984. package/examples/github/api.github.com.2026-03-10/migrations/migrations-delete-archive-for-authenticated-user.op.lapis +35 -0
  985. package/examples/github/api.github.com.2026-03-10/migrations/migrations-delete-archive-for-org.op.lapis +22 -0
  986. package/examples/github/api.github.com.2026-03-10/migrations/migrations-download-archive-for-org.op.lapis +22 -0
  987. package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-archive-for-authenticated-user.op.lapis +46 -0
  988. package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-commit-authors.op.lapis +44 -0
  989. package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-import-status.op.lapis +80 -0
  990. package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-large-files.op.lapis +32 -0
  991. package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-status-for-authenticated-user.op.lapis +159 -0
  992. package/examples/github/api.github.com.2026-03-10/migrations/migrations-get-status-for-org.op.lapis +146 -0
  993. package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-for-authenticated-user.op.lapis +147 -0
  994. package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-for-org.op.lapis +135 -0
  995. package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-repos-for-authenticated-user.op.lapis +97 -0
  996. package/examples/github/api.github.com.2026-03-10/migrations/migrations-list-repos-for-org.op.lapis +98 -0
  997. package/examples/github/api.github.com.2026-03-10/migrations/migrations-map-commit-author.op.lapis +51 -0
  998. package/examples/github/api.github.com.2026-03-10/migrations/migrations-set-lfs-preference.op.lapis +61 -0
  999. package/examples/github/api.github.com.2026-03-10/migrations/migrations-start-for-authenticated-user.op.lapis +160 -0
  1000. package/examples/github/api.github.com.2026-03-10/migrations/migrations-start-for-org.op.lapis +154 -0
  1001. package/examples/github/api.github.com.2026-03-10/migrations/migrations-start-import.op.lapis +71 -0
  1002. package/examples/github/api.github.com.2026-03-10/migrations/migrations-unlock-repo-for-authenticated-user.op.lapis +36 -0
  1003. package/examples/github/api.github.com.2026-03-10/migrations/migrations-unlock-repo-for-org.op.lapis +23 -0
  1004. package/examples/github/api.github.com.2026-03-10/migrations/migrations-update-import.op.lapis +59 -0
  1005. package/examples/github/api.github.com.2026-03-10/oidc/index.md +14 -0
  1006. package/examples/github/api.github.com.2026-03-10/oidc/oidc-create-oidc-custom-property-inclusion-for-enterprise.op.lapis +50 -0
  1007. package/examples/github/api.github.com.2026-03-10/oidc/oidc-create-oidc-custom-property-inclusion-for-org.op.lapis +50 -0
  1008. package/examples/github/api.github.com.2026-03-10/oidc/oidc-delete-oidc-custom-property-inclusion-for-enterprise.op.lapis +29 -0
  1009. package/examples/github/api.github.com.2026-03-10/oidc/oidc-delete-oidc-custom-property-inclusion-for-org.op.lapis +29 -0
  1010. package/examples/github/api.github.com.2026-03-10/oidc/oidc-get-oidc-custom-sub-template-for-org.op.lapis +20 -0
  1011. package/examples/github/api.github.com.2026-03-10/oidc/oidc-list-oidc-custom-property-inclusions-for-enterprise.op.lapis +47 -0
  1012. package/examples/github/api.github.com.2026-03-10/oidc/oidc-list-oidc-custom-property-inclusions-for-org.op.lapis +47 -0
  1013. package/examples/github/api.github.com.2026-03-10/oidc/oidc-update-oidc-custom-sub-template-for-org.op.lapis +35 -0
  1014. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-route-stats-by-actor.op.lapis +128 -0
  1015. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-subject-stats.op.lapis +21 -0
  1016. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-summary-stats-by-actor.op.lapis +127 -0
  1017. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-summary-stats-by-user.op.lapis +22 -0
  1018. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-summary-stats.op.lapis +21 -0
  1019. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-time-stats-by-actor.op.lapis +124 -0
  1020. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-time-stats-by-user.op.lapis +18 -0
  1021. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-time-stats.op.lapis +17 -0
  1022. package/examples/github/api.github.com.2026-03-10/orgs/api-insights-get-user-stats.op.lapis +22 -0
  1023. package/examples/github/api.github.com.2026-03-10/orgs/index.md +110 -0
  1024. package/examples/github/api.github.com.2026-03-10/orgs/orgs-add-security-manager-team.op.lapis +15 -0
  1025. package/examples/github/api.github.com.2026-03-10/orgs/orgs-assign-team-to-org-role.op.lapis +24 -0
  1026. package/examples/github/api.github.com.2026-03-10/orgs/orgs-assign-user-to-org-role.op.lapis +24 -0
  1027. package/examples/github/api.github.com.2026-03-10/orgs/orgs-block-user.op.lapis +21 -0
  1028. package/examples/github/api.github.com.2026-03-10/orgs/orgs-cancel-invitation.op.lapis +29 -0
  1029. package/examples/github/api.github.com.2026-03-10/orgs/orgs-check-blocked-user.op.lapis +22 -0
  1030. package/examples/github/api.github.com.2026-03-10/orgs/orgs-check-membership-for-user.op.lapis +18 -0
  1031. package/examples/github/api.github.com.2026-03-10/orgs/orgs-check-public-membership-for-user.op.lapis +18 -0
  1032. package/examples/github/api.github.com.2026-03-10/orgs/orgs-convert-member-to-outside-collaborator.op.lapis +26 -0
  1033. package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-artifact-deployment-record.op.lapis +68 -0
  1034. package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-artifact-storage-record.op.lapis +209 -0
  1035. package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-invitation.op.lapis +73 -0
  1036. package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-issue-field.op.lapis +51 -0
  1037. package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-issue-type.op.lapis +49 -0
  1038. package/examples/github/api.github.com.2026-03-10/orgs/orgs-create-webhook.op.lapis +55 -0
  1039. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-create-or-update-organization-definition.op.lapis +68 -0
  1040. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-create-or-update-organization-definitions.op.lapis +61 -0
  1041. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-create-or-update-organization-values.op.lapis +47 -0
  1042. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-delete-organization-definition.op.lapis +32 -0
  1043. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-get-organization-definition.op.lapis +56 -0
  1044. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-get-organization-definitions.op.lapis +55 -0
  1045. package/examples/github/api.github.com.2026-03-10/orgs/orgs-custom-properties-for-repos-get-organization-values.op.lapis +44 -0
  1046. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-attestations-bulk.op.lapis +21 -0
  1047. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-attestations-by-id.op.lapis +29 -0
  1048. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-attestations-by-subject-digest.op.lapis +22 -0
  1049. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-issue-field.op.lapis +31 -0
  1050. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-issue-type.op.lapis +31 -0
  1051. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete-webhook.op.lapis +25 -0
  1052. package/examples/github/api.github.com.2026-03-10/orgs/orgs-delete.op.lapis +37 -0
  1053. package/examples/github/api.github.com.2026-03-10/orgs/orgs-disable-selected-repository-immutable-releases-organization.op.lapis +15 -0
  1054. package/examples/github/api.github.com.2026-03-10/orgs/orgs-enable-or-disable-security-product-on-all-org-repos.op.lapis +24 -0
  1055. package/examples/github/api.github.com.2026-03-10/orgs/orgs-enable-selected-repository-immutable-releases-organization.op.lapis +15 -0
  1056. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-immutable-releases-settings-repositories.op.lapis +166 -0
  1057. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-immutable-releases-settings.op.lapis +20 -0
  1058. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-membership-for-authenticated-user.op.lapis +79 -0
  1059. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-membership-for-user.op.lapis +80 -0
  1060. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-org-role.op.lapis +69 -0
  1061. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-org-ruleset-history.op.lapis +42 -0
  1062. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-org-ruleset-version.op.lapis +42 -0
  1063. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-webhook-config-for-org.op.lapis +25 -0
  1064. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-webhook-delivery.op.lapis +50 -0
  1065. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get-webhook.op.lapis +47 -0
  1066. package/examples/github/api.github.com.2026-03-10/orgs/orgs-get.op.lapis +95 -0
  1067. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-app-installations.op.lapis +125 -0
  1068. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-artifact-deployment-records.op.lapis +30 -0
  1069. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-artifact-storage-records.op.lapis +184 -0
  1070. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-attestation-repositories.op.lapis +19 -0
  1071. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-attestations-bulk.op.lapis +22 -0
  1072. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-attestations.op.lapis +21 -0
  1073. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-blocked-users.op.lapis +41 -0
  1074. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-failed-invitations.op.lapis +63 -0
  1075. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-for-authenticated-user.op.lapis +48 -0
  1076. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-for-user.op.lapis +32 -0
  1077. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-invitation-teams.op.lapis +76 -0
  1078. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-issue-fields.op.lapis +34 -0
  1079. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-issue-types.op.lapis +33 -0
  1080. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-members.op.lapis +50 -0
  1081. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-memberships-for-authenticated-user.op.lapis +87 -0
  1082. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-org-role-teams.op.lapis +77 -0
  1083. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-org-role-users.op.lapis +83 -0
  1084. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-org-roles.op.lapis +69 -0
  1085. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-outside-collaborators.op.lapis +42 -0
  1086. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grant-repositories.op.lapis +188 -0
  1087. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grant-request-repositories.op.lapis +188 -0
  1088. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grant-requests.op.lapis +197 -0
  1089. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pat-grants.op.lapis +196 -0
  1090. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-pending-invitations.op.lapis +68 -0
  1091. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-public-members.op.lapis +41 -0
  1092. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-security-manager-teams.op.lapis +46 -0
  1093. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-webhook-deliveries.op.lapis +50 -0
  1094. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list-webhooks.op.lapis +47 -0
  1095. package/examples/github/api.github.com.2026-03-10/orgs/orgs-list.op.lapis +32 -0
  1096. package/examples/github/api.github.com.2026-03-10/orgs/orgs-ping-webhook.op.lapis +26 -0
  1097. package/examples/github/api.github.com.2026-03-10/orgs/orgs-redeliver-webhook-delivery.op.lapis +31 -0
  1098. package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-member.op.lapis +30 -0
  1099. package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-membership-for-user.op.lapis +32 -0
  1100. package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-outside-collaborator.op.lapis +20 -0
  1101. package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-public-membership-for-authenticated-user.op.lapis +14 -0
  1102. package/examples/github/api.github.com.2026-03-10/orgs/orgs-remove-security-manager-team.op.lapis +15 -0
  1103. package/examples/github/api.github.com.2026-03-10/orgs/orgs-review-pat-grant-request.op.lapis +45 -0
  1104. package/examples/github/api.github.com.2026-03-10/orgs/orgs-review-pat-grant-requests-in-bulk.op.lapis +45 -0
  1105. package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-all-org-roles-team.op.lapis +16 -0
  1106. package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-all-org-roles-user.op.lapis +16 -0
  1107. package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-org-role-team.op.lapis +17 -0
  1108. package/examples/github/api.github.com.2026-03-10/orgs/orgs-revoke-org-role-user.op.lapis +17 -0
  1109. package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-cluster-deployment-records.op.lapis +93 -0
  1110. package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-immutable-releases-settings-repositories.op.lapis +15 -0
  1111. package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-immutable-releases-settings.op.lapis +16 -0
  1112. package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-membership-for-user.op.lapis +90 -0
  1113. package/examples/github/api.github.com.2026-03-10/orgs/orgs-set-public-membership-for-authenticated-user.op.lapis +23 -0
  1114. package/examples/github/api.github.com.2026-03-10/orgs/orgs-unblock-user.op.lapis +14 -0
  1115. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-issue-field.op.lapis +51 -0
  1116. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-issue-type.op.lapis +50 -0
  1117. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-membership-for-authenticated-user.op.lapis +86 -0
  1118. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-pat-access.op.lapis +44 -0
  1119. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-pat-accesses.op.lapis +44 -0
  1120. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-webhook-config-for-org.op.lapis +29 -0
  1121. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update-webhook.op.lapis +60 -0
  1122. package/examples/github/api.github.com.2026-03-10/orgs/orgs-update.op.lapis +129 -0
  1123. package/examples/github/api.github.com.2026-03-10/packages/index.md +33 -0
  1124. package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-for-authenticated-user.op.lapis +37 -0
  1125. package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-for-org.op.lapis +39 -0
  1126. package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-for-user.op.lapis +39 -0
  1127. package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-version-for-authenticated-user.op.lapis +39 -0
  1128. package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-version-for-org.op.lapis +40 -0
  1129. package/examples/github/api.github.com.2026-03-10/packages/packages-delete-package-version-for-user.op.lapis +40 -0
  1130. 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
  1131. package/examples/github/api.github.com.2026-03-10/packages/packages-get-all-package-versions-for-package-owned-by-org.op.lapis +67 -0
  1132. package/examples/github/api.github.com.2026-03-10/packages/packages-get-all-package-versions-for-package-owned-by-user.op.lapis +64 -0
  1133. package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-for-authenticated-user.op.lapis +201 -0
  1134. package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-for-organization.op.lapis +202 -0
  1135. package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-for-user.op.lapis +202 -0
  1136. package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-version-for-authenticated-user.op.lapis +42 -0
  1137. package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-version-for-organization.op.lapis +43 -0
  1138. package/examples/github/api.github.com.2026-03-10/packages/packages-get-package-version-for-user.op.lapis +43 -0
  1139. package/examples/github/api.github.com.2026-03-10/packages/packages-list-docker-migration-conflicting-packages-for-authenticated-user.op.lapis +199 -0
  1140. package/examples/github/api.github.com.2026-03-10/packages/packages-list-docker-migration-conflicting-packages-for-organization.op.lapis +215 -0
  1141. package/examples/github/api.github.com.2026-03-10/packages/packages-list-docker-migration-conflicting-packages-for-user.op.lapis +215 -0
  1142. package/examples/github/api.github.com.2026-03-10/packages/packages-list-packages-for-authenticated-user.op.lapis +207 -0
  1143. package/examples/github/api.github.com.2026-03-10/packages/packages-list-packages-for-organization.op.lapis +222 -0
  1144. package/examples/github/api.github.com.2026-03-10/packages/packages-list-packages-for-user.op.lapis +222 -0
  1145. package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-for-authenticated-user.op.lapis +41 -0
  1146. package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-for-org.op.lapis +43 -0
  1147. package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-for-user.op.lapis +43 -0
  1148. package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-version-for-authenticated-user.op.lapis +41 -0
  1149. package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-version-for-org.op.lapis +43 -0
  1150. package/examples/github/api.github.com.2026-03-10/packages/packages-restore-package-version-for-user.op.lapis +43 -0
  1151. package/examples/github/api.github.com.2026-03-10/private-registries/index.md +12 -0
  1152. package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-create-org-private-registry.op.lapis +82 -0
  1153. package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-delete-org-private-registry.op.lapis +30 -0
  1154. package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-get-org-private-registry.op.lapis +51 -0
  1155. package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-get-org-public-key.op.lapis +24 -0
  1156. package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-list-org-private-registries.op.lapis +61 -0
  1157. package/examples/github/api.github.com.2026-03-10/private-registries/private-registries-update-org-private-registry.op.lapis +54 -0
  1158. package/examples/github/api.github.com.2026-03-10/projects/index.md +32 -0
  1159. package/examples/github/api.github.com.2026-03-10/projects/projects-add-field-for-org.op.lapis +225 -0
  1160. package/examples/github/api.github.com.2026-03-10/projects/projects-add-field-for-user.op.lapis +226 -0
  1161. package/examples/github/api.github.com.2026-03-10/projects/projects-add-item-for-org.op.lapis +74 -0
  1162. package/examples/github/api.github.com.2026-03-10/projects/projects-add-item-for-user.op.lapis +74 -0
  1163. package/examples/github/api.github.com.2026-03-10/projects/projects-create-draft-item-for-authenticated-user.op.lapis +71 -0
  1164. package/examples/github/api.github.com.2026-03-10/projects/projects-create-draft-item-for-org.op.lapis +71 -0
  1165. package/examples/github/api.github.com.2026-03-10/projects/projects-create-view-for-org.op.lapis +96 -0
  1166. package/examples/github/api.github.com.2026-03-10/projects/projects-create-view-for-user.op.lapis +96 -0
  1167. package/examples/github/api.github.com.2026-03-10/projects/projects-delete-item-for-org.op.lapis +30 -0
  1168. package/examples/github/api.github.com.2026-03-10/projects/projects-delete-item-for-user.op.lapis +30 -0
  1169. package/examples/github/api.github.com.2026-03-10/projects/projects-get-field-for-org.op.lapis +221 -0
  1170. package/examples/github/api.github.com.2026-03-10/projects/projects-get-field-for-user.op.lapis +221 -0
  1171. package/examples/github/api.github.com.2026-03-10/projects/projects-get-for-org.op.lapis +110 -0
  1172. package/examples/github/api.github.com.2026-03-10/projects/projects-get-for-user.op.lapis +110 -0
  1173. package/examples/github/api.github.com.2026-03-10/projects/projects-get-org-item.op.lapis +72 -0
  1174. package/examples/github/api.github.com.2026-03-10/projects/projects-get-user-item.op.lapis +72 -0
  1175. package/examples/github/api.github.com.2026-03-10/projects/projects-list-fields-for-org.op.lapis +223 -0
  1176. package/examples/github/api.github.com.2026-03-10/projects/projects-list-fields-for-user.op.lapis +223 -0
  1177. package/examples/github/api.github.com.2026-03-10/projects/projects-list-for-org.op.lapis +113 -0
  1178. package/examples/github/api.github.com.2026-03-10/projects/projects-list-for-user.op.lapis +113 -0
  1179. package/examples/github/api.github.com.2026-03-10/projects/projects-list-items-for-org.op.lapis +75 -0
  1180. package/examples/github/api.github.com.2026-03-10/projects/projects-list-items-for-user.op.lapis +75 -0
  1181. package/examples/github/api.github.com.2026-03-10/projects/projects-list-view-items-for-org.op.lapis +82 -0
  1182. package/examples/github/api.github.com.2026-03-10/projects/projects-list-view-items-for-user.op.lapis +82 -0
  1183. package/examples/github/api.github.com.2026-03-10/projects/projects-update-item-for-org.op.lapis +85 -0
  1184. package/examples/github/api.github.com.2026-03-10/projects/projects-update-item-for-user.op.lapis +85 -0
  1185. package/examples/github/api.github.com.2026-03-10/pulls/index.md +33 -0
  1186. package/examples/github/api.github.com.2026-03-10/pulls/pulls-check-if-merged.op.lapis +19 -0
  1187. package/examples/github/api.github.com.2026-03-10/pulls/pulls-create-reply-for-review-comment.op.lapis +103 -0
  1188. package/examples/github/api.github.com.2026-03-10/pulls/pulls-create-review-comment.op.lapis +119 -0
  1189. package/examples/github/api.github.com.2026-03-10/pulls/pulls-create-review.op.lapis +86 -0
  1190. package/examples/github/api.github.com.2026-03-10/pulls/pulls-create.op.lapis +475 -0
  1191. package/examples/github/api.github.com.2026-03-10/pulls/pulls-delete-pending-review.op.lapis +78 -0
  1192. package/examples/github/api.github.com.2026-03-10/pulls/pulls-delete-review-comment.op.lapis +23 -0
  1193. package/examples/github/api.github.com.2026-03-10/pulls/pulls-dismiss-review.op.lapis +82 -0
  1194. package/examples/github/api.github.com.2026-03-10/pulls/pulls-get-review-comment.op.lapis +99 -0
  1195. package/examples/github/api.github.com.2026-03-10/pulls/pulls-get-review.op.lapis +72 -0
  1196. package/examples/github/api.github.com.2026-03-10/pulls/pulls-get.op.lapis +489 -0
  1197. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-comments-for-review.op.lapis +102 -0
  1198. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-commits.op.lapis +65 -0
  1199. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-files.op.lapis +59 -0
  1200. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-requested-reviewers.op.lapis +95 -0
  1201. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-review-comments-for-repo.op.lapis +96 -0
  1202. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-review-comments.op.lapis +97 -0
  1203. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list-reviews.op.lapis +65 -0
  1204. package/examples/github/api.github.com.2026-03-10/pulls/pulls-list.op.lapis +478 -0
  1205. package/examples/github/api.github.com.2026-03-10/pulls/pulls-merge.op.lapis +58 -0
  1206. package/examples/github/api.github.com.2026-03-10/pulls/pulls-remove-requested-reviewers.op.lapis +464 -0
  1207. package/examples/github/api.github.com.2026-03-10/pulls/pulls-request-reviewers.op.lapis +469 -0
  1208. package/examples/github/api.github.com.2026-03-10/pulls/pulls-submit-review.op.lapis +87 -0
  1209. package/examples/github/api.github.com.2026-03-10/pulls/pulls-update-branch.op.lapis +33 -0
  1210. package/examples/github/api.github.com.2026-03-10/pulls/pulls-update-review-comment.op.lapis +92 -0
  1211. package/examples/github/api.github.com.2026-03-10/pulls/pulls-update-review.op.lapis +72 -0
  1212. package/examples/github/api.github.com.2026-03-10/pulls/pulls-update.op.lapis +472 -0
  1213. package/examples/github/api.github.com.2026-03-10/rate-limit/index.md +7 -0
  1214. package/examples/github/api.github.com.2026-03-10/rate-limit/rate-limit-get.op.lapis +38 -0
  1215. package/examples/github/api.github.com.2026-03-10/reactions/index.md +21 -0
  1216. package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-commit-comment.op.lapis +56 -0
  1217. package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-issue-comment.op.lapis +56 -0
  1218. package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-issue.op.lapis +56 -0
  1219. package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-pull-request-review-comment.op.lapis +56 -0
  1220. package/examples/github/api.github.com.2026-03-10/reactions/reactions-create-for-release.op.lapis +56 -0
  1221. package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-commit-comment.op.lapis +18 -0
  1222. package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-issue-comment.op.lapis +18 -0
  1223. package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-issue.op.lapis +18 -0
  1224. package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-pull-request-comment.op.lapis +18 -0
  1225. package/examples/github/api.github.com.2026-03-10/reactions/reactions-delete-for-release.op.lapis +18 -0
  1226. package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-commit-comment.op.lapis +59 -0
  1227. package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-issue-comment.op.lapis +59 -0
  1228. package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-issue.op.lapis +66 -0
  1229. package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-pull-request-review-comment.op.lapis +59 -0
  1230. package/examples/github/api.github.com.2026-03-10/reactions/reactions-list-for-release.op.lapis +59 -0
  1231. package/examples/github/api.github.com.2026-03-10/repos/index.md +209 -0
  1232. package/examples/github/api.github.com.2026-03-10/repos/repos-accept-invitation-for-authenticated-user.op.lapis +40 -0
  1233. package/examples/github/api.github.com.2026-03-10/repos/repos-add-app-access-restrictions.op.lapis +44 -0
  1234. package/examples/github/api.github.com.2026-03-10/repos/repos-add-collaborator.op.lapis +228 -0
  1235. package/examples/github/api.github.com.2026-03-10/repos/repos-add-status-check-contexts.op.lapis +37 -0
  1236. package/examples/github/api.github.com.2026-03-10/repos/repos-add-team-access-restrictions.op.lapis +75 -0
  1237. package/examples/github/api.github.com.2026-03-10/repos/repos-add-user-access-restrictions.op.lapis +53 -0
  1238. package/examples/github/api.github.com.2026-03-10/repos/repos-cancel-pages-deployment.op.lapis +24 -0
  1239. package/examples/github/api.github.com.2026-03-10/repos/repos-check-automated-security-fixes.op.lapis +24 -0
  1240. package/examples/github/api.github.com.2026-03-10/repos/repos-check-collaborator.op.lapis +22 -0
  1241. package/examples/github/api.github.com.2026-03-10/repos/repos-check-immutable-releases.op.lapis +25 -0
  1242. package/examples/github/api.github.com.2026-03-10/repos/repos-check-private-vulnerability-reporting.op.lapis +23 -0
  1243. package/examples/github/api.github.com.2026-03-10/repos/repos-check-vulnerability-alerts.op.lapis +18 -0
  1244. package/examples/github/api.github.com.2026-03-10/repos/repos-codeowners-errors.op.lapis +27 -0
  1245. package/examples/github/api.github.com.2026-03-10/repos/repos-compare-commits.op.lapis +130 -0
  1246. package/examples/github/api.github.com.2026-03-10/repos/repos-create-attestation.op.lapis +32 -0
  1247. package/examples/github/api.github.com.2026-03-10/repos/repos-create-autolink.op.lapis +33 -0
  1248. package/examples/github/api.github.com.2026-03-10/repos/repos-create-commit-comment.op.lapis +95 -0
  1249. package/examples/github/api.github.com.2026-03-10/repos/repos-create-commit-signature-protection.op.lapis +30 -0
  1250. package/examples/github/api.github.com.2026-03-10/repos/repos-create-commit-status.op.lapis +58 -0
  1251. package/examples/github/api.github.com.2026-03-10/repos/repos-create-deploy-key.op.lapis +38 -0
  1252. package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment-branch-policy.op.lapis +44 -0
  1253. package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment-protection-rule.op.lapis +33 -0
  1254. package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment-status.op.lapis +91 -0
  1255. package/examples/github/api.github.com.2026-03-10/repos/repos-create-deployment.op.lapis +130 -0
  1256. package/examples/github/api.github.com.2026-03-10/repos/repos-create-dispatch-event.op.lapis +33 -0
  1257. package/examples/github/api.github.com.2026-03-10/repos/repos-create-for-authenticated-user.op.lapis +455 -0
  1258. package/examples/github/api.github.com.2026-03-10/repos/repos-create-fork.op.lapis +427 -0
  1259. package/examples/github/api.github.com.2026-03-10/repos/repos-create-in-org.op.lapis +437 -0
  1260. package/examples/github/api.github.com.2026-03-10/repos/repos-create-or-update-environment.op.lapis +49 -0
  1261. package/examples/github/api.github.com.2026-03-10/repos/repos-create-or-update-file-contents.op.lapis +81 -0
  1262. package/examples/github/api.github.com.2026-03-10/repos/repos-create-org-ruleset.op.lapis +211 -0
  1263. package/examples/github/api.github.com.2026-03-10/repos/repos-create-pages-deployment.op.lapis +49 -0
  1264. package/examples/github/api.github.com.2026-03-10/repos/repos-create-pages-site.op.lapis +71 -0
  1265. package/examples/github/api.github.com.2026-03-10/repos/repos-create-release.op.lapis +143 -0
  1266. package/examples/github/api.github.com.2026-03-10/repos/repos-create-repo-ruleset.op.lapis +211 -0
  1267. package/examples/github/api.github.com.2026-03-10/repos/repos-create-using-template.op.lapis +398 -0
  1268. package/examples/github/api.github.com.2026-03-10/repos/repos-create-webhook.op.lapis +68 -0
  1269. package/examples/github/api.github.com.2026-03-10/repos/repos-custom-properties-for-repos-create-or-update-repository-values.op.lapis +43 -0
  1270. package/examples/github/api.github.com.2026-03-10/repos/repos-custom-properties-for-repos-get-repository-values.op.lapis +36 -0
  1271. package/examples/github/api.github.com.2026-03-10/repos/repos-decline-invitation-for-authenticated-user.op.lapis +34 -0
  1272. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-access-restrictions.op.lapis +16 -0
  1273. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-admin-branch-protection.op.lapis +24 -0
  1274. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-an-environment.op.lapis +15 -0
  1275. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-autolink.op.lapis +24 -0
  1276. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-branch-protection.op.lapis +23 -0
  1277. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-commit-comment.op.lapis +22 -0
  1278. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-commit-signature-protection.op.lapis +24 -0
  1279. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-deploy-key.op.lapis +15 -0
  1280. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-deployment-branch-policy.op.lapis +17 -0
  1281. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-deployment.op.lapis +34 -0
  1282. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-file.op.lapis +92 -0
  1283. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-invitation.op.lapis +14 -0
  1284. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-org-ruleset.op.lapis +29 -0
  1285. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-pages-site.op.lapis +37 -0
  1286. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-pull-request-review-protection.op.lapis +23 -0
  1287. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-release-asset.op.lapis +22 -0
  1288. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-release.op.lapis +23 -0
  1289. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-repo-ruleset.op.lapis +30 -0
  1290. package/examples/github/api.github.com.2026-03-10/repos/repos-delete-webhook.op.lapis +24 -0
  1291. package/examples/github/api.github.com.2026-03-10/repos/repos-delete.op.lapis +37 -0
  1292. package/examples/github/api.github.com.2026-03-10/repos/repos-disable-automated-security-fixes.op.lapis +14 -0
  1293. package/examples/github/api.github.com.2026-03-10/repos/repos-disable-deployment-protection-rule.op.lapis +18 -0
  1294. package/examples/github/api.github.com.2026-03-10/repos/repos-disable-immutable-releases.op.lapis +22 -0
  1295. package/examples/github/api.github.com.2026-03-10/repos/repos-disable-private-vulnerability-reporting.op.lapis +22 -0
  1296. package/examples/github/api.github.com.2026-03-10/repos/repos-disable-vulnerability-alerts.op.lapis +16 -0
  1297. package/examples/github/api.github.com.2026-03-10/repos/repos-download-tarball-archive.op.lapis +18 -0
  1298. package/examples/github/api.github.com.2026-03-10/repos/repos-download-zipball-archive.op.lapis +18 -0
  1299. package/examples/github/api.github.com.2026-03-10/repos/repos-enable-automated-security-fixes.op.lapis +14 -0
  1300. package/examples/github/api.github.com.2026-03-10/repos/repos-enable-immutable-releases.op.lapis +22 -0
  1301. package/examples/github/api.github.com.2026-03-10/repos/repos-enable-private-vulnerability-reporting.op.lapis +22 -0
  1302. package/examples/github/api.github.com.2026-03-10/repos/repos-enable-vulnerability-alerts.op.lapis +14 -0
  1303. package/examples/github/api.github.com.2026-03-10/repos/repos-generate-release-notes.op.lapis +32 -0
  1304. package/examples/github/api.github.com.2026-03-10/repos/repos-get-access-restrictions.op.lapis +110 -0
  1305. package/examples/github/api.github.com.2026-03-10/repos/repos-get-admin-branch-protection.op.lapis +21 -0
  1306. package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-deployment-protection-rules.op.lapis +32 -0
  1307. package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-environments.op.lapis +36 -0
  1308. package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-status-check-contexts.op.lapis +24 -0
  1309. package/examples/github/api.github.com.2026-03-10/repos/repos-get-all-topics.op.lapis +28 -0
  1310. package/examples/github/api.github.com.2026-03-10/repos/repos-get-apps-with-access-to-protected-branch.op.lapis +44 -0
  1311. package/examples/github/api.github.com.2026-03-10/repos/repos-get-autolink.op.lapis +33 -0
  1312. package/examples/github/api.github.com.2026-03-10/repos/repos-get-branch-protection.op.lapis +152 -0
  1313. package/examples/github/api.github.com.2026-03-10/repos/repos-get-branch-rules.op.lapis +24 -0
  1314. package/examples/github/api.github.com.2026-03-10/repos/repos-get-branch.op.lapis +194 -0
  1315. package/examples/github/api.github.com.2026-03-10/repos/repos-get-clones.op.lapis +35 -0
  1316. package/examples/github/api.github.com.2026-03-10/repos/repos-get-code-frequency-stats.op.lapis +21 -0
  1317. package/examples/github/api.github.com.2026-03-10/repos/repos-get-collaborator-permission-level.op.lapis +61 -0
  1318. package/examples/github/api.github.com.2026-03-10/repos/repos-get-combined-status-for-ref.op.lapis +200 -0
  1319. package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit-activity-stats.op.lapis +21 -0
  1320. package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit-comment.op.lapis +84 -0
  1321. package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit-signature-protection.op.lapis +32 -0
  1322. package/examples/github/api.github.com.2026-03-10/repos/repos-get-commit.op.lapis +123 -0
  1323. package/examples/github/api.github.com.2026-03-10/repos/repos-get-community-profile-metrics.op.lapis +56 -0
  1324. package/examples/github/api.github.com.2026-03-10/repos/repos-get-content.op.lapis +48 -0
  1325. package/examples/github/api.github.com.2026-03-10/repos/repos-get-contributors-stats.op.lapis +51 -0
  1326. package/examples/github/api.github.com.2026-03-10/repos/repos-get-custom-deployment-protection-rule.op.lapis +32 -0
  1327. package/examples/github/api.github.com.2026-03-10/repos/repos-get-deploy-key.op.lapis +36 -0
  1328. package/examples/github/api.github.com.2026-03-10/repos/repos-get-deployment-branch-policy.op.lapis +37 -0
  1329. package/examples/github/api.github.com.2026-03-10/repos/repos-get-deployment-status.op.lapis +84 -0
  1330. package/examples/github/api.github.com.2026-03-10/repos/repos-get-deployment.op.lapis +86 -0
  1331. package/examples/github/api.github.com.2026-03-10/repos/repos-get-environment.op.lapis +35 -0
  1332. package/examples/github/api.github.com.2026-03-10/repos/repos-get-hash-algorithm.op.lapis +34 -0
  1333. package/examples/github/api.github.com.2026-03-10/repos/repos-get-latest-pages-build.op.lapis +51 -0
  1334. package/examples/github/api.github.com.2026-03-10/repos/repos-get-latest-release.op.lapis +128 -0
  1335. package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-rule-suite.op.lapis +46 -0
  1336. package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-rule-suites.op.lapis +38 -0
  1337. package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-ruleset.op.lapis +198 -0
  1338. package/examples/github/api.github.com.2026-03-10/repos/repos-get-org-rulesets.op.lapis +198 -0
  1339. package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages-build.op.lapis +51 -0
  1340. package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages-deployment.op.lapis +29 -0
  1341. package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages-health-check.op.lapis +37 -0
  1342. package/examples/github/api.github.com.2026-03-10/repos/repos-get-pages.op.lapis +62 -0
  1343. package/examples/github/api.github.com.2026-03-10/repos/repos-get-participation-stats.op.lapis +30 -0
  1344. package/examples/github/api.github.com.2026-03-10/repos/repos-get-pull-request-review-protection.op.lapis +46 -0
  1345. package/examples/github/api.github.com.2026-03-10/repos/repos-get-punch-card-stats.op.lapis +19 -0
  1346. package/examples/github/api.github.com.2026-03-10/repos/repos-get-readme-in-directory.op.lapis +51 -0
  1347. package/examples/github/api.github.com.2026-03-10/repos/repos-get-readme.op.lapis +50 -0
  1348. package/examples/github/api.github.com.2026-03-10/repos/repos-get-release-asset.op.lapis +70 -0
  1349. package/examples/github/api.github.com.2026-03-10/repos/repos-get-release-by-tag.op.lapis +128 -0
  1350. package/examples/github/api.github.com.2026-03-10/repos/repos-get-release.op.lapis +126 -0
  1351. package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-rule-suite.op.lapis +47 -0
  1352. package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-rule-suites.op.lapis +38 -0
  1353. package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-ruleset-history.op.lapis +43 -0
  1354. package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-ruleset-version.op.lapis +43 -0
  1355. package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-ruleset.op.lapis +200 -0
  1356. package/examples/github/api.github.com.2026-03-10/repos/repos-get-repo-rulesets.op.lapis +200 -0
  1357. package/examples/github/api.github.com.2026-03-10/repos/repos-get-status-checks-protection.op.lapis +32 -0
  1358. package/examples/github/api.github.com.2026-03-10/repos/repos-get-teams-with-access-to-protected-branch.op.lapis +76 -0
  1359. package/examples/github/api.github.com.2026-03-10/repos/repos-get-top-paths.op.lapis +30 -0
  1360. package/examples/github/api.github.com.2026-03-10/repos/repos-get-top-referrers.op.lapis +29 -0
  1361. package/examples/github/api.github.com.2026-03-10/repos/repos-get-users-with-access-to-protected-branch.op.lapis +50 -0
  1362. package/examples/github/api.github.com.2026-03-10/repos/repos-get-views.op.lapis +35 -0
  1363. package/examples/github/api.github.com.2026-03-10/repos/repos-get-webhook-config-for-repo.op.lapis +24 -0
  1364. package/examples/github/api.github.com.2026-03-10/repos/repos-get-webhook-delivery.op.lapis +48 -0
  1365. package/examples/github/api.github.com.2026-03-10/repos/repos-get-webhook.op.lapis +51 -0
  1366. package/examples/github/api.github.com.2026-03-10/repos/repos-get.op.lapis +410 -0
  1367. package/examples/github/api.github.com.2026-03-10/repos/repos-list-activities.op.lapis +67 -0
  1368. package/examples/github/api.github.com.2026-03-10/repos/repos-list-attestations.op.lapis +22 -0
  1369. package/examples/github/api.github.com.2026-03-10/repos/repos-list-autolinks.op.lapis +24 -0
  1370. package/examples/github/api.github.com.2026-03-10/repos/repos-list-branches-for-head-commit.op.lapis +41 -0
  1371. package/examples/github/api.github.com.2026-03-10/repos/repos-list-branches.op.lapis +164 -0
  1372. package/examples/github/api.github.com.2026-03-10/repos/repos-list-collaborators.op.lapis +58 -0
  1373. package/examples/github/api.github.com.2026-03-10/repos/repos-list-comments-for-commit.op.lapis +78 -0
  1374. package/examples/github/api.github.com.2026-03-10/repos/repos-list-commit-comments-for-repo.op.lapis +77 -0
  1375. package/examples/github/api.github.com.2026-03-10/repos/repos-list-commit-statuses-for-ref.op.lapis +57 -0
  1376. package/examples/github/api.github.com.2026-03-10/repos/repos-list-commits.op.lapis +116 -0
  1377. package/examples/github/api.github.com.2026-03-10/repos/repos-list-contributors.op.lapis +59 -0
  1378. package/examples/github/api.github.com.2026-03-10/repos/repos-list-custom-deployment-rule-integrations.op.lapis +30 -0
  1379. package/examples/github/api.github.com.2026-03-10/repos/repos-list-deploy-keys.op.lapis +29 -0
  1380. package/examples/github/api.github.com.2026-03-10/repos/repos-list-deployment-branch-policies.op.lapis +39 -0
  1381. package/examples/github/api.github.com.2026-03-10/repos/repos-list-deployment-statuses.op.lapis +86 -0
  1382. package/examples/github/api.github.com.2026-03-10/repos/repos-list-deployments.op.lapis +84 -0
  1383. package/examples/github/api.github.com.2026-03-10/repos/repos-list-for-authenticated-user.op.lapis +174 -0
  1384. package/examples/github/api.github.com.2026-03-10/repos/repos-list-for-org.op.lapis +169 -0
  1385. package/examples/github/api.github.com.2026-03-10/repos/repos-list-for-user.op.lapis +167 -0
  1386. package/examples/github/api.github.com.2026-03-10/repos/repos-list-forks.op.lapis +173 -0
  1387. package/examples/github/api.github.com.2026-03-10/repos/repos-list-invitations-for-authenticated-user.op.lapis +221 -0
  1388. package/examples/github/api.github.com.2026-03-10/repos/repos-list-invitations.op.lapis +201 -0
  1389. package/examples/github/api.github.com.2026-03-10/repos/repos-list-issue-types.op.lapis +36 -0
  1390. package/examples/github/api.github.com.2026-03-10/repos/repos-list-languages.op.lapis +18 -0
  1391. package/examples/github/api.github.com.2026-03-10/repos/repos-list-pages-builds.op.lapis +53 -0
  1392. package/examples/github/api.github.com.2026-03-10/repos/repos-list-public.op.lapis +172 -0
  1393. package/examples/github/api.github.com.2026-03-10/repos/repos-list-pull-requests-associated-with-commit.op.lapis +466 -0
  1394. package/examples/github/api.github.com.2026-03-10/repos/repos-list-release-assets.op.lapis +58 -0
  1395. package/examples/github/api.github.com.2026-03-10/repos/repos-list-releases.op.lapis +130 -0
  1396. package/examples/github/api.github.com.2026-03-10/repos/repos-list-tags.op.lapis +28 -0
  1397. package/examples/github/api.github.com.2026-03-10/repos/repos-list-teams.op.lapis +78 -0
  1398. package/examples/github/api.github.com.2026-03-10/repos/repos-list-webhook-deliveries.op.lapis +48 -0
  1399. package/examples/github/api.github.com.2026-03-10/repos/repos-list-webhooks.op.lapis +52 -0
  1400. package/examples/github/api.github.com.2026-03-10/repos/repos-merge-upstream.op.lapis +29 -0
  1401. package/examples/github/api.github.com.2026-03-10/repos/repos-merge.op.lapis +77 -0
  1402. package/examples/github/api.github.com.2026-03-10/repos/repos-ping-webhook.op.lapis +23 -0
  1403. package/examples/github/api.github.com.2026-03-10/repos/repos-redeliver-webhook-delivery.op.lapis +29 -0
  1404. package/examples/github/api.github.com.2026-03-10/repos/repos-remove-app-access-restrictions.op.lapis +44 -0
  1405. package/examples/github/api.github.com.2026-03-10/repos/repos-remove-collaborator.op.lapis +44 -0
  1406. package/examples/github/api.github.com.2026-03-10/repos/repos-remove-status-check-contexts.op.lapis +30 -0
  1407. package/examples/github/api.github.com.2026-03-10/repos/repos-remove-status-check-protection.op.lapis +15 -0
  1408. package/examples/github/api.github.com.2026-03-10/repos/repos-remove-team-access-restrictions.op.lapis +75 -0
  1409. package/examples/github/api.github.com.2026-03-10/repos/repos-remove-user-access-restrictions.op.lapis +53 -0
  1410. package/examples/github/api.github.com.2026-03-10/repos/repos-rename-branch.op.lapis +213 -0
  1411. package/examples/github/api.github.com.2026-03-10/repos/repos-replace-all-topics.op.lapis +33 -0
  1412. package/examples/github/api.github.com.2026-03-10/repos/repos-request-pages-build.op.lapis +21 -0
  1413. package/examples/github/api.github.com.2026-03-10/repos/repos-set-admin-branch-protection.op.lapis +22 -0
  1414. package/examples/github/api.github.com.2026-03-10/repos/repos-set-app-access-restrictions.op.lapis +44 -0
  1415. package/examples/github/api.github.com.2026-03-10/repos/repos-set-status-check-contexts.op.lapis +30 -0
  1416. package/examples/github/api.github.com.2026-03-10/repos/repos-set-team-access-restrictions.op.lapis +75 -0
  1417. package/examples/github/api.github.com.2026-03-10/repos/repos-set-user-access-restrictions.op.lapis +53 -0
  1418. package/examples/github/api.github.com.2026-03-10/repos/repos-test-push-webhook.op.lapis +25 -0
  1419. package/examples/github/api.github.com.2026-03-10/repos/repos-transfer.op.lapis +166 -0
  1420. package/examples/github/api.github.com.2026-03-10/repos/repos-update-branch-protection.op.lapis +177 -0
  1421. package/examples/github/api.github.com.2026-03-10/repos/repos-update-commit-comment.op.lapis +85 -0
  1422. package/examples/github/api.github.com.2026-03-10/repos/repos-update-deployment-branch-policy.op.lapis +40 -0
  1423. package/examples/github/api.github.com.2026-03-10/repos/repos-update-information-about-pages-site.op.lapis +55 -0
  1424. package/examples/github/api.github.com.2026-03-10/repos/repos-update-invitation.op.lapis +200 -0
  1425. package/examples/github/api.github.com.2026-03-10/repos/repos-update-org-ruleset.op.lapis +212 -0
  1426. package/examples/github/api.github.com.2026-03-10/repos/repos-update-pull-request-review-protection.op.lapis +62 -0
  1427. package/examples/github/api.github.com.2026-03-10/repos/repos-update-release-asset.op.lapis +60 -0
  1428. package/examples/github/api.github.com.2026-03-10/repos/repos-update-release.op.lapis +136 -0
  1429. package/examples/github/api.github.com.2026-03-10/repos/repos-update-repo-ruleset.op.lapis +212 -0
  1430. package/examples/github/api.github.com.2026-03-10/repos/repos-update-status-check-protection.op.lapis +42 -0
  1431. package/examples/github/api.github.com.2026-03-10/repos/repos-update-webhook-config-for-repo.op.lapis +28 -0
  1432. package/examples/github/api.github.com.2026-03-10/repos/repos-update-webhook.op.lapis +62 -0
  1433. package/examples/github/api.github.com.2026-03-10/repos/repos-update.op.lapis +453 -0
  1434. package/examples/github/api.github.com.2026-03-10/repos/repos-upload-release-asset.op.lapis +75 -0
  1435. package/examples/github/api.github.com.2026-03-10/search/index.md +13 -0
  1436. package/examples/github/api.github.com.2026-03-10/search/search-code.op.lapis +216 -0
  1437. package/examples/github/api.github.com.2026-03-10/search/search-commits.op.lapis +228 -0
  1438. package/examples/github/api.github.com.2026-03-10/search/search-issues-and-pull-requests.op.lapis +372 -0
  1439. package/examples/github/api.github.com.2026-03-10/search/search-labels.op.lapis +58 -0
  1440. package/examples/github/api.github.com.2026-03-10/search/search-repos.op.lapis +163 -0
  1441. package/examples/github/api.github.com.2026-03-10/search/search-topics.op.lapis +41 -0
  1442. package/examples/github/api.github.com.2026-03-10/search/search-users.op.lapis +76 -0
  1443. package/examples/github/api.github.com.2026-03-10/secret-scanning/index.md +15 -0
  1444. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-create-push-protection-bypass.op.lapis +43 -0
  1445. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-get-alert.op.lapis +93 -0
  1446. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-get-scan-history.op.lapis +42 -0
  1447. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-alerts-for-org.op.lapis +185 -0
  1448. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-alerts-for-repo.op.lapis +109 -0
  1449. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-locations-for-alert.op.lapis +74 -0
  1450. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-list-org-pattern-configs.op.lapis +50 -0
  1451. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-update-alert.op.lapis +107 -0
  1452. package/examples/github/api.github.com.2026-03-10/secret-scanning/secret-scanning-update-org-pattern-configs.op.lapis +53 -0
  1453. package/examples/github/api.github.com.2026-03-10/security-advisories/index.md +16 -0
  1454. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-fork.op.lapis +423 -0
  1455. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-private-vulnerability-report.op.lapis +222 -0
  1456. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-repository-advisory-cve-request.op.lapis +46 -0
  1457. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-create-repository-advisory.op.lapis +225 -0
  1458. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-get-global-advisory.op.lapis +71 -0
  1459. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-get-repository-advisory.op.lapis +210 -0
  1460. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-list-global-advisories.op.lapis +97 -0
  1461. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-list-org-repository-advisories.op.lapis +212 -0
  1462. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-list-repository-advisories.op.lapis +213 -0
  1463. package/examples/github/api.github.com.2026-03-10/security-advisories/security-advisories-update-repository-advisory.op.lapis +229 -0
  1464. package/examples/github/api.github.com.2026-03-10/teams/index.md +22 -0
  1465. package/examples/github/api.github.com.2026-03-10/teams/teams-add-member-legacy.op.lapis +34 -0
  1466. package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-membership-for-user-in-org.op.lapis +37 -0
  1467. package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-membership-for-user-legacy.op.lapis +43 -0
  1468. package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-repo-permissions-in-org.op.lapis +20 -0
  1469. package/examples/github/api.github.com.2026-03-10/teams/teams-add-or-update-repo-permissions-legacy.op.lapis +33 -0
  1470. package/examples/github/api.github.com.2026-03-10/teams/teams-check-permissions-for-repo-in-org.op.lapis +149 -0
  1471. package/examples/github/api.github.com.2026-03-10/teams/teams-check-permissions-for-repo-legacy.op.lapis +147 -0
  1472. package/examples/github/api.github.com.2026-03-10/teams/teams-create.op.lapis +142 -0
  1473. package/examples/github/api.github.com.2026-03-10/teams/teams-delete-in-org.op.lapis +21 -0
  1474. package/examples/github/api.github.com.2026-03-10/teams/teams-delete-legacy.op.lapis +30 -0
  1475. package/examples/github/api.github.com.2026-03-10/teams/teams-get-by-name.op.lapis +131 -0
  1476. package/examples/github/api.github.com.2026-03-10/teams/teams-get-legacy.op.lapis +129 -0
  1477. package/examples/github/api.github.com.2026-03-10/teams/teams-get-member-legacy.op.lapis +20 -0
  1478. package/examples/github/api.github.com.2026-03-10/teams/teams-get-membership-for-user-in-org.op.lapis +32 -0
  1479. package/examples/github/api.github.com.2026-03-10/teams/teams-get-membership-for-user-legacy.op.lapis +35 -0
  1480. package/examples/github/api.github.com.2026-03-10/teams/teams-list-child-in-org.op.lapis +70 -0
  1481. package/examples/github/api.github.com.2026-03-10/teams/teams-list-child-legacy.op.lapis +89 -0
  1482. package/examples/github/api.github.com.2026-03-10/teams/teams-list-for-authenticated-user.op.lapis +139 -0
  1483. package/examples/github/api.github.com.2026-03-10/teams/teams-list-members-in-org.op.lapis +47 -0
  1484. package/examples/github/api.github.com.2026-03-10/teams/teams-list-members-legacy.op.lapis +55 -0
  1485. package/examples/github/api.github.com.2026-03-10/teams/teams-list-pending-invitations-in-org.op.lapis +62 -0
  1486. package/examples/github/api.github.com.2026-03-10/teams/teams-list-pending-invitations-legacy.op.lapis +57 -0
  1487. package/examples/github/api.github.com.2026-03-10/teams/teams-list-repos-in-org.op.lapis +167 -0
  1488. package/examples/github/api.github.com.2026-03-10/teams/teams-list-repos-legacy.op.lapis +173 -0
  1489. package/examples/github/api.github.com.2026-03-10/teams/teams-list.op.lapis +76 -0
  1490. package/examples/github/api.github.com.2026-03-10/teams/teams-remove-member-legacy.op.lapis +23 -0
  1491. package/examples/github/api.github.com.2026-03-10/teams/teams-remove-membership-for-user-in-org.op.lapis +24 -0
  1492. package/examples/github/api.github.com.2026-03-10/teams/teams-remove-membership-for-user-legacy.op.lapis +23 -0
  1493. package/examples/github/api.github.com.2026-03-10/teams/teams-remove-repo-in-org.op.lapis +18 -0
  1494. package/examples/github/api.github.com.2026-03-10/teams/teams-remove-repo-legacy.op.lapis +17 -0
  1495. package/examples/github/api.github.com.2026-03-10/teams/teams-update-in-org.op.lapis +150 -0
  1496. package/examples/github/api.github.com.2026-03-10/teams/teams-update-legacy.op.lapis +151 -0
  1497. package/examples/github/api.github.com.2026-03-10/users/index.md +53 -0
  1498. package/examples/github/api.github.com.2026-03-10/users/users-add-email-for-authenticated-user.op.lapis +48 -0
  1499. package/examples/github/api.github.com.2026-03-10/users/users-add-social-account-for-authenticated-user.op.lapis +48 -0
  1500. package/examples/github/api.github.com.2026-03-10/users/users-block.op.lapis +41 -0
  1501. package/examples/github/api.github.com.2026-03-10/users/users-check-blocked.op.lapis +35 -0
  1502. package/examples/github/api.github.com.2026-03-10/users/users-check-following-for-user.op.lapis +16 -0
  1503. package/examples/github/api.github.com.2026-03-10/users/users-check-person-is-followed-by-authenticated.op.lapis +34 -0
  1504. package/examples/github/api.github.com.2026-03-10/users/users-create-gpg-key-for-authenticated-user.op.lapis +68 -0
  1505. package/examples/github/api.github.com.2026-03-10/users/users-create-public-ssh-key-for-authenticated-user.op.lapis +55 -0
  1506. package/examples/github/api.github.com.2026-03-10/users/users-create-ssh-signing-key-for-authenticated-user.op.lapis +51 -0
  1507. package/examples/github/api.github.com.2026-03-10/users/users-delete-attestations-bulk.op.lapis +21 -0
  1508. package/examples/github/api.github.com.2026-03-10/users/users-delete-attestations-by-id.op.lapis +29 -0
  1509. package/examples/github/api.github.com.2026-03-10/users/users-delete-attestations-by-subject-digest.op.lapis +22 -0
  1510. package/examples/github/api.github.com.2026-03-10/users/users-delete-email-for-authenticated-user.op.lapis +40 -0
  1511. package/examples/github/api.github.com.2026-03-10/users/users-delete-gpg-key-for-authenticated-user.op.lapis +42 -0
  1512. package/examples/github/api.github.com.2026-03-10/users/users-delete-public-ssh-key-for-authenticated-user.op.lapis +36 -0
  1513. package/examples/github/api.github.com.2026-03-10/users/users-delete-social-account-for-authenticated-user.op.lapis +42 -0
  1514. package/examples/github/api.github.com.2026-03-10/users/users-delete-ssh-signing-key-for-authenticated-user.op.lapis +36 -0
  1515. package/examples/github/api.github.com.2026-03-10/users/users-follow.op.lapis +42 -0
  1516. package/examples/github/api.github.com.2026-03-10/users/users-get-authenticated.op.lapis +27 -0
  1517. package/examples/github/api.github.com.2026-03-10/users/users-get-by-id.op.lapis +24 -0
  1518. package/examples/github/api.github.com.2026-03-10/users/users-get-by-username.op.lapis +24 -0
  1519. package/examples/github/api.github.com.2026-03-10/users/users-get-context-for-user.op.lapis +340 -0
  1520. package/examples/github/api.github.com.2026-03-10/users/users-get-gpg-key-for-authenticated-user.op.lapis +61 -0
  1521. package/examples/github/api.github.com.2026-03-10/users/users-get-public-ssh-key-for-authenticated-user.op.lapis +48 -0
  1522. package/examples/github/api.github.com.2026-03-10/users/users-get-ssh-signing-key-for-authenticated-user.op.lapis +44 -0
  1523. package/examples/github/api.github.com.2026-03-10/users/users-list-attestations-bulk.op.lapis +22 -0
  1524. package/examples/github/api.github.com.2026-03-10/users/users-list-attestations.op.lapis +29 -0
  1525. package/examples/github/api.github.com.2026-03-10/users/users-list-blocked-by-authenticated-user.op.lapis +62 -0
  1526. package/examples/github/api.github.com.2026-03-10/users/users-list-emails-for-authenticated-user.op.lapis +46 -0
  1527. package/examples/github/api.github.com.2026-03-10/users/users-list-followed-by-authenticated-user.op.lapis +55 -0
  1528. package/examples/github/api.github.com.2026-03-10/users/users-list-followers-for-authenticated-user.op.lapis +55 -0
  1529. package/examples/github/api.github.com.2026-03-10/users/users-list-followers-for-user.op.lapis +41 -0
  1530. package/examples/github/api.github.com.2026-03-10/users/users-list-following-for-user.op.lapis +41 -0
  1531. package/examples/github/api.github.com.2026-03-10/users/users-list-gpg-keys-for-authenticated-user.op.lapis +62 -0
  1532. package/examples/github/api.github.com.2026-03-10/users/users-list-gpg-keys-for-user.op.lapis +40 -0
  1533. package/examples/github/api.github.com.2026-03-10/users/users-list-public-emails-for-authenticated-user.op.lapis +47 -0
  1534. package/examples/github/api.github.com.2026-03-10/users/users-list-public-keys-for-user.op.lapis +23 -0
  1535. package/examples/github/api.github.com.2026-03-10/users/users-list-public-ssh-keys-for-authenticated-user.op.lapis +49 -0
  1536. package/examples/github/api.github.com.2026-03-10/users/users-list-social-accounts-for-authenticated-user.op.lapis +42 -0
  1537. package/examples/github/api.github.com.2026-03-10/users/users-list-social-accounts-for-user.op.lapis +21 -0
  1538. package/examples/github/api.github.com.2026-03-10/users/users-list-ssh-signing-keys-for-authenticated-user.op.lapis +45 -0
  1539. package/examples/github/api.github.com.2026-03-10/users/users-list-ssh-signing-keys-for-user.op.lapis +23 -0
  1540. package/examples/github/api.github.com.2026-03-10/users/users-list.op.lapis +41 -0
  1541. package/examples/github/api.github.com.2026-03-10/users/users-set-primary-email-visibility-for-authenticated-user.op.lapis +49 -0
  1542. package/examples/github/api.github.com.2026-03-10/users/users-unblock.op.lapis +35 -0
  1543. package/examples/github/api.github.com.2026-03-10/users/users-unfollow.op.lapis +35 -0
  1544. package/examples/github/api.github.com.2026-03-10/users/users-update-authenticated.op.lapis +95 -0
  1545. package/examples/github/api.github.com.2026-03-10.lapis +23647 -0
  1546. package/examples/github/api.github.com.2026-03-10.overlay.yaml +11 -0
  1547. package/examples/github/api.github.com.2026-03-10.yaml +252798 -0
  1548. package/package.json +36 -0
  1549. package/pnpm-workspace.yaml +2 -0
  1550. package/src/bin/multilapis.ts +152 -0
  1551. package/src/converter.ts +65 -0
  1552. package/src/emitter.ts +171 -0
  1553. package/src/index.ts +10 -0
  1554. package/src/models.ts +149 -0
  1555. package/src/multilapis.ts +403 -0
  1556. package/src/openapi-loader.ts +117 -0
  1557. package/src/openapi-overlay.ts +290 -0
  1558. package/src/ref-resolver.ts +89 -0
  1559. package/src/schema-flattener.ts +73 -0
  1560. package/src/sections.ts +709 -0
  1561. package/src/type-mapper.ts +87 -0
  1562. package/src/utils.ts +72 -0
  1563. package/test/cli.test.ts +201 -0
  1564. package/test/converter.test.ts +352 -0
  1565. package/test/emitter.test.ts +32 -0
  1566. package/test/fixtures/invoice_api.yaml +383 -0
  1567. package/test/fixtures/minimal_api.yaml +23 -0
  1568. package/test/fixtures/petstore.yaml +146 -0
  1569. package/test/multilapis.test.ts +282 -0
  1570. package/test/openapi-overlay.test.ts +198 -0
  1571. package/tsconfig.json +13 -0
@@ -0,0 +1,269 @@
1
+ # _untagged
2
+
3
+ ## Webhooks
4
+
5
+ - [branch-protection-configuration/disabled](branch-protection-configuration-disabled.webhook.lapis) - All branch protections were disabled for a repository.
6
+ - [branch-protection-configuration/enabled](branch-protection-configuration-enabled.webhook.lapis) - All branch protections were enabled for a repository.
7
+ - [branch-protection-rule/created](branch-protection-rule-created.webhook.lapis) - A branch protection rule was created.
8
+ - [branch-protection-rule/deleted](branch-protection-rule-deleted.webhook.lapis) - A branch protection rule was deleted.
9
+ - [branch-protection-rule/edited](branch-protection-rule-edited.webhook.lapis) - A branch protection rule was edited.
10
+ - [check-run/completed](check-run-completed.webhook.lapis) - A check run was completed, and a conclusion is available.
11
+ - [check-run/created](check-run-created.webhook.lapis) - A new check run was created.
12
+ - [check-run/requested-action](check-run-requested-action.webhook.lapis) - A check run completed, and someone requested a followup action that your app provides. Only the GitHub App someone requests to perform an action will receive the `requested_action` payload. For more information, see "[Creating CI tests with the Checks API](https://docs.github.com/developers/apps/guides/creating-ci-tests-with-the-checks-api)."
13
+ - [check-run/rerequested](check-run-rerequested.webhook.lapis) - Someone requested to re-run a check run. Only the GitHub App that someone requests to re-run the check will receive the `rerequested` payload.
14
+ - [check-suite/completed](check-suite-completed.webhook.lapis) - All check runs in a check suite have completed, and a conclusion is available.
15
+ - [check-suite/requested](check-suite-requested.webhook.lapis) - Someone requested to run a check suite. By default, check suites are automatically created when you create a check run. For more information, see [the GraphQL API documentation for creating a check run](https://docs.github.com/graphql/reference/mutations#createcheckrun) or "[Create a check run](https://docs.github.com/rest/checks/runs#create-a-check-run)" in the REST API documentation.
16
+ - [check-suite/rerequested](check-suite-rerequested.webhook.lapis) - Someone requested to re-run the check runs in a check suite. For more information, see [the GraphQL API documentation for creating a check suite](https://docs.github.com/graphql/reference/mutations#createchecksuite) or "[Create a check suite](https://docs.github.com/rest/checks/suites#create-a-check-suite)" in the REST API documentation.
17
+ - [code-scanning-alert/appeared-in-branch](code-scanning-alert-appeared-in-branch.webhook.lapis) - A previously created code scanning alert appeared in another branch. This can happen when a branch is merged into or created from a branch with a pre-existing code scanning alert.
18
+ - [code-scanning-alert/closed-by-user](code-scanning-alert-closed-by-user.webhook.lapis) - Someone closed a code scanning alert.
19
+ - [code-scanning-alert/created](code-scanning-alert-created.webhook.lapis) - A code scanning alert was created in a repository.
20
+ - [code-scanning-alert/fixed](code-scanning-alert-fixed.webhook.lapis) - A code scanning alert was fixed in a branch by a commit.
21
+ - [code-scanning-alert/reopened](code-scanning-alert-reopened.webhook.lapis) - A previously fixed code scanning alert reappeared in a branch.
22
+ - [code-scanning-alert/reopened-by-user](code-scanning-alert-reopened-by-user.webhook.lapis) - Someone reopened a code scanning alert.
23
+ - [code-scanning-alert/updated-assignment](code-scanning-alert-updated-assignment.webhook.lapis) - The assignees list of a code scanning alert has been updated.
24
+ - [commit-comment/created](commit-comment-created.webhook.lapis) - Someone commented on a commit.
25
+ - [create](create.webhook.lapis) - This event occurs when a Git branch or tag is created. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. **Notes**: - This event will not occur when more than three tags are created at once. - Payloads are capped at 25 MB. If an event generates a larger payload, GitHub will not deliver a payload for that webhook event. This may happen, for example, if many branches or tags are pushed at once. We suggest monitoring your payload size to ensure delivery.
26
+ - [custom-property/created](custom-property-created.webhook.lapis) - A new custom property was created.
27
+ - [custom-property/deleted](custom-property-deleted.webhook.lapis) - A custom property was deleted.
28
+ - [custom-property/promote-to-enterprise](custom-property-promote-to-enterprise.webhook.lapis) - A custom property was promoted to an enterprise.
29
+ - [custom-property/updated](custom-property-updated.webhook.lapis) - A custom property was updated.
30
+ - [custom-property-values/updated](custom-property-values-updated.webhook.lapis) - The custom property values of a repository were updated.
31
+ - [delete](delete.webhook.lapis) - This event occurs when a Git branch or tag is deleted. To subscribe to all pushes to a repository, including branch and tag deletions, use the [`push`](#push) webhook event. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. > [!NOTE] > This event will not occur when more than three tags are deleted at once.
32
+ - [dependabot-alert/assignees-changed](dependabot-alert-assignees-changed.webhook.lapis) - The assignees for a Dependabot alert were updated.
33
+ - [dependabot-alert/auto-dismissed](dependabot-alert-auto-dismissed.webhook.lapis) - A Dependabot alert was automatically closed by a Dependabot auto-triage rule.
34
+ - [dependabot-alert/auto-reopened](dependabot-alert-auto-reopened.webhook.lapis) - A Dependabot alert, that had been automatically closed by a Dependabot auto-triage rule, was automatically reopened because the alert metadata or rule changed.
35
+ - [dependabot-alert/created](dependabot-alert-created.webhook.lapis) - A manifest file change introduced a vulnerable dependency, or a GitHub Security Advisory was published and an existing dependency was found to be vulnerable.
36
+ - [dependabot-alert/dismissed](dependabot-alert-dismissed.webhook.lapis) - A Dependabot alert was manually closed.
37
+ - [dependabot-alert/fixed](dependabot-alert-fixed.webhook.lapis) - A manifest file change removed a vulnerability.
38
+ - [dependabot-alert/reintroduced](dependabot-alert-reintroduced.webhook.lapis) - A manifest file change introduced a vulnerable dependency that had previously been fixed.
39
+ - [dependabot-alert/reopened](dependabot-alert-reopened.webhook.lapis) - A Dependabot alert was manually reopened.
40
+ - [deploy-key/created](deploy-key-created.webhook.lapis) - A deploy key was created.
41
+ - [deploy-key/deleted](deploy-key-deleted.webhook.lapis) - A deploy key was deleted.
42
+ - [deployment/created](deployment-created.webhook.lapis) - A deployment was created.
43
+ - [deployment-protection-rule/requested](deployment-protection-rule-requested.webhook.lapis) - A deployment protection rule was requested for an environment.
44
+ - [deployment-review/approved](deployment-review-approved.webhook.lapis) - A deployment review was approved.
45
+ - [deployment-review/rejected](deployment-review-rejected.webhook.lapis) - A deployment review was rejected.
46
+ - [deployment-review/requested](deployment-review-requested.webhook.lapis) - A deployment review was requested.
47
+ - [deployment-status/created](deployment-status-created.webhook.lapis) - A new deployment status was created.
48
+ - [discussion/answered](discussion-answered.webhook.lapis) - A comment on the discussion was marked as the answer.
49
+ - [discussion/category-changed](discussion-category-changed.webhook.lapis) - The category of a discussion was changed.
50
+ - [discussion/closed](discussion-closed.webhook.lapis) - A discussion was closed.
51
+ - [discussion-comment/created](discussion-comment-created.webhook.lapis) - A comment on a discussion was created.
52
+ - [discussion-comment/deleted](discussion-comment-deleted.webhook.lapis) - A comment on a discussion was deleted.
53
+ - [discussion-comment/edited](discussion-comment-edited.webhook.lapis) - A comment on a discussion was edited.
54
+ - [discussion/created](discussion-created.webhook.lapis) - A discussion was created.
55
+ - [discussion/deleted](discussion-deleted.webhook.lapis) - A discussion was deleted.
56
+ - [discussion/edited](discussion-edited.webhook.lapis) - The title or body on a discussion was edited, or the category of the discussion was changed.
57
+ - [discussion/labeled](discussion-labeled.webhook.lapis) - A label was added to a discussion.
58
+ - [discussion/locked](discussion-locked.webhook.lapis) - A discussion was locked.
59
+ - [discussion/pinned](discussion-pinned.webhook.lapis) - A discussion was pinned.
60
+ - [discussion/reopened](discussion-reopened.webhook.lapis) - A discussion was reopened.
61
+ - [discussion/transferred](discussion-transferred.webhook.lapis) - A discussion was transferred to another repository.
62
+ - [discussion/unanswered](discussion-unanswered.webhook.lapis) - A comment on the discussion was unmarked as the answer.
63
+ - [discussion/unlabeled](discussion-unlabeled.webhook.lapis) - A label was removed from a discussion.
64
+ - [discussion/unlocked](discussion-unlocked.webhook.lapis) - A discussion was unlocked.
65
+ - [discussion/unpinned](discussion-unpinned.webhook.lapis) - A discussion was unpinned.
66
+ - [fork](fork.webhook.lapis) - This event occurs when someone forks a repository. For more information, see "[Fork a repo](https://docs.github.com/get-started/quickstart/fork-a-repo)." For information about the API to manage forks, see "[Forks](https://docs.github.com/rest/repos/forks)" in the REST API documentation. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
67
+ - [github-app-authorization/revoked](github-app-authorization-revoked.webhook.lapis) - Someone revoked their authorization of a GitHub App.
68
+ - [gollum](gollum.webhook.lapis) - This event occurs when someone creates or updates a wiki page. For more information, see "[About wikis](https://docs.github.com/communities/documenting-your-project-with-wikis/about-wikis)." To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
69
+ - [installation/created](installation-created.webhook.lapis) - Someone installed a GitHub App on a user or organization account.
70
+ - [installation/deleted](installation-deleted.webhook.lapis) - Someone uninstalled a GitHub App from their user or organization account.
71
+ - [installation/new-permissions-accepted](installation-new-permissions-accepted.webhook.lapis) - Someone granted new permissions to a GitHub App.
72
+ - [installation-repositories/added](installation-repositories-added.webhook.lapis) - A GitHub App installation was granted access to one or more repositories.
73
+ - [installation-repositories/removed](installation-repositories-removed.webhook.lapis) - Access to one or more repositories was revoked for a GitHub App installation.
74
+ - [installation/suspend](installation-suspend.webhook.lapis) - Someone blocked access by a GitHub App to their user or organization account.
75
+ - [installation-target/renamed](installation-target-renamed.webhook.lapis) - Somebody renamed the user or organization account that a GitHub App is installed on.
76
+ - [installation/unsuspend](installation-unsuspend.webhook.lapis) - A GitHub App that was blocked from accessing a user or organization account was given access the account again.
77
+ - [issue-comment/created](issue-comment-created.webhook.lapis) - A comment on an issue or pull request was created.
78
+ - [issue-comment/deleted](issue-comment-deleted.webhook.lapis) - A comment on an issue or pull request was deleted.
79
+ - [issue-comment/edited](issue-comment-edited.webhook.lapis) - A comment on an issue or pull request was edited.
80
+ - [issue-comment/pinned](issue-comment-pinned.webhook.lapis) - A comment on an issue was pinned.
81
+ - [issue-comment/unpinned](issue-comment-unpinned.webhook.lapis) - A comment on an issue was unpinned.
82
+ - [issue-dependencies/blocked-by-added](issue-dependencies-blocked-by-added.webhook.lapis) - An issue was marked as blocked by another issue.
83
+ - [issue-dependencies/blocked-by-removed](issue-dependencies-blocked-by-removed.webhook.lapis) - The blocked by relationship between an issue and another issue was removed.
84
+ - [issue-dependencies/blocking-added](issue-dependencies-blocking-added.webhook.lapis) - An issue was marked as blocking another issue.
85
+ - [issue-dependencies/blocking-removed](issue-dependencies-blocking-removed.webhook.lapis) - The blocking relationship between an issue and another issue was removed.
86
+ - [issues/assigned](issues-assigned.webhook.lapis) - An issue was assigned to a user.
87
+ - [issues/closed](issues-closed.webhook.lapis) - An issue was closed.
88
+ - [issues/deleted](issues-deleted.webhook.lapis) - An issue was deleted.
89
+ - [issues/demilestoned](issues-demilestoned.webhook.lapis) - An issue was removed from a milestone.
90
+ - [issues/edited](issues-edited.webhook.lapis) - The title or body on an issue was edited.
91
+ - [issues/field-added](issues-field-added.webhook.lapis) - An issue field value was set or updated on an issue.
92
+ - [issues/field-removed](issues-field-removed.webhook.lapis) - An issue field value was cleared from an issue.
93
+ - [issues/labeled](issues-labeled.webhook.lapis) - A label was added to an issue.
94
+ - [issues/locked](issues-locked.webhook.lapis) - Conversation on an issue was locked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
95
+ - [issues/milestoned](issues-milestoned.webhook.lapis) - An issue was added to a milestone.
96
+ - [issues/opened](issues-opened.webhook.lapis) - An issue was created. When a closed issue is reopened, the action will be `reopened` instead.
97
+ - [issues/pinned](issues-pinned.webhook.lapis) - An issue was pinned to a repository. For more information, see "[Pinning an issue to your repository](https://docs.github.com/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)."
98
+ - [issues/reopened](issues-reopened.webhook.lapis) - A closed issue was reopened.
99
+ - [issues/transferred](issues-transferred.webhook.lapis) - An issue was transferred to another repository. For more information, see "[Transferring an issue to another repository](https://docs.github.com/issues/tracking-your-work-with-issues/transferring-an-issue-to-another-repository)."
100
+ - [issues/typed](issues-typed.webhook.lapis) - An issue type was added to an issue.
101
+ - [issues/unassigned](issues-unassigned.webhook.lapis) - A user was unassigned from an issue.
102
+ - [issues/unlabeled](issues-unlabeled.webhook.lapis) - A label was removed from an issue.
103
+ - [issues/unlocked](issues-unlocked.webhook.lapis) - Conversation on an issue was locked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
104
+ - [issues/unpinned](issues-unpinned.webhook.lapis) - An issue was unpinned from a repository. For more information, see "[Pinning an issue to your repository](https://docs.github.com/issues/tracking-your-work-with-issues/pinning-an-issue-to-your-repository)."
105
+ - [issues/untyped](issues-untyped.webhook.lapis) - An issue type was removed from an issue.
106
+ - [label/created](label-created.webhook.lapis) - A label was created.
107
+ - [label/deleted](label-deleted.webhook.lapis) - A label was deleted.
108
+ - [label/edited](label-edited.webhook.lapis) - A label's name, description, or color was changed.
109
+ - [marketplace-purchase/cancelled](marketplace-purchase-cancelled.webhook.lapis) - Someone cancelled a GitHub Marketplace plan, and the last billing cycle has ended. The change will take effect on the account immediately.
110
+ - [marketplace-purchase/changed](marketplace-purchase-changed.webhook.lapis) - Someone upgraded or downgraded a GitHub Marketplace plan, and the last billing cycle has ended. The change will take effect on the account immediately.
111
+ - [marketplace-purchase/pending-change](marketplace-purchase-pending-change.webhook.lapis) - Someone downgraded or cancelled a GitHub Marketplace plan. The new plan or cancellation will take effect at the end of the current billing cycle. When the change takes effect, the `changed` or `cancelled` event will be sent.
112
+ - [marketplace-purchase/pending-change-cancelled](marketplace-purchase-pending-change-cancelled.webhook.lapis) - Someone cancelled a pending change to a GitHub Marketplace plan. Pending changes include plan cancellations and downgrades that will take effect at the end of a billing cycle.
113
+ - [marketplace-purchase/purchased](marketplace-purchase-purchased.webhook.lapis) - Someone purchased a GitHub Marketplace plan. The change will take effect on the account immediately.
114
+ - [member/added](member-added.webhook.lapis) - A GitHub user accepted an invitation to a repository.
115
+ - [member/edited](member-edited.webhook.lapis) - Permissions were changed for a collaborator on a repository.
116
+ - [member/removed](member-removed.webhook.lapis) - A collaborator was removed from a repository.
117
+ - [membership/added](membership-added.webhook.lapis) - An organization member was added to a team.
118
+ - [membership/removed](membership-removed.webhook.lapis) - An organization member was removed from a team.
119
+ - [meta/deleted](meta-deleted.webhook.lapis) - The webhook was deleted.
120
+ - [milestone/closed](milestone-closed.webhook.lapis) - A milestone was closed.
121
+ - [milestone/created](milestone-created.webhook.lapis) - A milestone was created.
122
+ - [milestone/deleted](milestone-deleted.webhook.lapis) - A milestone was deleted.
123
+ - [milestone/edited](milestone-edited.webhook.lapis) - A milestone was edited.
124
+ - [milestone/opened](milestone-opened.webhook.lapis) - A milestone was opened.
125
+ - [org-block/blocked](org-block-blocked.webhook.lapis) - A user was blocked from the organization.
126
+ - [org-block/unblocked](org-block-unblocked.webhook.lapis) - A previously blocked user was unblocked from the organization.
127
+ - [organization/deleted](organization-deleted.webhook.lapis) - An organization was deleted.
128
+ - [organization/member-added](organization-member-added.webhook.lapis) - A member accepted an invitation to join an organization.
129
+ - [organization/member-invited](organization-member-invited.webhook.lapis) - A member was invited to join the organization.
130
+ - [organization/member-removed](organization-member-removed.webhook.lapis) - A member was removed from the organization.
131
+ - [organization/renamed](organization-renamed.webhook.lapis) - The name of an organization was changed.
132
+ - [package/published](package-published.webhook.lapis) - A package was published to a registry.
133
+ - [package/updated](package-updated.webhook.lapis) - A previously published package was updated.
134
+ - [page-build](page-build.webhook.lapis) - This event occurs when there is an attempted build of a GitHub Pages site. This event occurs regardless of whether the build is successful. For more information, see "[Configuring a publishing source for your GitHub Pages site](https://docs.github.com/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site)." For information about the API to manage GitHub Pages, see "[Pages](https://docs.github.com/rest/pages)" in the REST API documentation. To subscribe to this event, a GitHub App must have at least read-level access for the "Pages" repository permission.
135
+ - [personal-access-token-request/approved](personal-access-token-request-approved.webhook.lapis) - A fine-grained personal access token request was approved.
136
+ - [personal-access-token-request/cancelled](personal-access-token-request-cancelled.webhook.lapis) - A fine-grained personal access token request was cancelled by the requester.
137
+ - [personal-access-token-request/created](personal-access-token-request-created.webhook.lapis) - A fine-grained personal access token request was created.
138
+ - [personal-access-token-request/denied](personal-access-token-request-denied.webhook.lapis) - A fine-grained personal access token request was denied.
139
+ - [ping](ping.webhook.lapis) - This event occurs when you create a new webhook. The ping event is a confirmation from GitHub that you configured the webhook correctly.
140
+ - [project-card/converted](project-card-converted.webhook.lapis) - A note in a project (classic) was converted to an issue.
141
+ - [project-card/created](project-card-created.webhook.lapis) - A card was added to a project (classic).
142
+ - [project-card/deleted](project-card-deleted.webhook.lapis) - A card on a project (classic) was deleted.
143
+ - [project-card/edited](project-card-edited.webhook.lapis) - A note on a project (classic) was edited.
144
+ - [project-card/moved](project-card-moved.webhook.lapis) - A card on a project (classic) was moved to another column or to another position in its column.
145
+ - [project/closed](project-closed.webhook.lapis) - A project (classic) was closed.
146
+ - [project-column/created](project-column-created.webhook.lapis) - A column was added to a project (classic).
147
+ - [project-column/deleted](project-column-deleted.webhook.lapis) - A column was deleted from a project (classic).
148
+ - [project-column/edited](project-column-edited.webhook.lapis) - The name of a column on a project (classic) was changed.
149
+ - [project-column/moved](project-column-moved.webhook.lapis) - A column was moved to a new position on a project (classic).
150
+ - [project/created](project-created.webhook.lapis) - A project (classic) was created.
151
+ - [project/deleted](project-deleted.webhook.lapis) - A project (classic) was deleted.
152
+ - [project/edited](project-edited.webhook.lapis) - The name or description of a project (classic) was changed.
153
+ - [project/reopened](project-reopened.webhook.lapis) - A project (classic) was closed.
154
+ - [projects-v2/closed](projects-v2-closed.webhook.lapis) - A project in the organization was closed.
155
+ - [projects-v2/created](projects-v2-created.webhook.lapis) - A project in the organization was created.
156
+ - [projects-v2/deleted](projects-v2-deleted.webhook.lapis) - A project in the organization was deleted.
157
+ - [projects-v2/edited](projects-v2-edited.webhook.lapis) - The title, description, or README of a project in the organization was changed.
158
+ - [projects-v2-item/archived](projects-v2-item-archived.webhook.lapis) - An item on an organization project was archived. For more information, see "[Archiving items from your project](https://docs.github.com/issues/planning-and-tracking-with-projects/managing-items-in-your-project/archiving-items-from-your-project)."
159
+ - [projects-v2-item/converted](projects-v2-item-converted.webhook.lapis) - A draft issue in an organization project was converted to an issue.
160
+ - [projects-v2-item/created](projects-v2-item-created.webhook.lapis) - An item was added to a project in the organization.
161
+ - [projects-v2-item/deleted](projects-v2-item-deleted.webhook.lapis) - An item was deleted from a project in the organization.
162
+ - [projects-v2-item/edited](projects-v2-item-edited.webhook.lapis) - The values or state of an item in an organization project were changed. For example, the value of a field was updated, the body of a draft issue was changed, or a draft issue was converted to an issue.
163
+ - [projects-v2-item/reordered](projects-v2-item-reordered.webhook.lapis) - The position of an item in an organization project was changed. For example, an item was moved above or below another item in the table or board layout.
164
+ - [projects-v2-item/restored](projects-v2-item-restored.webhook.lapis) - An archived item on an organization project was restored from the archive. For more information, see "[Archiving items from your project](https://docs.github.com/issues/planning-and-tracking-with-projects/managing-items-in-your-project/archiving-items-from-your-project)."
165
+ - [projects-v2/reopened](projects-v2-reopened.webhook.lapis) - A project in the organization was reopened.
166
+ - [projects-v2-status-update/created](projects-v2-status-update-created.webhook.lapis) - A status update was added to a project in the organization.
167
+ - [projects-v2-status-update/deleted](projects-v2-status-update-deleted.webhook.lapis) - A status update was removed from a project in the organization.
168
+ - [projects-v2-status-update/edited](projects-v2-status-update-edited.webhook.lapis) - A status update was edited on a project in the organization.
169
+ - [public](public.webhook.lapis) - This event occurs when repository visibility changes from private to public. For more information, see "[Setting repository visibility](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/setting-repository-visibility)." To subscribe to this event, a GitHub App must have at least read-level access for the "Metadata" repository permission.
170
+ - [pull-request/assigned](pull-request-assigned.webhook.lapis) - A pull request was assigned to a user.
171
+ - [pull-request/auto-merge-disabled](pull-request-auto-merge-disabled.webhook.lapis) - Auto merge was disabled for a pull request. For more information, see "[Automatically merging a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request)."
172
+ - [pull-request/auto-merge-enabled](pull-request-auto-merge-enabled.webhook.lapis) - Auto merge was enabled for a pull request. For more information, see "[Automatically merging a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/incorporating-changes-from-a-pull-request/automatically-merging-a-pull-request)."
173
+ - [pull-request/closed](pull-request-closed.webhook.lapis) - A pull request was closed. If `merged` is false in the webhook payload, the pull request was closed with unmerged commits. If `merged` is true in the webhook payload, the pull request was merged.
174
+ - [pull-request/converted-to-draft](pull-request-converted-to-draft.webhook.lapis) - A pull request was converted to a draft. For more information, see "[Changing the stage of a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request)."
175
+ - [pull-request/demilestoned](pull-request-demilestoned.webhook.lapis) - A pull request was removed from a milestone.
176
+ - [pull-request/dequeued](pull-request-dequeued.webhook.lapis) - A pull request was removed from the merge queue.
177
+ - [pull-request/edited](pull-request-edited.webhook.lapis) - The title or body of a pull request was edited, or the base branch of a pull request was changed.
178
+ - [pull-request/enqueued](pull-request-enqueued.webhook.lapis) - A pull request was added to the merge queue.
179
+ - [pull-request/labeled](pull-request-labeled.webhook.lapis) - A label was added to a pull request.
180
+ - [pull-request/locked](pull-request-locked.webhook.lapis) - Conversation on a pull request was locked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
181
+ - [pull-request/milestoned](pull-request-milestoned.webhook.lapis) - A pull request was added to a milestone.
182
+ - [pull-request/opened](pull-request-opened.webhook.lapis) - A pull request was created
183
+ - [pull-request/ready-for-review](pull-request-ready-for-review.webhook.lapis) - A draft pull request was marked as ready for review. For more information, see "[Changing the stage of a pull request](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request)."
184
+ - [pull-request/reopened](pull-request-reopened.webhook.lapis) - A previously closed pull request was reopened.
185
+ - [pull-request-review-comment/created](pull-request-review-comment-created.webhook.lapis) - A comment on a pull request diff was created.
186
+ - [pull-request-review-comment/deleted](pull-request-review-comment-deleted.webhook.lapis) - A comment on a pull request diff was deleted.
187
+ - [pull-request-review-comment/edited](pull-request-review-comment-edited.webhook.lapis) - The content of a comment on a pull request diff was changed.
188
+ - [pull-request-review/dismissed](pull-request-review-dismissed.webhook.lapis) - A review on a pull request was dismissed.
189
+ - [pull-request-review/edited](pull-request-review-edited.webhook.lapis) - The body comment on a pull request review was edited.
190
+ - [pull-request/review-request-removed](pull-request-review-request-removed.webhook.lapis) - A request for review by a person or team was removed from a pull request.
191
+ - [pull-request/review-requested](pull-request-review-requested.webhook.lapis) - Review by a person or team was requested for a pull request. For more information, see "[Requesting a pull request review](https://docs.github.com/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/requesting-a-pull-request-review)."
192
+ - [pull-request-review/submitted](pull-request-review-submitted.webhook.lapis) - A review on a pull request was submitted.
193
+ - [pull-request-review-thread/resolved](pull-request-review-thread-resolved.webhook.lapis) - A comment thread on a pull request was marked as resolved.
194
+ - [pull-request-review-thread/unresolved](pull-request-review-thread-unresolved.webhook.lapis) - A previously resolved comment thread on a pull request was marked as unresolved.
195
+ - [pull-request/synchronize](pull-request-synchronize.webhook.lapis) - A pull request's head branch was updated. For example, the head branch was updated from the base branch or new commits were pushed to the head branch.
196
+ - [pull-request/unassigned](pull-request-unassigned.webhook.lapis) - A user was unassigned from a pull request.
197
+ - [pull-request/unlabeled](pull-request-unlabeled.webhook.lapis) - A label was removed from a pull request.
198
+ - [pull-request/unlocked](pull-request-unlocked.webhook.lapis) - Conversation on a pull request was unlocked. For more information, see "[Locking conversations](https://docs.github.com/communities/moderating-comments-and-conversations/locking-conversations)."
199
+ - [push](push.webhook.lapis) - This event occurs when there is a push to a repository branch. This includes when a commit is pushed, when a commit tag is pushed, when a branch is deleted, when a tag is deleted, or when a repository is created from a template. To subscribe to only branch and tag deletions, use the [`delete`](#delete) webhook event. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission. > [!NOTE] > Events will not be created if more than 5000 branches are pushed at once. Events will not be created for tags when more than three tags are pushed at once.
200
+ - [registry-package/published](registry-package-published.webhook.lapis) - A package was published to a registry.
201
+ - [registry-package/updated](registry-package-updated.webhook.lapis) - A package that was previously published to a registry was updated.
202
+ - [release/created](release-created.webhook.lapis) - A draft was saved, or a release or pre-release was published without previously being saved as a draft.
203
+ - [release/deleted](release-deleted.webhook.lapis) - A release, pre-release, or draft release was deleted.
204
+ - [release/edited](release-edited.webhook.lapis) - The details of a release, pre-release, or draft release were edited. For more information, see "[Managing releases in a repository](https://docs.github.com/repositories/releasing-projects-on-github/managing-releases-in-a-repository#editing-a-release)."
205
+ - [release/prereleased](release-prereleased.webhook.lapis) - A release was created and identified as a pre-release. A pre-release is a release that is not ready for production and may be unstable.
206
+ - [release/published](release-published.webhook.lapis) - A release, pre-release, or draft of a release was published.
207
+ - [release/released](release-released.webhook.lapis) - A release was published, or a pre-release was changed to a release.
208
+ - [release/unpublished](release-unpublished.webhook.lapis) - A release or pre-release was unpublished.
209
+ - [repository-advisory/published](repository-advisory-published.webhook.lapis) - A repository security advisory was published.
210
+ - [repository-advisory/reported](repository-advisory-reported.webhook.lapis) - A private vulnerability report was submitted.
211
+ - [repository/archived](repository-archived.webhook.lapis) - A repository was archived.
212
+ - [repository/created](repository-created.webhook.lapis) - A repository was created.
213
+ - [repository/deleted](repository-deleted.webhook.lapis) - A repository was deleted. GitHub Apps and repository webhooks will not receive this event.
214
+ - [repository-dispatch/sample.collected](repository-dispatch-sample-collected.webhook.lapis) - This event occurs when a GitHub App sends a `POST` request to `/repos/{owner}/{repo}/dispatches`. For more information, see [the REST API documentation for creating a repository dispatch event](https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event). In the payload, the `action` will be the `event_type` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
215
+ - [repository/edited](repository-edited.webhook.lapis) - The topics, default branch, description, or homepage of a repository was changed.
216
+ - [repository-import](repository-import.webhook.lapis) - This event occurs when a repository is imported to GitHub. For more information, see "[Importing a repository with GitHub Importer](https://docs.github.com/get-started/importing-your-projects-to-github/importing-source-code-to-github/importing-a-repository-with-github-importer)." For more information about the API to manage imports, see [the REST API documentation](https://docs.github.com/rest/migrations/source-imports).
217
+ - [repository/privatized](repository-privatized.webhook.lapis) - The visibility of a repository was changed to `private`.
218
+ - [repository/publicized](repository-publicized.webhook.lapis) - The visibility of a repository was changed to `public`.
219
+ - [repository/renamed](repository-renamed.webhook.lapis) - The name of a repository was changed.
220
+ - [repository-ruleset/created](repository-ruleset-created.webhook.lapis) - A repository ruleset was created.
221
+ - [repository-ruleset/deleted](repository-ruleset-deleted.webhook.lapis) - A repository ruleset was deleted.
222
+ - [repository-ruleset/edited](repository-ruleset-edited.webhook.lapis) - A repository ruleset was edited.
223
+ - [repository/transferred](repository-transferred.webhook.lapis) - Ownership of the repository was transferred to a user or organization account. This event is only sent to the account where the ownership is transferred. To receive the `repository.transferred` event, the new owner account must have the GitHub App installed, and the App must be subscribed to "Repository" events.
224
+ - [repository/unarchived](repository-unarchived.webhook.lapis) - A previously archived repository was unarchived.
225
+ - [repository-vulnerability-alert/create](repository-vulnerability-alert-create.webhook.lapis) - A repository vulnerability alert was created.
226
+ - [repository-vulnerability-alert/dismiss](repository-vulnerability-alert-dismiss.webhook.lapis) - A repository vulnerability alert was dismissed.
227
+ - [repository-vulnerability-alert/reopen](repository-vulnerability-alert-reopen.webhook.lapis) - A previously dismissed or resolved repository vulnerability alert was reopened.
228
+ - [repository-vulnerability-alert/resolve](repository-vulnerability-alert-resolve.webhook.lapis) - A repository vulnerability alert was marked as resolved.
229
+ - [secret-scanning-alert/assigned](secret-scanning-alert-assigned.webhook.lapis) - A secret scanning alert was assigned.
230
+ - [secret-scanning-alert/created](secret-scanning-alert-created.webhook.lapis) - A secret scanning alert was created.
231
+ - [secret-scanning-alert-location/created](secret-scanning-alert-location-created.webhook.lapis) - A new instance of a previously detected secret was detected in a repository, and the location of the secret was added to the existing alert.
232
+ - [secret-scanning-alert/publicly-leaked](secret-scanning-alert-publicly-leaked.webhook.lapis) - A secret scanning alert was detected in a public repo.
233
+ - [secret-scanning-alert/reopened](secret-scanning-alert-reopened.webhook.lapis) - A previously closed secret scanning alert was reopened.
234
+ - [secret-scanning-alert/resolved](secret-scanning-alert-resolved.webhook.lapis) - A secret scanning alert was closed.
235
+ - [secret-scanning-alert/unassigned](secret-scanning-alert-unassigned.webhook.lapis) - A secret scanning alert was unassigned.
236
+ - [secret-scanning-alert/validated](secret-scanning-alert-validated.webhook.lapis) - A secret scanning alert was validated.
237
+ - [secret-scanning-scan/completed](secret-scanning-scan-completed.webhook.lapis) - A secret scanning scan was completed.
238
+ - [security-advisory/published](security-advisory-published.webhook.lapis) - A security advisory was published to the GitHub community.
239
+ - [security-advisory/updated](security-advisory-updated.webhook.lapis) - The metadata or description of a security advisory was changed.
240
+ - [security-advisory/withdrawn](security-advisory-withdrawn.webhook.lapis) - A previously published security advisory was withdrawn.
241
+ - [security-and-analysis](security-and-analysis.webhook.lapis) - This event occurs when code security and analysis features are enabled or disabled for a repository. For more information, see "[GitHub security features](https://docs.github.com/code-security/getting-started/github-security-features)." To subscribe to this event, a GitHub App must have at least read-level access for the "Administration" repository permission.
242
+ - [sponsorship/cancelled](sponsorship-cancelled.webhook.lapis) - A sponsorship was cancelled and the last billing cycle has ended. This event is only sent when a recurring (monthly) sponsorship is cancelled; it is not sent for one-time sponsorships.
243
+ - [sponsorship/created](sponsorship-created.webhook.lapis) - A sponsor created a sponsorship for a sponsored account. This event occurs once the payment is successfully processed.
244
+ - [sponsorship/edited](sponsorship-edited.webhook.lapis) - A monthly sponsor changed who can see their sponsorship. If you recognize your sponsors publicly, you may want to update your sponsor recognition to reflect the change when this event occurs.
245
+ - [sponsorship/pending-cancellation](sponsorship-pending-cancellation.webhook.lapis) - A sponsor scheduled a cancellation for their sponsorship. The cancellation will become effective on their next billing date. This event is only sent when a recurring (monthly) sponsorship is cancelled; it is not sent for one-time sponsorships.
246
+ - [sponsorship/pending-tier-change](sponsorship-pending-tier-change.webhook.lapis) - A sponsor scheduled a downgrade to a lower sponsorship tier. The new tier will become effective on their next billing date.
247
+ - [sponsorship/tier-changed](sponsorship-tier-changed.webhook.lapis) - A sponsor changed the tier of their sponsorship and the change has taken effect. If a sponsor upgraded their tier, the change took effect immediately. If a sponsor downgraded their tier, the change took effect at the beginning of the sponsor's next billing cycle.
248
+ - [star/created](star-created.webhook.lapis) - Someone starred a repository.
249
+ - [star/deleted](star-deleted.webhook.lapis) - Someone unstarred the repository.
250
+ - [status](status.webhook.lapis) - This event occurs when the status of a Git commit changes. For example, commits can be marked as `error`, `failure`, `pending`, or `success`. For more information, see "[About status checks](https://docs.github.com/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks)." For information about the APIs to manage commit statuses, see [the GraphQL documentation](https://docs.github.com/graphql/reference/objects#status) or "[Commit statuses](https://docs.github.com/rest/commits/statuses)" in the REST API documentation. To subscribe to this event, a GitHub App must have at least read-level access for the "Commit statuses" repository permission.
251
+ - [sub-issues/parent-issue-added](sub-issues-parent-issue-added.webhook.lapis) - A parent issue was added to an issue.
252
+ - [sub-issues/parent-issue-removed](sub-issues-parent-issue-removed.webhook.lapis) - A parent issue was removed from an issue.
253
+ - [sub-issues/sub-issue-added](sub-issues-sub-issue-added.webhook.lapis) - A sub-issue was added to an issue.
254
+ - [sub-issues/sub-issue-removed](sub-issues-sub-issue-removed.webhook.lapis) - A sub-issue was removed from an issue.
255
+ - [team-add](team-add.webhook.lapis) - This event occurs when a team is added to a repository. For more information, see "[Managing teams and people with access to your repository](https://docs.github.com/repositories/managing-your-repositorys-settings-and-features/managing-repository-settings/managing-teams-and-people-with-access-to-your-repository)." For activity relating to teams, see the `teams` event. To subscribe to this event, a GitHub App must have at least read-level access for the "Members" organization permission.
256
+ - [team/added-to-repository](team-added-to-repository.webhook.lapis) - A team was granted access to a repository.
257
+ - [team/created](team-created.webhook.lapis) - A team was created.
258
+ - [team/deleted](team-deleted.webhook.lapis) - A team was deleted.
259
+ - [team/edited](team-edited.webhook.lapis) - The name, description, or visibility of a team was changed.
260
+ - [team/removed-from-repository](team-removed-from-repository.webhook.lapis) - A team's access to a repository was removed.
261
+ - [watch/started](watch-started.webhook.lapis) - Someone started watching the repository.
262
+ - [workflow-dispatch](workflow-dispatch.webhook.lapis) - This event occurs when a GitHub Actions workflow is manually triggered. For more information, see "[Manually running a workflow](https://docs.github.com/actions/managing-workflow-runs/manually-running-a-workflow)." For activity relating to workflow runs, use the `workflow_run` event. To subscribe to this event, a GitHub App must have at least read-level access for the "Contents" repository permission.
263
+ - [workflow-job/completed](workflow-job-completed.webhook.lapis) - A job in a workflow run finished. This event occurs when a job in a workflow is completed, regardless of whether the job was successful or unsuccessful.
264
+ - [workflow-job/in-progress](workflow-job-in-progress.webhook.lapis) - A job in a workflow run started processing on a runner.
265
+ - [workflow-job/queued](workflow-job-queued.webhook.lapis) - A job in a workflow run was created.
266
+ - [workflow-job/waiting](workflow-job-waiting.webhook.lapis) - A job in a workflow run was created and is waiting for approvals.
267
+ - [workflow-run/completed](workflow-run-completed.webhook.lapis) - A workflow run finished. This event occurs when a workflow run is completed, regardless of whether the workflow was successful or unsuccessful.
268
+ - [workflow-run/in-progress](workflow-run-in-progress.webhook.lapis) - A workflow run started processing on a runner.
269
+ - [workflow-run/requested](workflow-run-requested.webhook.lapis) - A workflow run was triggered.
@@ -0,0 +1,312 @@
1
+ # LAPIS v0.1.0
2
+
3
+ [meta]
4
+ api: GitHub v3 REST API
5
+ base: https://api.github.com
6
+ version: 1.1.4
7
+ desc: GitHub is a source code hosting and collaboration platform for Git repositories, issues, pull requests, automation, and related developer workflows. It also provides APIs and tooling for integrating repository, organization, and application operations.
8
+
9
+ [types]
10
+ simple-user:
11
+ name?: str
12
+ email?: str
13
+ login: str
14
+ id: int
15
+ node_id: str
16
+ avatar_url: str
17
+ gravatar_id: str
18
+ url: str
19
+ html_url: str
20
+ followers_url: str
21
+ following_url: str
22
+ gists_url: str
23
+ starred_url: str
24
+ subscriptions_url: str
25
+ organizations_url: str
26
+ repos_url: str
27
+ events_url: str
28
+ received_events_url: str
29
+ type: str
30
+ site_admin: bool
31
+ starred_at?: str
32
+ user_view_type?: str
33
+
34
+ app-permissions:
35
+ actions?: read | write
36
+ administration?: read | write
37
+ artifact_metadata?: read | write
38
+ attestations?: read | write
39
+ checks?: read | write
40
+ code_quality?: read | write
41
+ codespaces?: read | write
42
+ contents?: read | write
43
+ dependabot_secrets?: read | write
44
+ deployments?: read | write
45
+ discussions?: read | write
46
+ environments?: read | write
47
+ issues?: read | write
48
+ merge_queues?: read | write
49
+ metadata?: read | write
50
+ packages?: read | write
51
+ pages?: read | write
52
+ pull_requests?: read | write
53
+ repository_custom_properties?: read | write
54
+ repository_hooks?: read | write
55
+ repository_projects?: read | write | admin
56
+ secret_scanning_alerts?: read | write
57
+ secrets?: read | write
58
+ security_events?: read | write
59
+ single_file?: read | write
60
+ statuses?: read | write
61
+ vulnerability_alerts?: read | write
62
+ workflows?: write
63
+ custom_properties_for_organizations?: read | write
64
+ members?: read | write
65
+ organization_administration?: read | write
66
+ organization_custom_roles?: read | write
67
+ organization_custom_org_roles?: read | write
68
+ organization_custom_properties?: read | write | admin
69
+ organization_copilot_seat_management?: read | write
70
+ organization_copilot_agent_settings?: read | write
71
+ organization_announcement_banners?: read | write
72
+ organization_events?: read
73
+ organization_hooks?: read | write
74
+ organization_personal_access_tokens?: read | write
75
+ organization_personal_access_token_requests?: read | write
76
+ organization_plan?: read
77
+ organization_projects?: read | write | admin
78
+ organization_packages?: read | write
79
+ organization_secrets?: read | write
80
+ organization_self_hosted_runners?: read | write
81
+ organization_user_blocking?: read | write
82
+ email_addresses?: read | write
83
+ followers?: read | write
84
+ git_ssh_keys?: read | write
85
+ gpg_keys?: read | write
86
+ interaction_limits?: read | write
87
+ profile?: write
88
+ starring?: read | write
89
+ enterprise_custom_properties_for_organizations?: read | write | admin
90
+
91
+ nullable-simple-user:
92
+ name?: str
93
+ email?: str
94
+ login: str
95
+ id: int
96
+ node_id: str
97
+ avatar_url: str
98
+ gravatar_id: str
99
+ url: str
100
+ html_url: str
101
+ followers_url: str
102
+ following_url: str
103
+ gists_url: str
104
+ starred_url: str
105
+ subscriptions_url: str
106
+ organizations_url: str
107
+ repos_url: str
108
+ events_url: str
109
+ received_events_url: str
110
+ type: str
111
+ site_admin: bool
112
+ starred_at?: str
113
+ user_view_type?: str
114
+
115
+ installation:
116
+ id: int
117
+ account: any
118
+ repository_selection: all | selected
119
+ access_tokens_url: str
120
+ repositories_url: str
121
+ html_url: str
122
+ app_id: int
123
+ client_id?: str
124
+ target_id: int
125
+ target_type: str
126
+ permissions: app-permissions
127
+ events: [str]
128
+ created_at: datetime
129
+ updated_at: datetime
130
+ single_file_name: str
131
+ has_multiple_single_files?: bool
132
+ single_file_paths?: [str]
133
+ app_slug: str
134
+ suspended_by: nullable-simple-user
135
+ suspended_at: datetime
136
+ contact_email?: str
137
+
138
+ nullable-license-simple:
139
+ key: str
140
+ name: str
141
+ url: str
142
+ spdx_id: str
143
+ node_id: str
144
+ html_url?: str
145
+
146
+ language:
147
+
148
+ enterprise-webhooks:
149
+ description?: str
150
+ html_url: str
151
+ website_url?: str
152
+ id: int
153
+ node_id: str
154
+ name: str
155
+ slug: str
156
+ created_at: datetime
157
+ updated_at: datetime
158
+ avatar_url: str
159
+
160
+ organization-simple-webhooks:
161
+ login: str
162
+ id: int
163
+ node_id: str
164
+ url: str
165
+ repos_url: str
166
+ events_url: str
167
+ hooks_url: str
168
+ issues_url: str
169
+ members_url: str
170
+ public_members_url: str
171
+ avatar_url: str
172
+ description: str
173
+
174
+ repository-webhooks:
175
+ id: int
176
+ node_id: str
177
+ name: str
178
+ full_name: str
179
+ license: nullable-license-simple
180
+ organization?: nullable-simple-user
181
+ forks: int
182
+ permissions?: {admin: bool, pull: bool, triage?: bool, push: bool, maintain?: bool}
183
+ owner: simple-user
184
+ private: bool = false
185
+ html_url: str
186
+ description: str
187
+ fork: bool
188
+ url: str
189
+ archive_url: str
190
+ assignees_url: str
191
+ blobs_url: str
192
+ branches_url: str
193
+ collaborators_url: str
194
+ comments_url: str
195
+ commits_url: str
196
+ compare_url: str
197
+ contents_url: str
198
+ contributors_url: str
199
+ deployments_url: str
200
+ downloads_url: str
201
+ events_url: str
202
+ forks_url: str
203
+ git_commits_url: str
204
+ git_refs_url: str
205
+ git_tags_url: str
206
+ git_url: str
207
+ issue_comment_url: str
208
+ issue_events_url: str
209
+ issues_url: str
210
+ keys_url: str
211
+ labels_url: str
212
+ languages_url: str
213
+ merges_url: str
214
+ milestones_url: str
215
+ notifications_url: str
216
+ pulls_url: str
217
+ releases_url: str
218
+ ssh_url: str
219
+ stargazers_url: str
220
+ statuses_url: str
221
+ subscribers_url: str
222
+ subscription_url: str
223
+ tags_url: str
224
+ teams_url: str
225
+ trees_url: str
226
+ clone_url: str
227
+ mirror_url: str
228
+ hooks_url: str
229
+ svn_url: str
230
+ homepage: str
231
+ language: str
232
+ forks_count: int
233
+ stargazers_count: int
234
+ watchers_count: int
235
+ size: int
236
+ default_branch: str
237
+ open_issues_count: int
238
+ is_template?: bool = false
239
+ topics?: [str]
240
+ custom_properties?: {str:any}
241
+ has_issues: bool = true
242
+ has_projects: bool = true
243
+ has_wiki: bool = true
244
+ has_pages: bool
245
+ has_downloads: bool = true
246
+ has_discussions?: bool = false
247
+ has_pull_requests?: bool = true
248
+ pull_request_creation_policy?: all | collaborators_only
249
+ archived: bool = false
250
+ disabled: bool
251
+ visibility?: str = "public"
252
+ pushed_at: datetime
253
+ created_at: datetime
254
+ updated_at: datetime
255
+ allow_rebase_merge?: bool = true
256
+ template_repository?: {id?: int, node_id?: str, name?: str, full_name?: str, owner?: {login?: str, id?: int, node_id?: str, avatar_url?: str, gravatar_id?: str, url?: str, html_url?: str, followers_url?: str, following_url?: str, gists_url?: str, starred_url?: str, subscriptions_url?: str, organizations_url?: str, repos_url?: str, events_url?: str, received_events_url?: str, type?: str, site_admin?: bool}, private?: bool, html_url?: str, description?: str, fork?: bool, url?: str, archive_url?: str, assignees_url?: str, blobs_url?: str, branches_url?: str, collaborators_url?: str, comments_url?: str, commits_url?: str, compare_url?: str, contents_url?: str, contributors_url?: str, deployments_url?: str, downloads_url?: str, events_url?: str, forks_url?: str, git_commits_url?: str, git_refs_url?: str, git_tags_url?: str, git_url?: str, issue_comment_url?: str, issue_events_url?: str, issues_url?: str, keys_url?: str, labels_url?: str, languages_url?: str, merges_url?: str, milestones_url?: str, notifications_url?: str, pulls_url?: str, releases_url?: str, ssh_url?: str, stargazers_url?: str, statuses_url?: str, subscribers_url?: str, subscription_url?: str, tags_url?: str, teams_url?: str, trees_url?: str, clone_url?: str, mirror_url?: str, hooks_url?: str, svn_url?: str, homepage?: str, language?: str, forks_count?: int, stargazers_count?: int, watchers_count?: int, size?: int, default_branch?: str, open_issues_count?: int, is_template?: bool, topics?: [str], has_issues?: bool, has_projects?: bool, has_wiki?: bool, has_pages?: bool, has_downloads?: bool, archived?: bool, disabled?: bool, visibility?: str, pushed_at?: str, created_at?: str, updated_at?: str, permissions?: {admin?: bool, maintain?: bool, push?: bool, triage?: bool, pull?: bool}, allow_rebase_merge?: bool, temp_clone_token?: str, allow_squash_merge?: bool, allow_auto_merge?: bool, delete_branch_on_merge?: bool, allow_update_branch?: bool, squash_merge_commit_title?: PR_TITLE | COMMIT_OR_PR_TITLE, squash_merge_commit_message?: PR_BODY | COMMIT_MESSAGES | BLANK, merge_commit_title?: PR_TITLE | MERGE_MESSAGE, merge_commit_message?: PR_BODY | PR_TITLE | BLANK, allow_merge_commit?: bool, subscribers_count?: int, network_count?: int}
257
+ temp_clone_token?: str
258
+ allow_squash_merge?: bool = true
259
+ allow_auto_merge?: bool = false
260
+ delete_branch_on_merge?: bool = false
261
+ allow_update_branch?: bool = false
262
+ squash_merge_commit_title?: PR_TITLE | COMMIT_OR_PR_TITLE
263
+ squash_merge_commit_message?: PR_BODY | COMMIT_MESSAGES | BLANK
264
+ merge_commit_title?: PR_TITLE | MERGE_MESSAGE
265
+ merge_commit_message?: PR_BODY | PR_TITLE | BLANK
266
+ allow_merge_commit?: bool = true
267
+ allow_forking?: bool
268
+ web_commit_signoff_required?: bool = false
269
+ subscribers_count?: int
270
+ network_count?: int
271
+ open_issues: int
272
+ watchers: int
273
+ starred_at?: str
274
+ anonymous_access_enabled?: bool
275
+
276
+ webhooks_user:
277
+ avatar_url?: str
278
+ deleted?: bool
279
+ email?: str
280
+ events_url?: str
281
+ followers_url?: str
282
+ following_url?: str
283
+ gists_url?: str
284
+ gravatar_id?: str
285
+ html_url?: str
286
+ id: int
287
+ login: str
288
+ name?: str
289
+ node_id?: str
290
+ organizations_url?: str
291
+ received_events_url?: str
292
+ repos_url?: str
293
+ site_admin?: bool
294
+ starred_url?: str
295
+ subscriptions_url?: str
296
+ type?: Bot | User | Organization
297
+ url?: str
298
+ user_view_type?: str
299
+
300
+ [webhooks]
301
+ installation/created -> POST /webhooks/installation-created
302
+ Someone installed a GitHub App on a user or organization account.
303
+ # This event occurs when there is activity relating to a GitHub App installation. All GitHub Apps receive this event by default. You cannot manually subscribe to this event.
304
+ # For more information about GitHub Apps, see "[About apps](https://docs.github.com/developers/apps/getting-started-with-apps/about-apps#about-github-apps)." For information about the APIs to manage GitHub Apps, see [the GraphQL API documentation](https://docs.github.com/graphql/reference/objects#app) or "[Apps](https://docs.github.com/rest/apps)" in the REST API documentation.
305
+ < action: created
306
+ < enterprise?: enterprise-webhooks
307
+ < installation: installation
308
+ < organization?: organization-simple-webhooks
309
+ < repositories?: [{full_name: str, id: int, name: str, node_id: str, private: bool}]
310
+ < repository?: repository-webhooks
311
+ < requester?: webhooks_user
312
+ < sender: simple-user