github-schema 1.20.5 → 1.20.7
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-DTgnV7Df.d.ts → github-schema-CeezMNgO.d.ts} +58 -6
- package/dist/{github-schema-drGXXSbB.d.cts → github-schema-D4fLsCFI.d.cts} +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 +1 -1
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
|
"""
|
|
@@ -19317,6 +19417,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
|
|
|
19317
19417
|
"""
|
|
19318
19418
|
viewerCanReopen: Boolean!
|
|
19319
19419
|
|
|
19420
|
+
"""
|
|
19421
|
+
Check if the current viewer can set fields on the issue.
|
|
19422
|
+
"""
|
|
19423
|
+
viewerCanSetFields: Boolean
|
|
19424
|
+
|
|
19320
19425
|
"""
|
|
19321
19426
|
Check if the viewer is able to change their subscription status for the repository.
|
|
19322
19427
|
"""
|
|
@@ -20054,7 +20159,7 @@ type IssueTimelineItemEdge {
|
|
|
20054
20159
|
"""
|
|
20055
20160
|
An item in an issue timeline
|
|
20056
20161
|
"""
|
|
20057
|
-
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
|
|
20162
|
+
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
|
|
20058
20163
|
|
|
20059
20164
|
"""
|
|
20060
20165
|
The connection type for IssueTimelineItems.
|
|
@@ -40290,7 +40395,7 @@ type PullRequestTimelineItemEdge {
|
|
|
40290
40395
|
"""
|
|
40291
40396
|
An item in a pull request timeline
|
|
40292
40397
|
"""
|
|
40293
|
-
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
|
|
40398
|
+
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
|
|
40294
40399
|
|
|
40295
40400
|
"""
|
|
40296
40401
|
The connection type for PullRequestTimelineItems.
|
|
@@ -47597,6 +47702,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
47597
47702
|
"""
|
|
47598
47703
|
viewerCanCreateProjects: Boolean! @deprecated(reason: "Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.")
|
|
47599
47704
|
|
|
47705
|
+
"""
|
|
47706
|
+
Indicates whether the current user can see issue fields in this repository
|
|
47707
|
+
"""
|
|
47708
|
+
viewerCanSeeIssueFields: Boolean!
|
|
47709
|
+
|
|
47600
47710
|
"""
|
|
47601
47711
|
Check if the viewer is able to change their subscription status for the repository.
|
|
47602
47712
|
"""
|