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,132 @@
1
+ export type OpenApiDocument = Record<string, unknown>;
2
+ export type Schema = Record<string, unknown>;
3
+ /**
4
+ * Options that control how an OpenAPI document is converted to LAPIS.
5
+ */
6
+ export interface LapisConvertOptions {
7
+ /**
8
+ * Whether descriptions are shortened to fit compact LAPIS output.
9
+ *
10
+ * Defaults to `true`. Set to `false` to preserve full OpenAPI descriptions.
11
+ */
12
+ truncateDescriptions?: boolean;
13
+ /**
14
+ * Maximum description length when `truncateDescriptions` is enabled.
15
+ *
16
+ * Defaults to 80 characters.
17
+ */
18
+ maxDescriptionLength?: number;
19
+ }
20
+ export interface LapisMeta {
21
+ api: string;
22
+ base: string;
23
+ version?: string;
24
+ desc?: string;
25
+ auth?: string;
26
+ format?: string;
27
+ }
28
+ export interface LapisField {
29
+ name: string;
30
+ typeExpr: string;
31
+ description?: string;
32
+ optional?: boolean;
33
+ default?: string;
34
+ since?: string;
35
+ deprecated?: boolean;
36
+ deprecatedNote?: string;
37
+ location?: string;
38
+ headerName?: string;
39
+ }
40
+ export interface LapisEnumType {
41
+ kind: "enum";
42
+ name: string;
43
+ values: string[];
44
+ }
45
+ export interface LapisObjectType {
46
+ kind: "object";
47
+ name: string;
48
+ fields: LapisField[];
49
+ }
50
+ export type LapisType = LapisEnumType | LapisObjectType;
51
+ export interface LapisOperation {
52
+ name: string;
53
+ method: string;
54
+ path: string;
55
+ tags?: string[];
56
+ preComments?: string[];
57
+ description?: string;
58
+ comments?: string[];
59
+ inputs: LapisField[];
60
+ outputs: LapisField[];
61
+ outputRef?: string;
62
+ modifiers: string[];
63
+ since?: string;
64
+ }
65
+ export interface LapisWebhook {
66
+ name: string;
67
+ method: string;
68
+ path: string;
69
+ tags?: string[];
70
+ preComments?: string[];
71
+ description?: string;
72
+ comments?: string[];
73
+ triggers: string[];
74
+ outputs: LapisField[];
75
+ }
76
+ export interface LapisError {
77
+ code: number;
78
+ name: string;
79
+ description?: string;
80
+ ops: string[];
81
+ fields: LapisField[];
82
+ }
83
+ export interface LapisRateLimit {
84
+ count: number;
85
+ window: string;
86
+ scope?: string;
87
+ }
88
+ export interface LapisQuota {
89
+ count?: number;
90
+ period?: string;
91
+ unlimited?: boolean;
92
+ scope?: string;
93
+ description?: string;
94
+ }
95
+ export interface LapisPlan {
96
+ name: string;
97
+ rates: LapisRateLimit[];
98
+ quotas: LapisQuota[];
99
+ maxBatch?: number;
100
+ }
101
+ export interface LapisLimits {
102
+ headers?: string;
103
+ onExceed?: string;
104
+ maxBody?: string;
105
+ maxUpload?: string;
106
+ maxResponse?: string;
107
+ maxBatch?: number;
108
+ plans: LapisPlan[];
109
+ rates: LapisRateLimit[];
110
+ quotas: LapisQuota[];
111
+ }
112
+ export interface LapisFlowCondition {
113
+ op: string;
114
+ description: string;
115
+ }
116
+ export interface LapisFlow {
117
+ name: string;
118
+ description: string;
119
+ chain: string;
120
+ conditions: LapisFlowCondition[];
121
+ narrative?: string;
122
+ }
123
+ export interface LapisDocument {
124
+ meta: LapisMeta;
125
+ types: LapisType[];
126
+ ops: LapisOperation[];
127
+ webhooks: LapisWebhook[];
128
+ errors: LapisError[];
129
+ errorBaseType?: string;
130
+ limits?: LapisLimits;
131
+ flows: LapisFlow[];
132
+ }
package/dist/models.js ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,14 @@
1
+ import type { OpenApiDocument } from "./models.js";
2
+ export interface MultiLapisWriteOptions {
3
+ outputDir?: string;
4
+ }
5
+ export interface MultiLapisBuildOptions {
6
+ truncateDescriptions?: boolean;
7
+ }
8
+ export interface GeneratedFile {
9
+ path: string;
10
+ content: string;
11
+ }
12
+ export declare function writeMultiLapis(doc: OpenApiDocument, inputPath: string, options?: MultiLapisWriteOptions): Promise<string>;
13
+ export declare function buildMultiLapis(doc: OpenApiDocument, options?: MultiLapisBuildOptions): GeneratedFile[];
14
+ export declare function defaultMultiLapisOutputPath(input: string): string;
@@ -0,0 +1,311 @@
1
+ import { mkdir, writeFile } from "node:fs/promises";
2
+ import { basename, dirname, extname, join } from "node:path";
3
+ import posixPath from "node:path/posix";
4
+ import { emit } from "./emitter.js";
5
+ import { convert } from "./converter.js";
6
+ import { normalizeDescription, toSnakeCase, isRecord } from "./utils.js";
7
+ const UNTAGGED = "_untagged";
8
+ export async function writeMultiLapis(doc, inputPath, options = {}) {
9
+ const outputDir = options.outputDir ?? defaultMultiLapisOutputPath(inputPath);
10
+ const files = buildMultiLapis(doc);
11
+ await mkdir(outputDir, { recursive: true });
12
+ for (const file of files) {
13
+ const outputPath = join(outputDir, file.path);
14
+ await mkdir(dirname(outputPath), { recursive: true });
15
+ await writeFile(outputPath, file.content, "utf8");
16
+ }
17
+ return outputDir;
18
+ }
19
+ export function buildMultiLapis(doc, options = {}) {
20
+ const lapis = convert(doc, {
21
+ truncateDescriptions: options.truncateDescriptions ?? false,
22
+ });
23
+ const tagDescriptions = extractTagDescriptions(doc);
24
+ const tags = groupByTags(lapis, tagDescriptions);
25
+ const files = [
26
+ {
27
+ path: "index.md",
28
+ content: emitTopLevelIndex(lapis, tags),
29
+ },
30
+ ];
31
+ for (const tag of tags) {
32
+ files.push({
33
+ path: posixPath.join(tag.slug, "index.md"),
34
+ content: emitTagIndex(tag),
35
+ });
36
+ for (const entry of tag.ops) {
37
+ const op = withDuplicateComments(entry, tag, tags);
38
+ files.push({
39
+ path: posixPath.join(tag.slug, entry.filename),
40
+ content: emit(singleOperationDocument(lapis, op)),
41
+ });
42
+ }
43
+ for (const entry of tag.webhooks) {
44
+ const webhook = withDuplicateComments(entry, tag, tags);
45
+ files.push({
46
+ path: posixPath.join(tag.slug, entry.filename),
47
+ content: emit(singleWebhookDocument(lapis, webhook)),
48
+ });
49
+ }
50
+ }
51
+ return files;
52
+ }
53
+ export function defaultMultiLapisOutputPath(input) {
54
+ return join(dirname(input), basename(input, extname(input)));
55
+ }
56
+ function groupByTags(lapis, tagDescriptions) {
57
+ const tags = new Map();
58
+ const deprecatedEndpointPaths = allDeprecatedEndpointPaths(lapis.ops);
59
+ for (const op of lapis.ops) {
60
+ const opTags = itemTags(op);
61
+ const baseSlug = slugify(op.name);
62
+ const filename = `${baseSlug}.op.lapis`;
63
+ for (const tagName of opTags) {
64
+ const tag = getTag(tags, tagName, tagDescriptions);
65
+ tag.ops.push({
66
+ item: op,
67
+ kind: "operation",
68
+ filename: uniqueFilename(filename, [...tag.ops, ...tag.webhooks]),
69
+ summary: itemSummary(op),
70
+ deprecatedEndpoint: deprecatedEndpointPaths.has(op.path),
71
+ });
72
+ }
73
+ }
74
+ for (const webhook of lapis.webhooks) {
75
+ const webhookTags = itemTags(webhook);
76
+ const baseSlug = slugify(webhook.name);
77
+ const filename = `${baseSlug}.webhook.lapis`;
78
+ for (const tagName of webhookTags) {
79
+ const tag = getTag(tags, tagName, tagDescriptions);
80
+ tag.webhooks.push({
81
+ item: webhook,
82
+ kind: "webhook",
83
+ filename: uniqueFilename(filename, [...tag.ops, ...tag.webhooks]),
84
+ summary: itemSummary(webhook),
85
+ });
86
+ }
87
+ }
88
+ return [...tags.values()].sort((a, b) => a.name.localeCompare(b.name));
89
+ }
90
+ function getTag(tags, name, descriptions) {
91
+ const slug = tagSlug(name);
92
+ const existing = tags.get(slug);
93
+ if (existing)
94
+ return existing;
95
+ const tag = {
96
+ name,
97
+ slug,
98
+ description: descriptions.get(name),
99
+ ops: [],
100
+ webhooks: [],
101
+ };
102
+ tags.set(slug, tag);
103
+ return tag;
104
+ }
105
+ function itemTags(item) {
106
+ return item.tags && item.tags.length > 0 ? item.tags : [UNTAGGED];
107
+ }
108
+ function itemSummary(item) {
109
+ const candidates = [item.description, ...(item.comments ?? [])]
110
+ .map((value) => normalizeDescription(value)?.replace(/\n/g, " "))
111
+ .filter((value) => Boolean(value));
112
+ if (candidates.length === 0)
113
+ return undefined;
114
+ return candidates.sort((a, b) => a.length - b.length)[0];
115
+ }
116
+ function allDeprecatedEndpointPaths(ops) {
117
+ const byPath = new Map();
118
+ for (const op of ops) {
119
+ const pathOps = byPath.get(op.path);
120
+ if (pathOps)
121
+ pathOps.push(op);
122
+ else
123
+ byPath.set(op.path, [op]);
124
+ }
125
+ const deprecatedPaths = new Set();
126
+ for (const [path, pathOps] of byPath) {
127
+ if (pathOps.length > 0 && pathOps.every(isDeprecatedOperation))
128
+ deprecatedPaths.add(path);
129
+ }
130
+ return deprecatedPaths;
131
+ }
132
+ function isDeprecatedOperation(op) {
133
+ return op.modifiers.some((modifier) => modifier === "+deprecated" || modifier.startsWith("+deprecated "));
134
+ }
135
+ function withDuplicateComments(entry, currentTag, tags) {
136
+ const siblingPaths = findSiblingPaths(entry, currentTag, tags);
137
+ if (siblingPaths.length === 0)
138
+ return entry.item;
139
+ const label = entry.kind === "webhook" ? "webhook" : "operation";
140
+ const preComments = siblingPaths.map((path) => `Same ${label} as ${path}`);
141
+ return { ...entry.item, preComments: [...preComments, ...(entry.item.preComments ?? [])] };
142
+ }
143
+ function findSiblingPaths(entry, currentTag, tags) {
144
+ const siblings = [];
145
+ for (const tag of tags) {
146
+ if (tag.slug === currentTag.slug)
147
+ continue;
148
+ const entries = entry.kind === "operation" ? tag.ops : tag.webhooks;
149
+ const sibling = entries.find((candidate) => candidate.item === entry.item);
150
+ if (sibling)
151
+ siblings.push(posixPath.relative(currentTag.slug, posixPath.join(tag.slug, sibling.filename)));
152
+ }
153
+ return siblings;
154
+ }
155
+ function singleOperationDocument(lapis, op) {
156
+ const errors = operationErrors(lapis, op);
157
+ return {
158
+ ...lapis,
159
+ types: collectTypes(lapis.types, operationTypeRoots(op, errors, lapis.errorBaseType)),
160
+ ops: [op],
161
+ webhooks: [],
162
+ errors,
163
+ errorBaseType: errors.length > 0 ? lapis.errorBaseType : undefined,
164
+ flows: [],
165
+ limits: undefined,
166
+ };
167
+ }
168
+ function singleWebhookDocument(lapis, webhook) {
169
+ return {
170
+ ...lapis,
171
+ types: collectTypes(lapis.types, fieldsTypeRoots(webhook.outputs)),
172
+ ops: [],
173
+ webhooks: [webhook],
174
+ errors: [],
175
+ errorBaseType: undefined,
176
+ flows: [],
177
+ limits: undefined,
178
+ };
179
+ }
180
+ function operationErrors(lapis, op) {
181
+ return lapis.errors
182
+ .filter((error) => error.ops.length === 0 || error.ops.includes(op.name))
183
+ .map((error) => ({ ...error, ops: [] }));
184
+ }
185
+ function operationTypeRoots(op, errors, errorBaseType) {
186
+ const roots = fieldsTypeRoots([...op.inputs, ...op.outputs]);
187
+ if (op.outputRef)
188
+ addTypeExprRoots(roots, op.outputRef);
189
+ for (const error of errors)
190
+ addFieldRoots(roots, error.fields);
191
+ if (errors.length > 0 && errorBaseType)
192
+ roots.add(errorBaseType);
193
+ return roots;
194
+ }
195
+ function fieldsTypeRoots(fields) {
196
+ const roots = new Set();
197
+ addFieldRoots(roots, fields);
198
+ return roots;
199
+ }
200
+ function addFieldRoots(roots, fields) {
201
+ for (const field of fields)
202
+ addTypeExprRoots(roots, field.typeExpr);
203
+ }
204
+ function addTypeExprRoots(roots, typeExpr) {
205
+ for (const token of typeExpr.split(/[\s[\]{}:,?|]+/)) {
206
+ const name = token.trim();
207
+ if (name)
208
+ roots.add(name);
209
+ }
210
+ }
211
+ function collectTypes(types, roots) {
212
+ const byName = new Map(types.map((type) => [type.name, type]));
213
+ const needed = new Set();
214
+ const queue = [...roots].filter((name) => byName.has(name));
215
+ for (let index = 0; index < queue.length; index += 1) {
216
+ const name = queue[index];
217
+ if (needed.has(name))
218
+ continue;
219
+ needed.add(name);
220
+ const type = byName.get(name);
221
+ if (!type || type.kind !== "object")
222
+ continue;
223
+ for (const field of type.fields) {
224
+ for (const token of field.typeExpr.split(/[\s[\]{}:,?|]+/)) {
225
+ if (byName.has(token) && !needed.has(token))
226
+ queue.push(token);
227
+ }
228
+ }
229
+ }
230
+ return types.filter((type) => needed.has(type.name));
231
+ }
232
+ function emitTopLevelIndex(lapis, tags) {
233
+ const lines = [`# ${lapis.meta.api}`, ""];
234
+ if (lapis.meta.desc)
235
+ lines.push(lapis.meta.desc, "");
236
+ if (lapis.meta.version)
237
+ lines.push(`- Version: ${lapis.meta.version}`);
238
+ lines.push(`- Base URL: ${lapis.meta.base}`);
239
+ if (lapis.meta.auth)
240
+ lines.push(`- Auth: ${lapis.meta.auth}`);
241
+ lines.push("", "## Tags", "");
242
+ for (const tag of tags) {
243
+ const count = tag.ops.length + tag.webhooks.length;
244
+ const href = tagIndexHref(tag);
245
+ lines.push(tag.description
246
+ ? `- [${tag.name}](${href}) - ${tag.description}`
247
+ : `- [${tag.name}](${href}) - ${count} entries`);
248
+ }
249
+ lines.push("");
250
+ return lines.join("\n");
251
+ }
252
+ function tagIndexHref(tag) {
253
+ return `${tag.slug}/index.md`;
254
+ }
255
+ function emitTagIndex(tag) {
256
+ const lines = [`# ${tag.name}`, ""];
257
+ if (tag.description)
258
+ lines.push(tag.description, "");
259
+ if (tag.ops.length) {
260
+ lines.push("## Operations", "");
261
+ for (const entry of tag.ops)
262
+ lines.push(indexLine(entry));
263
+ lines.push("");
264
+ }
265
+ if (tag.webhooks.length) {
266
+ lines.push("## Webhooks", "");
267
+ for (const entry of tag.webhooks)
268
+ lines.push(indexLine(entry));
269
+ lines.push("");
270
+ }
271
+ return lines.join("\n");
272
+ }
273
+ function indexLine(entry) {
274
+ const deprecated = entry.deprecatedEndpoint ? ", deprecated" : "";
275
+ return entry.summary
276
+ ? `- [${entry.item.name}](${entry.filename}) - ${entry.summary}${deprecated}`
277
+ : `- [${entry.item.name}](${entry.filename})${deprecated}`;
278
+ }
279
+ function extractTagDescriptions(doc) {
280
+ const descriptions = new Map();
281
+ if (!Array.isArray(doc.tags))
282
+ return descriptions;
283
+ for (const tag of doc.tags) {
284
+ if (!isRecord(tag) || typeof tag.name !== "string")
285
+ continue;
286
+ const description = normalizeDescription(tag.description);
287
+ if (description)
288
+ descriptions.set(tag.name, description);
289
+ }
290
+ return descriptions;
291
+ }
292
+ function uniqueFilename(filename, entries) {
293
+ const used = new Set(entries.map((entry) => entry.filename));
294
+ if (!used.has(filename))
295
+ return filename;
296
+ const extension = filename.endsWith(".webhook.lapis") ? ".webhook.lapis" : ".op.lapis";
297
+ const base = filename.slice(0, -extension.length);
298
+ let index = 2;
299
+ let next = `${base}-${index}${extension}`;
300
+ while (used.has(next)) {
301
+ index += 1;
302
+ next = `${base}-${index}${extension}`;
303
+ }
304
+ return next;
305
+ }
306
+ function tagSlug(name) {
307
+ return name === UNTAGGED ? UNTAGGED : slugify(name);
308
+ }
309
+ function slugify(value) {
310
+ return toSnakeCase(value).replace(/_/g, "-") || UNTAGGED;
311
+ }
@@ -0,0 +1,15 @@
1
+ import type { OpenApiDocument } from "./models.js";
2
+ import { type OpenApiOverlaySource } from "./openapi-overlay.js";
3
+ export declare class OpenApiLoadError extends Error {
4
+ }
5
+ export interface LoadOpenApiFromStringOptions {
6
+ skipValidation?: boolean;
7
+ overlays?: OpenApiOverlaySource[];
8
+ sourceName: string;
9
+ }
10
+ export declare function loadOpenApi(path: string, options?: {
11
+ skipValidation?: boolean;
12
+ overlayPaths?: string[];
13
+ }): Promise<OpenApiDocument>;
14
+ export declare function loadOpenApiFromString(text: string, options: LoadOpenApiFromStringOptions): OpenApiDocument;
15
+ export declare function detectOpenApiVersion(doc: OpenApiDocument): string;
@@ -0,0 +1,91 @@
1
+ import { readFile } from "node:fs/promises";
2
+ import { extname } from "node:path";
3
+ import { load as loadYaml } from "js-yaml";
4
+ import { isRecord } from "./utils.js";
5
+ import { applyOpenApiOverlaySources, applyOpenApiOverlays, OpenApiOverlayError, } from "./openapi-overlay.js";
6
+ export class OpenApiLoadError extends Error {
7
+ }
8
+ export async function loadOpenApi(path, options = {}) {
9
+ let text;
10
+ try {
11
+ text = await readFile(path, "utf8");
12
+ }
13
+ catch (error) {
14
+ throw new OpenApiLoadError(`File not found: ${path}`, { cause: error });
15
+ }
16
+ if (!options.overlayPaths || options.overlayPaths.length === 0) {
17
+ return loadOpenApiFromString(text, {
18
+ skipValidation: options.skipValidation,
19
+ sourceName: path,
20
+ });
21
+ }
22
+ let data;
23
+ try {
24
+ data = parseOpenApiText(text, path);
25
+ }
26
+ catch (error) {
27
+ if (error instanceof OpenApiLoadError)
28
+ throw error;
29
+ throw new OpenApiLoadError(`Failed to parse ${path}: ${error instanceof Error ? error.message : String(error)}`, { cause: error });
30
+ }
31
+ if (!isRecord(data))
32
+ throw new OpenApiLoadError(`Expected a mapping at the root of ${path}`);
33
+ let doc;
34
+ try {
35
+ doc = await applyOpenApiOverlays(data, options.overlayPaths);
36
+ }
37
+ catch (error) {
38
+ if (error instanceof OpenApiOverlayError) {
39
+ throw new OpenApiLoadError(`OpenAPI overlay failed: ${error.message}`, { cause: error });
40
+ }
41
+ throw error;
42
+ }
43
+ checkOpenApiVersion(doc);
44
+ void options.skipValidation;
45
+ return doc;
46
+ }
47
+ export function loadOpenApiFromString(text, options) {
48
+ let data;
49
+ try {
50
+ data = parseOpenApiText(text, options.sourceName);
51
+ }
52
+ catch (error) {
53
+ if (error instanceof OpenApiLoadError)
54
+ throw error;
55
+ throw new OpenApiLoadError(`Failed to parse ${options.sourceName}: ${error instanceof Error ? error.message : String(error)}`, { cause: error });
56
+ }
57
+ if (!isRecord(data))
58
+ throw new OpenApiLoadError(`Expected a mapping at the root of ${options.sourceName}`);
59
+ let doc;
60
+ try {
61
+ doc = applyOpenApiOverlaySources(data, options.overlays);
62
+ }
63
+ catch (error) {
64
+ if (error instanceof OpenApiOverlayError) {
65
+ throw new OpenApiLoadError(`OpenAPI overlay failed: ${error.message}`, { cause: error });
66
+ }
67
+ throw error;
68
+ }
69
+ checkOpenApiVersion(doc);
70
+ void options.skipValidation;
71
+ return doc;
72
+ }
73
+ export function detectOpenApiVersion(doc) {
74
+ return String(doc.openapi ?? "");
75
+ }
76
+ function parseOpenApiText(text, sourceName) {
77
+ return parse(extname(sourceName).toLowerCase(), text);
78
+ }
79
+ function parse(suffix, text) {
80
+ if (suffix === ".json")
81
+ return JSON.parse(text);
82
+ if (suffix === ".yaml" || suffix === ".yml")
83
+ return loadYaml(text);
84
+ throw new OpenApiLoadError(`Unsupported file extension: ${suffix} (expected .json, .yaml, .yml)`);
85
+ }
86
+ function checkOpenApiVersion(data) {
87
+ const version = String(data.openapi ?? "");
88
+ if (!(version.startsWith("3.0") || version.startsWith("3.1"))) {
89
+ throw new OpenApiLoadError(`Unsupported OpenAPI version: ${JSON.stringify(version)}. Only 3.0.x and 3.1.x are supported.`);
90
+ }
91
+ }
@@ -0,0 +1,14 @@
1
+ import type { OpenApiDocument } from "./models.js";
2
+ export declare class OpenApiOverlayError extends Error {
3
+ }
4
+ export interface OpenApiOverlaySource {
5
+ sourceName: string;
6
+ text: string;
7
+ }
8
+ export declare function applyOpenApiOverlays(doc: OpenApiDocument, overlayPaths?: string[]): Promise<OpenApiDocument>;
9
+ export declare function applyOpenApiOverlaySources(doc: OpenApiDocument, overlays?: OpenApiOverlaySource[]): OpenApiDocument;
10
+ export declare function applyOpenApiOverlayFromString(doc: OpenApiDocument, text: string, options: {
11
+ sourceName: string;
12
+ }): OpenApiDocument;
13
+ export declare function applyOpenApiOverlay(doc: OpenApiDocument, overlay: Record<string, unknown>): OpenApiDocument;
14
+ export declare function parseOpenApiOverlay(source: OpenApiOverlaySource): Record<string, unknown>;