github-schema 1.20.13 → 1.20.15

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.
@@ -1334,6 +1334,36 @@ type AddedToProjectEvent implements Node {
1334
1334
  projectColumnName: String! @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.")
1335
1335
  }
1336
1336
 
1337
+ """
1338
+ Represents a 'added_to_project_v2' event on a given issue or pull request.
1339
+ """
1340
+ type AddedToProjectV2Event implements Node & ProjectV2Event {
1341
+ """
1342
+ Identifies the actor who performed the event.
1343
+ """
1344
+ actor: Actor
1345
+
1346
+ """
1347
+ Identifies the date and time when the object was created.
1348
+ """
1349
+ createdAt: DateTime!
1350
+
1351
+ """
1352
+ The Node ID of the AddedToProjectV2Event object
1353
+ """
1354
+ id: ID!
1355
+
1356
+ """
1357
+ Project referenced by event.
1358
+ """
1359
+ project: ProjectV2
1360
+
1361
+ """
1362
+ Did this event result from workflow automation?
1363
+ """
1364
+ wasAutomated: Boolean!
1365
+ }
1366
+
1337
1367
  """
1338
1368
  An announcement banner for an enterprise or organization.
1339
1369
  """
@@ -7080,6 +7110,36 @@ type ConvertToDraftEvent implements Node & UniformResourceLocatable {
7080
7110
  url: URI!
7081
7111
  }
7082
7112
 
7113
+ """
7114
+ Represents a 'converted_from_draft' event on a given issue or pull request.
7115
+ """
7116
+ type ConvertedFromDraftEvent implements Node & ProjectV2Event {
7117
+ """
7118
+ Identifies the actor who performed the event.
7119
+ """
7120
+ actor: Actor
7121
+
7122
+ """
7123
+ Identifies the date and time when the object was created.
7124
+ """
7125
+ createdAt: DateTime!
7126
+
7127
+ """
7128
+ The Node ID of the ConvertedFromDraftEvent object
7129
+ """
7130
+ id: ID!
7131
+
7132
+ """
7133
+ Project referenced by event.
7134
+ """
7135
+ project: ProjectV2
7136
+
7137
+ """
7138
+ Did this event result from workflow automation?
7139
+ """
7140
+ wasAutomated: Boolean!
7141
+ }
7142
+
7083
7143
  """
7084
7144
  Represents a 'converted_note_to_issue' event on a given issue or pull request.
7085
7145
  """
@@ -19884,6 +19944,16 @@ type IssueDependenciesSummary {
19884
19944
  Count of issues this issue is blocking
19885
19945
  """
19886
19946
  blocking: Int!
19947
+
19948
+ """
19949
+ Total count of issues this issue is blocked by (open and closed)
19950
+ """
19951
+ totalBlockedBy: Int!
19952
+
19953
+ """
19954
+ Total count of issues this issue is blocking (open and closed)
19955
+ """
19956
+ totalBlocking: Int!
19887
19957
  }
19888
19958
 
19889
19959
  """
@@ -20209,7 +20279,7 @@ type IssueTimelineItemEdge {
20209
20279
  """
20210
20280
  An item in an issue timeline
20211
20281
  """
20212
- 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
20282
+ union IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | ReferencedEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
20213
20283
 
20214
20284
  """
20215
20285
  The connection type for IssueTimelineItems.
@@ -20275,6 +20345,11 @@ enum IssueTimelineItemsItemType {
20275
20345
  """
20276
20346
  ADDED_TO_PROJECT_EVENT
20277
20347
 
20348
+ """
20349
+ Represents a 'added_to_project_v2' event on a given issue or pull request.
20350
+ """
20351
+ ADDED_TO_PROJECT_V2_EVENT
20352
+
20278
20353
  """
20279
20354
  Represents an 'assigned' event on any assignable object.
20280
20355
  """
@@ -20315,6 +20390,11 @@ enum IssueTimelineItemsItemType {
20315
20390
  """
20316
20391
  CONNECTED_EVENT
20317
20392
 
20393
+ """
20394
+ Represents a 'converted_from_draft' event on a given issue or pull request.
20395
+ """
20396
+ CONVERTED_FROM_DRAFT_EVENT
20397
+
20318
20398
  """
20319
20399
  Represents a 'converted_note_to_issue' event on a given issue or pull request.
20320
20400
  """
@@ -20405,6 +20485,11 @@ enum IssueTimelineItemsItemType {
20405
20485
  """
20406
20486
  PINNED_EVENT
20407
20487
 
20488
+ """
20489
+ Represents a 'project_v2_item_status_changed' event on a given issue or pull request.
20490
+ """
20491
+ PROJECT_V2_ITEM_STATUS_CHANGED_EVENT
20492
+
20408
20493
  """
20409
20494
  Represents a 'referenced' event on a given `ReferencedSubject`.
20410
20495
  """
@@ -20415,6 +20500,11 @@ enum IssueTimelineItemsItemType {
20415
20500
  """
20416
20501
  REMOVED_FROM_PROJECT_EVENT
20417
20502
 
20503
+ """
20504
+ Represents a 'removed_from_project_v2' event on a given issue or pull request.
20505
+ """
20506
+ REMOVED_FROM_PROJECT_V2_EVENT
20507
+
20418
20508
  """
20419
20509
  Represents a 'renamed' event on a given issue or pull request
20420
20510
  """
@@ -35249,6 +35339,21 @@ type ProjectV2Edge {
35249
35339
  node: ProjectV2
35250
35340
  }
35251
35341
 
35342
+ """
35343
+ Represents an event related to a project on the timeline of an issue or pull request.
35344
+ """
35345
+ interface ProjectV2Event {
35346
+ """
35347
+ Project referenced by event.
35348
+ """
35349
+ project: ProjectV2
35350
+
35351
+ """
35352
+ Did this event result from workflow automation?
35353
+ """
35354
+ wasAutomated: Boolean!
35355
+ }
35356
+
35252
35357
  """
35253
35358
  A field inside a project.
35254
35359
  """
@@ -36299,6 +36404,46 @@ enum ProjectV2ItemOrderField {
36299
36404
  POSITION
36300
36405
  }
36301
36406
 
36407
+ """
36408
+ Represents a 'project_v2_item_status_changed' event on a given issue or pull request.
36409
+ """
36410
+ type ProjectV2ItemStatusChangedEvent implements Node & ProjectV2Event {
36411
+ """
36412
+ Identifies the actor who performed the event.
36413
+ """
36414
+ actor: Actor
36415
+
36416
+ """
36417
+ Identifies the date and time when the object was created.
36418
+ """
36419
+ createdAt: DateTime!
36420
+
36421
+ """
36422
+ The Node ID of the ProjectV2ItemStatusChangedEvent object
36423
+ """
36424
+ id: ID!
36425
+
36426
+ """
36427
+ The previous status of the project item.
36428
+ """
36429
+ previousStatus: String!
36430
+
36431
+ """
36432
+ Project referenced by event.
36433
+ """
36434
+ project: ProjectV2
36435
+
36436
+ """
36437
+ The new status of the project item.
36438
+ """
36439
+ status: String!
36440
+
36441
+ """
36442
+ Did this event result from workflow automation?
36443
+ """
36444
+ wasAutomated: Boolean!
36445
+ }
36446
+
36302
36447
  """
36303
36448
  The type of a project item.
36304
36449
  """
@@ -40460,7 +40605,7 @@ type PullRequestTimelineItemEdge {
40460
40605
  """
40461
40606
  An item in a pull request timeline
40462
40607
  """
40463
- 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
40608
+ union PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
40464
40609
 
40465
40610
  """
40466
40611
  The connection type for PullRequestTimelineItems.
@@ -40531,6 +40676,11 @@ enum PullRequestTimelineItemsItemType {
40531
40676
  """
40532
40677
  ADDED_TO_PROJECT_EVENT
40533
40678
 
40679
+ """
40680
+ Represents a 'added_to_project_v2' event on a given issue or pull request.
40681
+ """
40682
+ ADDED_TO_PROJECT_V2_EVENT
40683
+
40534
40684
  """
40535
40685
  Represents an 'assigned' event on any assignable object.
40536
40686
  """
@@ -40616,6 +40766,11 @@ enum PullRequestTimelineItemsItemType {
40616
40766
  """
40617
40767
  CONNECTED_EVENT
40618
40768
 
40769
+ """
40770
+ Represents a 'converted_from_draft' event on a given issue or pull request.
40771
+ """
40772
+ CONVERTED_FROM_DRAFT_EVENT
40773
+
40619
40774
  """
40620
40775
  Represents a 'converted_note_to_issue' event on a given issue or pull request.
40621
40776
  """
@@ -40741,6 +40896,11 @@ enum PullRequestTimelineItemsItemType {
40741
40896
  """
40742
40897
  PINNED_EVENT
40743
40898
 
40899
+ """
40900
+ Represents a 'project_v2_item_status_changed' event on a given issue or pull request.
40901
+ """
40902
+ PROJECT_V2_ITEM_STATUS_CHANGED_EVENT
40903
+
40744
40904
  """
40745
40905
  Represents a Git commit part of a pull request.
40746
40906
  """
@@ -40786,6 +40946,11 @@ enum PullRequestTimelineItemsItemType {
40786
40946
  """
40787
40947
  REMOVED_FROM_PROJECT_EVENT
40788
40948
 
40949
+ """
40950
+ Represents a 'removed_from_project_v2' event on a given issue or pull request.
40951
+ """
40952
+ REMOVED_FROM_PROJECT_V2_EVENT
40953
+
40789
40954
  """
40790
40955
  Represents a 'renamed' event on a given issue or pull request
40791
40956
  """
@@ -43428,6 +43593,36 @@ type RemovedFromProjectEvent implements Node {
43428
43593
  projectColumnName: String! @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.")
43429
43594
  }
43430
43595
 
43596
+ """
43597
+ Represents a 'removed_from_project_v2' event on a given issue or pull request.
43598
+ """
43599
+ type RemovedFromProjectV2Event implements Node & ProjectV2Event {
43600
+ """
43601
+ Identifies the actor who performed the event.
43602
+ """
43603
+ actor: Actor
43604
+
43605
+ """
43606
+ Identifies the date and time when the object was created.
43607
+ """
43608
+ createdAt: DateTime!
43609
+
43610
+ """
43611
+ The Node ID of the RemovedFromProjectV2Event object
43612
+ """
43613
+ id: ID!
43614
+
43615
+ """
43616
+ Project referenced by event.
43617
+ """
43618
+ project: ProjectV2
43619
+
43620
+ """
43621
+ Did this event result from workflow automation?
43622
+ """
43623
+ wasAutomated: Boolean!
43624
+ }
43625
+
43431
43626
  """
43432
43627
  Represents a 'renamed' event on a given issue or pull request
43433
43628
  """
@@ -51537,7 +51732,7 @@ enum SearchType {
51537
51732
  """
51538
51733
  Returns results matching issues in repositories.
51539
51734
  """
51540
- ISSUE_ADVANCED @deprecated(reason: "Search for issues and pull requests will be overridden by advanced search on November 4, 2025. You can read more about this change on https://github.blog/changelog/2025-03-06-github-issues-projects-api-support-for-issues-advanced-search-and-more/. Removal on 2025-11-04 UTC.")
51735
+ ISSUE_ADVANCED
51541
51736
 
51542
51737
  """
51543
51738
  Returns results matching repositories.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.20.13",
3
+ "version": "1.20.15",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {
@@ -50,20 +50,20 @@
50
50
  "node": ">=18"
51
51
  },
52
52
  "dependencies": {
53
- "graphql": "^16.11.0",
54
- "graphql-tag": "^2.12.6"
53
+ "graphql": "16.11.0",
54
+ "graphql-tag": "2.12.6"
55
55
  },
56
56
  "devDependencies": {
57
- "@graphql-codegen/add": "^6.0.0",
58
- "@graphql-codegen/cli": "^6.0.0",
59
- "@graphql-codegen/typescript": "^5.0.0",
60
- "@luxass/eslint-config": "^5.3.2",
61
- "@types/node": "^20.14.10",
57
+ "@graphql-codegen/add": "6.0.0",
58
+ "@graphql-codegen/cli": "6.0.0",
59
+ "@graphql-codegen/typescript": "5.0.0",
60
+ "@luxass/eslint-config": "5.3.2",
61
+ "@types/node": "20.19.17",
62
62
  "eslint": "^9.35.0",
63
63
  "eslint-plugin-format": "^1.0.1",
64
- "publint": "^0.3.12",
65
- "tsdown": "^0.15.1",
66
- "typescript": "^5.9.2"
64
+ "publint": "0.3.13",
65
+ "tsdown": "0.15.4",
66
+ "typescript": "5.9.2"
67
67
  },
68
68
  "scripts": {
69
69
  "build": "tsdown",