Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
36c34c1
WIP: schema updates
Jun 5, 2025
2e7701c
WIP: schema updates
Jun 6, 2025
fd1c2f2
WIP: schema updates
Jun 7, 2025
0d9a66d
WIP: schema updates
Jun 10, 2025
c302061
WIP: schema updates
Jun 11, 2025
6b37300
WIP: schema updates
Jun 12, 2025
c530c1a
WIP: schema updates
Jun 18, 2025
186c9a4
WIP: schema updates
Jun 19, 2025
09bb5e5
WIP: schema updates
Jun 20, 2025
fc9b18f
WIP: schema updates
Jun 21, 2025
f35c85c
WIP: schema updates
Jun 25, 2025
61b595a
WIP: schema updates
Jun 26, 2025
4148b28
WIP: schema updates
Jul 1, 2025
96feebf
WIP: schema updates
Jul 2, 2025
f232325
WIP: schema updates
Jul 4, 2025
5d3471a
WIP: schema updates
Jul 8, 2025
eee65f8
WIP: schema updates
Jul 9, 2025
da573c4
WIP: schema updates
Jul 10, 2025
5921e13
WIP: schema updates
Jul 13, 2025
ee36303
WIP: schema updates
Jul 15, 2025
10b6e9d
WIP: schema updates
Jul 16, 2025
2e224a6
WIP: schema updates
Jul 18, 2025
0609c6e
WIP: schema updates
Jul 22, 2025
3929b7a
WIP: schema updates
Jul 24, 2025
5581e1b
WIP: schema updates
Jul 26, 2025
7f7e68e
WIP: schema updates
Jul 30, 2025
a799d3b
WIP: schema updates
Jul 31, 2025
4e2d9b9
WIP: schema updates
Aug 1, 2025
9a48379
WIP: schema updates
Aug 8, 2025
f19e0fa
WIP: schema updates
Aug 9, 2025
d36fef2
WIP: schema updates
Aug 12, 2025
3cd1f8a
WIP: schema updates
Aug 13, 2025
69b471e
WIP: schema updates
Aug 14, 2025
45988ef
WIP: schema updates
Aug 15, 2025
afc4d27
WIP: schema updates
Aug 16, 2025
fbe7881
WIP: schema updates
Aug 20, 2025
8bac1c4
WIP: schema updates
Aug 22, 2025
9e8073b
WIP: schema updates
Aug 27, 2025
26f1d6a
WIP: schema updates
Sep 6, 2025
05c2dab
WIP: schema updates
Sep 9, 2025
dc419e9
WIP: schema updates
Sep 10, 2025
595958e
WIP: schema updates
Sep 12, 2025
f0b1e04
WIP: schema updates
Sep 13, 2025
80b0703
WIP: schema updates
Sep 16, 2025
5e03688
WIP: schema updates
Sep 19, 2025
2d2e0d1
WIP: schema updates
Sep 20, 2025
1ffd58b
WIP: schema updates
Sep 23, 2025
2ceeb85
WIP: schema updates
Oct 1, 2025
ca200d4
WIP: schema updates
Oct 2, 2025
c352bb5
WIP: schema updates
Oct 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9,701 changes: 6,403 additions & 3,298 deletions cache/api.github.com.json

Large diffs are not rendered by default.

10,499 changes: 7,261 additions & 3,238 deletions cache/ghec.json

Large diffs are not rendered by default.

146,929 changes: 0 additions & 146,929 deletions cache/ghes-3.13.json

This file was deleted.

1,705 changes: 1,318 additions & 387 deletions cache/ghes-3.14.json

Large diffs are not rendered by default.

1,740 changes: 1,351 additions & 389 deletions cache/ghes-3.15.json

Large diffs are not rendered by default.

2,354 changes: 1,676 additions & 678 deletions cache/ghes-3.16.json

Large diffs are not rendered by default.

2,076 changes: 1,465 additions & 611 deletions cache/ghes-3.17.json

Large diffs are not rendered by default.

989 changes: 720 additions & 269 deletions packages/openapi-webhooks-types-ghec/types.d.ts

Large diffs are not rendered by default.

702 changes: 588 additions & 114 deletions packages/openapi-webhooks-types-ghes-3.14/types.d.ts

Large diffs are not rendered by default.

721 changes: 605 additions & 116 deletions packages/openapi-webhooks-types-ghes-3.15/types.d.ts

Large diffs are not rendered by default.

723 changes: 606 additions & 117 deletions packages/openapi-webhooks-types-ghes-3.16/types.d.ts

Large diffs are not rendered by default.

735 changes: 606 additions & 129 deletions packages/openapi-webhooks-types-ghes-3.17/types.d.ts

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions packages/openapi-webhooks-types-transition/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,19 @@ export type IssueCommentEvent =
| WebhookEventDefinition<"issue-comment-created">
| WebhookEventDefinition<"issue-comment-deleted">
| WebhookEventDefinition<"issue-comment-edited">;
export type IssueDependenciesBlockedByAddedEvent =
WebhookEventDefinition<"issue-dependencies-blocked-by-added">;
export type IssueDependenciesBlockedByRemovedEvent =
WebhookEventDefinition<"issue-dependencies-blocked-by-removed">;
export type IssueDependenciesBlockingAddedEvent =
WebhookEventDefinition<"issue-dependencies-blocking-added">;
export type IssueDependenciesBlockingRemovedEvent =
WebhookEventDefinition<"issue-dependencies-blocking-removed">;
export type IssueDependenciesEvent =
| WebhookEventDefinition<"issue-dependencies-blocked-by-added">
| WebhookEventDefinition<"issue-dependencies-blocked-by-removed">
| WebhookEventDefinition<"issue-dependencies-blocking-added">
| WebhookEventDefinition<"issue-dependencies-blocking-removed">;
export type IssuesAssignedEvent = WebhookEventDefinition<"issues-assigned">;
export type IssuesClosedEvent = WebhookEventDefinition<"issues-closed">;
export type IssuesDeletedEvent = WebhookEventDefinition<"issues-deleted">;
Expand Down Expand Up @@ -816,6 +829,11 @@ export type EventPayloadMap = {
| WebhookEventDefinition<"issue-comment-created">
| WebhookEventDefinition<"issue-comment-deleted">
| WebhookEventDefinition<"issue-comment-edited">;
issue_dependencies:
| WebhookEventDefinition<"issue-dependencies-blocked-by-added">
| WebhookEventDefinition<"issue-dependencies-blocked-by-removed">
| WebhookEventDefinition<"issue-dependencies-blocking-added">
| WebhookEventDefinition<"issue-dependencies-blocking-removed">;
issues:
| WebhookEventDefinition<"issues-assigned">
| WebhookEventDefinition<"issues-closed">
Expand Down Expand Up @@ -1060,6 +1078,7 @@ export type WebhookEvent =
| InstallationRepositoriesEvent
| InstallationTargetEvent
| IssueCommentEvent
| IssueDependenciesEvent
| IssuesEvent
| LabelEvent
| MarketplacePurchaseEvent
Expand Down
Loading