github-schema 1.20.4 → 1.20.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{github-schema-DXVe04X3.d.cts → github-schema-BxM_5pCz.d.cts} +58 -6
- package/dist/{github-schema-jswnEgkk.d.ts → github-schema-dJ1U-wDT.d.ts} +58 -6
- package/dist/github-schema.d.cts +2 -2
- package/dist/github-schema.d.ts +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/github-schema.graphql +112 -2
- package/package.json +9 -15
package/github-schema.graphql
CHANGED
|
@@ -2311,6 +2311,106 @@ type Blob implements GitObject & Node {
|
|
|
2311
2311
|
text: String
|
|
2312
2312
|
}
|
|
2313
2313
|
|
|
2314
|
+
"""
|
|
2315
|
+
Represents a 'blocked_by_added' event on a given issue.
|
|
2316
|
+
"""
|
|
2317
|
+
type BlockedByAddedEvent implements Node {
|
|
2318
|
+
"""
|
|
2319
|
+
Identifies the actor who performed the event.
|
|
2320
|
+
"""
|
|
2321
|
+
actor: Actor
|
|
2322
|
+
|
|
2323
|
+
"""
|
|
2324
|
+
The blocking issue that was added.
|
|
2325
|
+
"""
|
|
2326
|
+
blockingIssue: Issue
|
|
2327
|
+
|
|
2328
|
+
"""
|
|
2329
|
+
Identifies the date and time when the object was created.
|
|
2330
|
+
"""
|
|
2331
|
+
createdAt: DateTime!
|
|
2332
|
+
|
|
2333
|
+
"""
|
|
2334
|
+
The Node ID of the BlockedByAddedEvent object
|
|
2335
|
+
"""
|
|
2336
|
+
id: ID!
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
"""
|
|
2340
|
+
Represents a 'blocked_by_removed' event on a given issue.
|
|
2341
|
+
"""
|
|
2342
|
+
type BlockedByRemovedEvent implements Node {
|
|
2343
|
+
"""
|
|
2344
|
+
Identifies the actor who performed the event.
|
|
2345
|
+
"""
|
|
2346
|
+
actor: Actor
|
|
2347
|
+
|
|
2348
|
+
"""
|
|
2349
|
+
The blocking issue that was removed.
|
|
2350
|
+
"""
|
|
2351
|
+
blockingIssue: Issue
|
|
2352
|
+
|
|
2353
|
+
"""
|
|
2354
|
+
Identifies the date and time when the object was created.
|
|
2355
|
+
"""
|
|
2356
|
+
createdAt: DateTime!
|
|
2357
|
+
|
|
2358
|
+
"""
|
|
2359
|
+
The Node ID of the BlockedByRemovedEvent object
|
|
2360
|
+
"""
|
|
2361
|
+
id: ID!
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
"""
|
|
2365
|
+
Represents a 'blocking_added' event on a given issue.
|
|
2366
|
+
"""
|
|
2367
|
+
type BlockingAddedEvent implements Node {
|
|
2368
|
+
"""
|
|
2369
|
+
Identifies the actor who performed the event.
|
|
2370
|
+
"""
|
|
2371
|
+
actor: Actor
|
|
2372
|
+
|
|
2373
|
+
"""
|
|
2374
|
+
The blocked issue that was added.
|
|
2375
|
+
"""
|
|
2376
|
+
blockedIssue: Issue
|
|
2377
|
+
|
|
2378
|
+
"""
|
|
2379
|
+
Identifies the date and time when the object was created.
|
|
2380
|
+
"""
|
|
2381
|
+
createdAt: DateTime!
|
|
2382
|
+
|
|
2383
|
+
"""
|
|
2384
|
+
The Node ID of the BlockingAddedEvent object
|
|
2385
|
+
"""
|
|
2386
|
+
id: ID!
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
"""
|
|
2390
|
+
Represents a 'blocking_removed' event on a given issue.
|
|
2391
|
+
"""
|
|
2392
|
+
type BlockingRemovedEvent implements Node {
|
|
2393
|
+
"""
|
|
2394
|
+
Identifies the actor who performed the event.
|
|
2395
|
+
"""
|
|
2396
|
+
actor: Actor
|
|
2397
|
+
|
|
2398
|
+
"""
|
|
2399
|
+
The blocked issue that was removed.
|
|
2400
|
+
"""
|
|
2401
|
+
blockedIssue: Issue
|
|
2402
|
+
|
|
2403
|
+
"""
|
|
2404
|
+
Identifies the date and time when the object was created.
|
|
2405
|
+
"""
|
|
2406
|
+
createdAt: DateTime!
|
|
2407
|
+
|
|
2408
|
+
"""
|
|
2409
|
+
The Node ID of the BlockingRemovedEvent object
|
|
2410
|
+
"""
|
|
2411
|
+
id: ID!
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2314
2414
|
"""
|
|
2315
2415
|
A special type of user which takes actions on behalf of GitHub Apps.
|
|
2316
2416
|
"""
|
|
@@ -13342,6 +13442,11 @@ type Enterprise implements Node {
|
|
|
13342
13442
|
last: Int
|
|
13343
13443
|
): RepositoryRulesetConnection
|
|
13344
13444
|
|
|
13445
|
+
"""
|
|
13446
|
+
The enterprise's security contact email address.
|
|
13447
|
+
"""
|
|
13448
|
+
securityContactEmail: String
|
|
13449
|
+
|
|
13345
13450
|
"""
|
|
13346
13451
|
The URL-friendly identifier for the enterprise.
|
|
13347
13452
|
"""
|
|
@@ -20049,7 +20154,7 @@ type IssueTimelineItemEdge {
|
|
|
20049
20154
|
"""
|
|
20050
20155
|
An item in an issue timeline
|
|
20051
20156
|
"""
|
|
20052
|
-
union IssueTimelineItems = AddedToProjectEvent | AssignedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
|
|
20157
|
+
union IssueTimelineItems = AddedToProjectEvent | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
|
|
20053
20158
|
|
|
20054
20159
|
"""
|
|
20055
20160
|
The connection type for IssueTimelineItems.
|
|
@@ -40285,7 +40390,7 @@ type PullRequestTimelineItemEdge {
|
|
|
40285
40390
|
"""
|
|
40286
40391
|
An item in a pull request timeline
|
|
40287
40392
|
"""
|
|
40288
|
-
union PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
|
|
40393
|
+
union PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
|
|
40289
40394
|
|
|
40290
40395
|
"""
|
|
40291
40396
|
The connection type for PullRequestTimelineItems.
|
|
@@ -60564,6 +60669,11 @@ input UpdateEnterpriseProfileInput {
|
|
|
60564
60669
|
"""
|
|
60565
60670
|
name: String
|
|
60566
60671
|
|
|
60672
|
+
"""
|
|
60673
|
+
The security contact email address of the enterprise.
|
|
60674
|
+
"""
|
|
60675
|
+
securityContactEmail: String
|
|
60676
|
+
|
|
60567
60677
|
"""
|
|
60568
60678
|
The URL of the enterprise's website.
|
|
60569
60679
|
"""
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "github-schema",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.6",
|
|
4
4
|
"description": "GitHub's GraphQL schema",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"email": "lucasnrgaard@gmail.com",
|
|
9
9
|
"url": "https://luxass.dev"
|
|
10
10
|
},
|
|
11
|
-
"packageManager": "pnpm@10.13.1",
|
|
12
11
|
"license": "MIT",
|
|
13
12
|
"homepage": "https://github.com/luxass/github-schema",
|
|
14
13
|
"repository": {
|
|
@@ -50,13 +49,6 @@
|
|
|
50
49
|
"engines": {
|
|
51
50
|
"node": ">=18"
|
|
52
51
|
},
|
|
53
|
-
"scripts": {
|
|
54
|
-
"build": "tsdown",
|
|
55
|
-
"schema:download": "pnpx tsx --env-file=.env ./scripts/download.ts",
|
|
56
|
-
"schema:codegen": "graphql-codegen",
|
|
57
|
-
"lint": "eslint .",
|
|
58
|
-
"typecheck": "tsc --noEmit"
|
|
59
|
-
},
|
|
60
52
|
"dependencies": {
|
|
61
53
|
"graphql": "^16.11.0",
|
|
62
54
|
"graphql-tag": "^2.12.6"
|
|
@@ -70,12 +62,14 @@
|
|
|
70
62
|
"eslint": "^9.30.1",
|
|
71
63
|
"eslint-plugin-format": "^1.0.1",
|
|
72
64
|
"publint": "^0.3.12",
|
|
73
|
-
"tsdown": "^0.
|
|
65
|
+
"tsdown": "^0.13.0",
|
|
74
66
|
"typescript": "^5.8.3"
|
|
75
67
|
},
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
|
|
79
|
-
|
|
68
|
+
"scripts": {
|
|
69
|
+
"build": "tsdown",
|
|
70
|
+
"schema:download": "pnpx tsx --env-file=.env ./scripts/download.ts",
|
|
71
|
+
"schema:codegen": "graphql-codegen",
|
|
72
|
+
"lint": "eslint .",
|
|
73
|
+
"typecheck": "tsc --noEmit"
|
|
80
74
|
}
|
|
81
|
-
}
|
|
75
|
+
}
|