github-schema 1.15.0 → 1.16.0

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.
@@ -1,7 +1,5 @@
1
1
 
2
2
 
3
- directive @requiredCapabilities(requiredCapabilities: [String!]) on ARGUMENT_DEFINITION | ENUM | ENUM_VALUE | FIELD_DEFINITION | INPUT_FIELD_DEFINITION | INPUT_OBJECT | INTERFACE | OBJECT | SCALAR | UNION
4
-
5
3
  """
6
4
  Autogenerated input type of AbortQueuedMigrations
7
5
  """
@@ -7676,6 +7674,11 @@ input CreateIssueInput {
7676
7674
  """
7677
7675
  issueTemplate: String
7678
7676
 
7677
+ """
7678
+ The Node ID of the issue type for this issue
7679
+ """
7680
+ issueTypeId: ID
7681
+
7679
7682
  """
7680
7683
  An array of Node IDs of labels for this issue.
7681
7684
  """
@@ -7722,6 +7725,65 @@ type CreateIssuePayload {
7722
7725
  issue: Issue
7723
7726
  }
7724
7727
 
7728
+ """
7729
+ Autogenerated input type of CreateIssueType
7730
+ """
7731
+ input CreateIssueTypeInput {
7732
+ """
7733
+ A unique identifier for the client performing the mutation.
7734
+ """
7735
+ clientMutationId: String
7736
+
7737
+ """
7738
+ Color for the issue type
7739
+ """
7740
+ color: IssueTypeColor
7741
+
7742
+ """
7743
+ Description of the new issue type
7744
+ """
7745
+ description: String
7746
+
7747
+ """
7748
+ Whether or not the issue type is enabled on the org level
7749
+ """
7750
+ isEnabled: Boolean!
7751
+
7752
+ """
7753
+ Whether or not the issue type is restricted to issues in private repositories
7754
+
7755
+ **Upcoming Change on 2025-04-01 UTC**
7756
+ **Description:** `isPrivate` will be removed.
7757
+ **Reason:** Private issue types are being deprecated and can no longer be created.
7758
+ """
7759
+ isPrivate: Boolean
7760
+
7761
+ """
7762
+ Name of the new issue type
7763
+ """
7764
+ name: String!
7765
+
7766
+ """
7767
+ The ID for the organization on which the issue type is created
7768
+ """
7769
+ ownerId: ID!
7770
+ }
7771
+
7772
+ """
7773
+ Autogenerated return type of CreateIssueType.
7774
+ """
7775
+ type CreateIssueTypePayload {
7776
+ """
7777
+ A unique identifier for the client performing the mutation.
7778
+ """
7779
+ clientMutationId: String
7780
+
7781
+ """
7782
+ The newly created issue type
7783
+ """
7784
+ issueType: IssueType
7785
+ }
7786
+
7725
7787
  """
7726
7788
  Autogenerated input type of CreateLabel
7727
7789
  """
@@ -9559,6 +9621,36 @@ type DeleteIssuePayload {
9559
9621
  repository: Repository
9560
9622
  }
9561
9623
 
9624
+ """
9625
+ Autogenerated input type of DeleteIssueType
9626
+ """
9627
+ input DeleteIssueTypeInput {
9628
+ """
9629
+ A unique identifier for the client performing the mutation.
9630
+ """
9631
+ clientMutationId: String
9632
+
9633
+ """
9634
+ The ID of the issue type to delete
9635
+ """
9636
+ issueTypeId: ID!
9637
+ }
9638
+
9639
+ """
9640
+ Autogenerated return type of DeleteIssueType.
9641
+ """
9642
+ type DeleteIssueTypePayload {
9643
+ """
9644
+ A unique identifier for the client performing the mutation.
9645
+ """
9646
+ clientMutationId: String
9647
+
9648
+ """
9649
+ The ID of the deleted issue type
9650
+ """
9651
+ deletedIssueTypeId: ID
9652
+ }
9653
+
9562
9654
  """
9563
9655
  Autogenerated input type of DeleteLabel
9564
9656
  """
@@ -10228,6 +10320,11 @@ type DependencyGraphDependency {
10228
10320
  """
10229
10321
  packageName: String!
10230
10322
 
10323
+ """
10324
+ Public preview: The dependency package URL
10325
+ """
10326
+ packageUrl: URI
10327
+
10231
10328
  """
10232
10329
  Public preview: The relationship of the dependency. Can be direct, transitive, or unknown
10233
10330
  """
@@ -16599,7 +16696,8 @@ input FileExtensionRestrictionParametersInput {
16599
16696
  }
16600
16697
 
16601
16698
  """
16602
- Prevent commits that include changes in specified file paths from being pushed to the commit graph.
16699
+ Prevent commits that include changes in specified file and folder paths from
16700
+ being pushed to the commit graph. This includes absolute paths that contain file names.
16603
16701
  """
16604
16702
  type FilePathRestrictionParameters {
16605
16703
  """
@@ -16609,7 +16707,8 @@ type FilePathRestrictionParameters {
16609
16707
  }
16610
16708
 
16611
16709
  """
16612
- Prevent commits that include changes in specified file paths from being pushed to the commit graph.
16710
+ Prevent commits that include changes in specified file and folder paths from
16711
+ being pushed to the commit graph. This includes absolute paths that contain file names.
16613
16712
  """
16614
16713
  input FilePathRestrictionParametersInput {
16615
16714
  """
@@ -18436,6 +18535,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
18436
18535
  """
18437
18536
  isReadByViewer: Boolean
18438
18537
 
18538
+ """
18539
+ The issue type for this Issue
18540
+ """
18541
+ issueType: IssueType
18542
+
18439
18543
  """
18440
18544
  A list of labels associated with the object.
18441
18545
  """
@@ -19584,6 +19688,11 @@ type IssueTemplate {
19584
19688
  The suggested issue title.
19585
19689
  """
19586
19690
  title: String
19691
+
19692
+ """
19693
+ The suggested issue type
19694
+ """
19695
+ type: IssueType
19587
19696
  }
19588
19697
 
19589
19698
  """
@@ -19634,7 +19743,7 @@ type IssueTimelineItemEdge {
19634
19743
  """
19635
19744
  An item in an issue timeline
19636
19745
  """
19637
- union IssueTimelineItems = AddedToProjectEvent | AssignedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent
19746
+ 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
19638
19747
 
19639
19748
  """
19640
19749
  The connection type for IssueTimelineItems.
@@ -19750,6 +19859,21 @@ enum IssueTimelineItemsItemType {
19750
19859
  """
19751
19860
  ISSUE_COMMENT
19752
19861
 
19862
+ """
19863
+ Represents a 'issue_type_added' event on a given issue.
19864
+ """
19865
+ ISSUE_TYPE_ADDED_EVENT
19866
+
19867
+ """
19868
+ Represents a 'issue_type_changed' event on a given issue.
19869
+ """
19870
+ ISSUE_TYPE_CHANGED_EVENT
19871
+
19872
+ """
19873
+ Represents a 'issue_type_removed' event on a given issue.
19874
+ """
19875
+ ISSUE_TYPE_REMOVED_EVENT
19876
+
19753
19877
  """
19754
19878
  Represents a 'labeled' event on a given issue or pull request.
19755
19879
  """
@@ -19871,6 +19995,286 @@ enum IssueTimelineItemsItemType {
19871
19995
  USER_BLOCKED_EVENT
19872
19996
  }
19873
19997
 
19998
+ """
19999
+ Represents the type of Issue.
20000
+ """
20001
+ type IssueType implements Node {
20002
+ """
20003
+ The issue type's color.
20004
+ """
20005
+ color: IssueTypeColor!
20006
+
20007
+ """
20008
+ The issue type's description.
20009
+ """
20010
+ description: String
20011
+
20012
+ """
20013
+ The Node ID of the IssueType object
20014
+ """
20015
+ id: ID!
20016
+
20017
+ """
20018
+ The issue type's enabled state.
20019
+ """
20020
+ isEnabled: Boolean!
20021
+
20022
+ """
20023
+ Whether the issue type is publicly visible.
20024
+ """
20025
+ isPrivate: Boolean! @deprecated(reason: "Private issue types are being deprecated and can no longer be created. Removal on 2025-04-01 UTC.")
20026
+
20027
+ """
20028
+ The issues with this issue type in the given repository.
20029
+ """
20030
+ issues(
20031
+ """
20032
+ Returns the elements in the list that come after the specified cursor.
20033
+ """
20034
+ after: String
20035
+
20036
+ """
20037
+ Returns the elements in the list that come before the specified cursor.
20038
+ """
20039
+ before: String
20040
+
20041
+ """
20042
+ Filtering options for issues returned from the connection.
20043
+ """
20044
+ filterBy: IssueFilters
20045
+
20046
+ """
20047
+ Returns the first _n_ elements from the list.
20048
+ """
20049
+ first: Int
20050
+
20051
+ """
20052
+ A list of label names to filter the pull requests by.
20053
+ """
20054
+ labels: [String!]
20055
+
20056
+ """
20057
+ Returns the last _n_ elements from the list.
20058
+ """
20059
+ last: Int
20060
+
20061
+ """
20062
+ Ordering options for issues returned from the connection.
20063
+ """
20064
+ orderBy: IssueOrder
20065
+
20066
+ """
20067
+ Target repository to load the issues from.
20068
+ """
20069
+ repositoryId: ID!
20070
+
20071
+ """
20072
+ A list of states to filter the issues by.
20073
+ """
20074
+ states: [IssueState!]
20075
+ ): IssueConnection!
20076
+
20077
+ """
20078
+ The issue type's name.
20079
+ """
20080
+ name: String!
20081
+ }
20082
+
20083
+ """
20084
+ Represents a 'issue_type_added' event on a given issue.
20085
+ """
20086
+ type IssueTypeAddedEvent implements Node {
20087
+ """
20088
+ Identifies the actor who performed the event.
20089
+ """
20090
+ actor: Actor
20091
+
20092
+ """
20093
+ Identifies the date and time when the object was created.
20094
+ """
20095
+ createdAt: DateTime!
20096
+
20097
+ """
20098
+ The Node ID of the IssueTypeAddedEvent object
20099
+ """
20100
+ id: ID!
20101
+
20102
+ """
20103
+ The issue type added.
20104
+ """
20105
+ issueType: IssueType
20106
+ }
20107
+
20108
+ """
20109
+ Represents a 'issue_type_changed' event on a given issue.
20110
+ """
20111
+ type IssueTypeChangedEvent implements Node {
20112
+ """
20113
+ Identifies the actor who performed the event.
20114
+ """
20115
+ actor: Actor
20116
+
20117
+ """
20118
+ Identifies the date and time when the object was created.
20119
+ """
20120
+ createdAt: DateTime!
20121
+
20122
+ """
20123
+ The Node ID of the IssueTypeChangedEvent object
20124
+ """
20125
+ id: ID!
20126
+
20127
+ """
20128
+ The issue type added.
20129
+ """
20130
+ issueType: IssueType
20131
+
20132
+ """
20133
+ The issue type removed.
20134
+ """
20135
+ prevIssueType: IssueType
20136
+ }
20137
+
20138
+ """
20139
+ The possible color for an issue type
20140
+ """
20141
+ enum IssueTypeColor {
20142
+ """
20143
+ blue
20144
+ """
20145
+ BLUE
20146
+
20147
+ """
20148
+ gray
20149
+ """
20150
+ GRAY
20151
+
20152
+ """
20153
+ green
20154
+ """
20155
+ GREEN
20156
+
20157
+ """
20158
+ orange
20159
+ """
20160
+ ORANGE
20161
+
20162
+ """
20163
+ pink
20164
+ """
20165
+ PINK
20166
+
20167
+ """
20168
+ purple
20169
+ """
20170
+ PURPLE
20171
+
20172
+ """
20173
+ red
20174
+ """
20175
+ RED
20176
+
20177
+ """
20178
+ yellow
20179
+ """
20180
+ YELLOW
20181
+ }
20182
+
20183
+ """
20184
+ The connection type for IssueType.
20185
+ """
20186
+ type IssueTypeConnection {
20187
+ """
20188
+ A list of edges.
20189
+ """
20190
+ edges: [IssueTypeEdge]
20191
+
20192
+ """
20193
+ A list of nodes.
20194
+ """
20195
+ nodes: [IssueType]
20196
+
20197
+ """
20198
+ Information to aid in pagination.
20199
+ """
20200
+ pageInfo: PageInfo!
20201
+
20202
+ """
20203
+ Identifies the total count of items in the connection.
20204
+ """
20205
+ totalCount: Int!
20206
+ }
20207
+
20208
+ """
20209
+ An edge in a connection.
20210
+ """
20211
+ type IssueTypeEdge {
20212
+ """
20213
+ A cursor for use in pagination.
20214
+ """
20215
+ cursor: String!
20216
+
20217
+ """
20218
+ The item at the end of the edge.
20219
+ """
20220
+ node: IssueType
20221
+ }
20222
+
20223
+ """
20224
+ Ordering options for issue types connections
20225
+ """
20226
+ input IssueTypeOrder {
20227
+ """
20228
+ The ordering direction.
20229
+ """
20230
+ direction: OrderDirection!
20231
+
20232
+ """
20233
+ The field to order issue types by.
20234
+ """
20235
+ field: IssueTypeOrderField!
20236
+ }
20237
+
20238
+ """
20239
+ Properties by which issue type connections can be ordered.
20240
+ """
20241
+ enum IssueTypeOrderField {
20242
+ """
20243
+ Order issue types by creation time
20244
+ """
20245
+ CREATED_AT
20246
+
20247
+ """
20248
+ Order issue types by name
20249
+ """
20250
+ NAME
20251
+ }
20252
+
20253
+ """
20254
+ Represents a 'issue_type_removed' event on a given issue.
20255
+ """
20256
+ type IssueTypeRemovedEvent implements Node {
20257
+ """
20258
+ Identifies the actor who performed the event.
20259
+ """
20260
+ actor: Actor
20261
+
20262
+ """
20263
+ Identifies the date and time when the object was created.
20264
+ """
20265
+ createdAt: DateTime!
20266
+
20267
+ """
20268
+ The Node ID of the IssueTypeRemovedEvent object
20269
+ """
20270
+ id: ID!
20271
+
20272
+ """
20273
+ The issue type removed.
20274
+ """
20275
+ issueType: IssueType
20276
+ }
20277
+
19874
20278
  """
19875
20279
  Represents a user signing up for a GitHub account.
19876
20280
  """
@@ -21334,27 +21738,27 @@ type MarketplaceListingEdge {
21334
21738
  }
21335
21739
 
21336
21740
  """
21337
- Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
21741
+ Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
21338
21742
  """
21339
21743
  type MaxFilePathLengthParameters {
21340
21744
  """
21341
- The maximum amount of characters allowed in file paths
21745
+ The maximum amount of characters allowed in file paths.
21342
21746
  """
21343
21747
  maxFilePathLength: Int!
21344
21748
  }
21345
21749
 
21346
21750
  """
21347
- Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
21751
+ Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
21348
21752
  """
21349
21753
  input MaxFilePathLengthParametersInput {
21350
21754
  """
21351
- The maximum amount of characters allowed in file paths
21755
+ The maximum amount of characters allowed in file paths.
21352
21756
  """
21353
21757
  maxFilePathLength: Int!
21354
21758
  }
21355
21759
 
21356
21760
  """
21357
- Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
21761
+ Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
21358
21762
  """
21359
21763
  type MaxFileSizeParameters {
21360
21764
  """
@@ -21364,7 +21768,7 @@ type MaxFileSizeParameters {
21364
21768
  }
21365
21769
 
21366
21770
  """
21367
- Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
21771
+ Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
21368
21772
  """
21369
21773
  input MaxFileSizeParametersInput {
21370
21774
  """
@@ -22606,6 +23010,11 @@ type Milestone implements Closable & Node & UniformResourceLocatable {
22606
23010
  """
22607
23011
  description: String
22608
23012
 
23013
+ """
23014
+ The HTML rendered description of the milestone using GitHub Flavored Markdown.
23015
+ """
23016
+ descriptionHTML: String
23017
+
22609
23018
  """
22610
23019
  Identifies the due date of the milestone.
22611
23020
  """
@@ -23691,6 +24100,16 @@ type Mutation {
23691
24100
  input: CreateIssueInput!
23692
24101
  ): CreateIssuePayload
23693
24102
 
24103
+ """
24104
+ Creates a new issue type
24105
+ """
24106
+ createIssueType(
24107
+ """
24108
+ Parameters for CreateIssueType
24109
+ """
24110
+ input: CreateIssueTypeInput!
24111
+ ): CreateIssueTypePayload
24112
+
23694
24113
  """
23695
24114
  Creates a new label.
23696
24115
  """
@@ -23962,6 +24381,16 @@ type Mutation {
23962
24381
  input: DeleteIssueCommentInput!
23963
24382
  ): DeleteIssueCommentPayload
23964
24383
 
24384
+ """
24385
+ Delete an issue type
24386
+ """
24387
+ deleteIssueType(
24388
+ """
24389
+ Parameters for DeleteIssueType
24390
+ """
24391
+ input: DeleteIssueTypeInput!
24392
+ ): DeleteIssueTypePayload
24393
+
23965
24394
  """
23966
24395
  Deletes a label.
23967
24396
  """
@@ -25253,6 +25682,26 @@ type Mutation {
25253
25682
  input: UpdateIssueCommentInput!
25254
25683
  ): UpdateIssueCommentPayload
25255
25684
 
25685
+ """
25686
+ Updates the issue type on an issue
25687
+ """
25688
+ updateIssueIssueType(
25689
+ """
25690
+ Parameters for UpdateIssueIssueType
25691
+ """
25692
+ input: UpdateIssueIssueTypeInput!
25693
+ ): UpdateIssueIssueTypePayload
25694
+
25695
+ """
25696
+ Update an issue type
25697
+ """
25698
+ updateIssueType(
25699
+ """
25700
+ Parameters for UpdateIssueType
25701
+ """
25702
+ input: UpdateIssueTypeInput!
25703
+ ): UpdateIssueTypePayload
25704
+
25256
25705
  """
25257
25706
  Updates an existing label.
25258
25707
  """
@@ -29530,6 +29979,36 @@ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & No
29530
29979
  """
29531
29980
  isVerified: Boolean!
29532
29981
 
29982
+ """
29983
+ A list of the organization's issue types
29984
+ """
29985
+ issueTypes(
29986
+ """
29987
+ Returns the elements in the list that come after the specified cursor.
29988
+ """
29989
+ after: String
29990
+
29991
+ """
29992
+ Returns the elements in the list that come before the specified cursor.
29993
+ """
29994
+ before: String
29995
+
29996
+ """
29997
+ Returns the first _n_ elements from the list.
29998
+ """
29999
+ first: Int
30000
+
30001
+ """
30002
+ Returns the last _n_ elements from the list.
30003
+ """
30004
+ last: Int
30005
+
30006
+ """
30007
+ Ordering options for issue types returned from the connection.
30008
+ """
30009
+ orderBy: IssueTypeOrder = {field: CREATED_AT, direction: ASC}
30010
+ ): IssueTypeConnection
30011
+
29533
30012
  """
29534
30013
  Showcases a selection of repositories and gists that the profile owner has
29535
30014
  either curated or that have been selected automatically based on popularity.
@@ -34463,6 +34942,11 @@ enum ProjectV2FieldType {
34463
34942
  """
34464
34943
  DATE
34465
34944
 
34945
+ """
34946
+ Issue type
34947
+ """
34948
+ ISSUE_TYPE
34949
+
34466
34950
  """
34467
34951
  Iteration
34468
34952
  """
@@ -37766,6 +38250,26 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
37766
38250
  viewerSubscription: SubscriptionState
37767
38251
  }
37768
38252
 
38253
+ """
38254
+ Array of allowed merge methods. Allowed values include `merge`, `squash`, and `rebase`. At least one option must be enabled.
38255
+ """
38256
+ enum PullRequestAllowedMergeMethods {
38257
+ """
38258
+ Add all commits from the head branch to the base branch with a merge commit.
38259
+ """
38260
+ MERGE
38261
+
38262
+ """
38263
+ Add all commits from the head branch onto the base branch individually.
38264
+ """
38265
+ REBASE
38266
+
38267
+ """
38268
+ Combine all commits from the head branch into a single commit in the base branch.
38269
+ """
38270
+ SQUASH
38271
+ }
38272
+
37769
38273
  """
37770
38274
  The possible methods for updating a pull request's head branch with the base branch.
37771
38275
  """
@@ -38119,7 +38623,13 @@ type PullRequestParameters {
38119
38623
  Array of allowed merge methods. Allowed values include `merge`, `squash`, and
38120
38624
  `rebase`. At least one option must be enabled.
38121
38625
  """
38122
- allowedMergeMethods: [String!]
38626
+ allowedMergeMethods: [PullRequestAllowedMergeMethods!]
38627
+
38628
+ """
38629
+ This field is in beta and subject to change. Automatically request review from
38630
+ Copilot for new pull requests, if the author has access to Copilot code review.
38631
+ """
38632
+ automaticCopilotCodeReviewEnabled: Boolean!
38123
38633
 
38124
38634
  """
38125
38635
  New, reviewable commits pushed will dismiss previous pull request review approvals.
@@ -38155,7 +38665,13 @@ input PullRequestParametersInput {
38155
38665
  Array of allowed merge methods. Allowed values include `merge`, `squash`, and
38156
38666
  `rebase`. At least one option must be enabled.
38157
38667
  """
38158
- allowedMergeMethods: [String!]
38668
+ allowedMergeMethods: [PullRequestAllowedMergeMethods!]
38669
+
38670
+ """
38671
+ This argument is in beta and subject to change. Automatically request review
38672
+ from Copilot for new pull requests, if the author has access to Copilot code review.
38673
+ """
38674
+ automaticCopilotCodeReviewEnabled: Boolean
38159
38675
 
38160
38676
  """
38161
38677
  New, reviewable commits pushed will dismiss previous pull request review approvals.
@@ -39360,7 +39876,7 @@ type PullRequestTimelineItemEdge {
39360
39876
  """
39361
39877
  An item in a pull request timeline
39362
39878
  """
39363
- 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 | 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
39879
+ 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
39364
39880
 
39365
39881
  """
39366
39882
  The connection type for PullRequestTimelineItems.
@@ -39556,6 +40072,21 @@ enum PullRequestTimelineItemsItemType {
39556
40072
  """
39557
40073
  ISSUE_COMMENT
39558
40074
 
40075
+ """
40076
+ Represents a 'issue_type_added' event on a given issue.
40077
+ """
40078
+ ISSUE_TYPE_ADDED_EVENT
40079
+
40080
+ """
40081
+ Represents a 'issue_type_changed' event on a given issue.
40082
+ """
40083
+ ISSUE_TYPE_CHANGED_EVENT
40084
+
40085
+ """
40086
+ Represents a 'issue_type_removed' event on a given issue.
40087
+ """
40088
+ ISSUE_TYPE_REMOVED_EVENT
40089
+
39559
40090
  """
39560
40091
  Represents a 'labeled' event on a given issue or pull request.
39561
40092
  """
@@ -45525,6 +46056,46 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
45525
46056
  """
45526
46057
  issueTemplates: [IssueTemplate!]
45527
46058
 
46059
+ """
46060
+ Returns a single issue type by name
46061
+ """
46062
+ issueType(
46063
+ """
46064
+ Issue type name.
46065
+ """
46066
+ name: String!
46067
+ ): IssueType
46068
+
46069
+ """
46070
+ A list of the repository's issue types
46071
+ """
46072
+ issueTypes(
46073
+ """
46074
+ Returns the elements in the list that come after the specified cursor.
46075
+ """
46076
+ after: String
46077
+
46078
+ """
46079
+ Returns the elements in the list that come before the specified cursor.
46080
+ """
46081
+ before: String
46082
+
46083
+ """
46084
+ Returns the first _n_ elements from the list.
46085
+ """
46086
+ first: Int
46087
+
46088
+ """
46089
+ Returns the last _n_ elements from the list.
46090
+ """
46091
+ last: Int
46092
+
46093
+ """
46094
+ Ordering options for issue types returned from the connection.
46095
+ """
46096
+ orderBy: IssueTypeOrder = {field: CREATED_AT, direction: ASC}
46097
+ ): IssueTypeConnection
46098
+
45528
46099
  """
45529
46100
  A list of issues that have been opened in the repository.
45530
46101
  """
@@ -48035,7 +48606,8 @@ enum RepositoryRuleType {
48035
48606
  FILE_EXTENSION_RESTRICTION
48036
48607
 
48037
48608
  """
48038
- Prevent commits that include changes in specified file paths from being pushed to the commit graph.
48609
+ Prevent commits that include changes in specified file and folder paths from
48610
+ being pushed to the commit graph. This includes absolute paths that contain file names.
48039
48611
  """
48040
48612
  FILE_PATH_RESTRICTION
48041
48613
 
@@ -48045,12 +48617,12 @@ enum RepositoryRuleType {
48045
48617
  LOCK_BRANCH
48046
48618
 
48047
48619
  """
48048
- Prevent commits that include file paths that exceed a specified character limit from being pushed to the commit graph.
48620
+ Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
48049
48621
  """
48050
48622
  MAX_FILE_PATH_LENGTH
48051
48623
 
48052
48624
  """
48053
- Prevent commits that exceed a specified file size limit from being pushed to the commit graph.
48625
+ Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
48054
48626
  """
48055
48627
  MAX_FILE_SIZE
48056
48628
 
@@ -48779,6 +49351,11 @@ type RepositoryVulnerabilityAlert implements Node & RepositoryNode {
48779
49351
  """
48780
49352
  dependabotUpdate: DependabotUpdate
48781
49353
 
49354
+ """
49355
+ The relationship of an alert's dependency.
49356
+ """
49357
+ dependencyRelationship: RepositoryVulnerabilityAlertDependencyRelationship
49358
+
48782
49359
  """
48783
49360
  The scope of an alert's dependency
48784
49361
  """
@@ -48880,6 +49457,26 @@ type RepositoryVulnerabilityAlertConnection {
48880
49457
  totalCount: Int!
48881
49458
  }
48882
49459
 
49460
+ """
49461
+ The possible relationships of an alert's dependency.
49462
+ """
49463
+ enum RepositoryVulnerabilityAlertDependencyRelationship {
49464
+ """
49465
+ A direct dependency of your project
49466
+ """
49467
+ DIRECT
49468
+
49469
+ """
49470
+ A transitive dependency of your project
49471
+ """
49472
+ TRANSITIVE
49473
+
49474
+ """
49475
+ The relationship is unknown
49476
+ """
49477
+ UNKNOWN
49478
+ }
49479
+
48883
49480
  """
48884
49481
  The possible scopes of an alert's dependency.
48885
49482
  """
@@ -50168,6 +50765,11 @@ enum SearchType {
50168
50765
  """
50169
50766
  ISSUE
50170
50767
 
50768
+ """
50769
+ Returns results matching issues in repositories.
50770
+ """
50771
+ ISSUE_ADVANCED @deprecated(reason: "Search for issues and pull requests will be overridden by advanced search on September 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-09-04 UTC.")
50772
+
50171
50773
  """
50172
50774
  Returns results matching repositories.
50173
50775
  """
@@ -59788,6 +60390,11 @@ input UpdateIssueInput {
59788
60390
  """
59789
60391
  id: ID!
59790
60392
 
60393
+ """
60394
+ The ID of the Issue Type for this issue.
60395
+ """
60396
+ issueTypeId: ID
60397
+
59791
60398
  """
59792
60399
  An array of Node IDs of labels for this issue.
59793
60400
  """
@@ -59814,6 +60421,41 @@ input UpdateIssueInput {
59814
60421
  title: String
59815
60422
  }
59816
60423
 
60424
+ """
60425
+ Autogenerated input type of UpdateIssueIssueType
60426
+ """
60427
+ input UpdateIssueIssueTypeInput {
60428
+ """
60429
+ A unique identifier for the client performing the mutation.
60430
+ """
60431
+ clientMutationId: String
60432
+
60433
+ """
60434
+ The ID of the issue to update
60435
+ """
60436
+ issueId: ID!
60437
+
60438
+ """
60439
+ The ID of the issue type to update on the issue
60440
+ """
60441
+ issueTypeId: ID
60442
+ }
60443
+
60444
+ """
60445
+ Autogenerated return type of UpdateIssueIssueType.
60446
+ """
60447
+ type UpdateIssueIssueTypePayload {
60448
+ """
60449
+ A unique identifier for the client performing the mutation.
60450
+ """
60451
+ clientMutationId: String
60452
+
60453
+ """
60454
+ The updated issue
60455
+ """
60456
+ issue: Issue
60457
+ }
60458
+
59817
60459
  """
59818
60460
  Autogenerated return type of UpdateIssue.
59819
60461
  """
@@ -59834,6 +60476,65 @@ type UpdateIssuePayload {
59834
60476
  issue: Issue
59835
60477
  }
59836
60478
 
60479
+ """
60480
+ Autogenerated input type of UpdateIssueType
60481
+ """
60482
+ input UpdateIssueTypeInput {
60483
+ """
60484
+ A unique identifier for the client performing the mutation.
60485
+ """
60486
+ clientMutationId: String
60487
+
60488
+ """
60489
+ Color for the issue type
60490
+ """
60491
+ color: IssueTypeColor
60492
+
60493
+ """
60494
+ The description of the issue type
60495
+ """
60496
+ description: String
60497
+
60498
+ """
60499
+ Whether or not the issue type is enabled for the organization
60500
+ """
60501
+ isEnabled: Boolean
60502
+
60503
+ """
60504
+ Whether or not the issue type is restricted to issues in private repositories
60505
+
60506
+ **Upcoming Change on 2025-04-01 UTC**
60507
+ **Description:** `isPrivate` will be removed.
60508
+ **Reason:** Private issue types are being deprecated and can no longer be created.
60509
+ """
60510
+ isPrivate: Boolean
60511
+
60512
+ """
60513
+ The ID of the issue type to update
60514
+ """
60515
+ issueTypeId: ID!
60516
+
60517
+ """
60518
+ The name of the issue type
60519
+ """
60520
+ name: String
60521
+ }
60522
+
60523
+ """
60524
+ Autogenerated return type of UpdateIssueType.
60525
+ """
60526
+ type UpdateIssueTypePayload {
60527
+ """
60528
+ A unique identifier for the client performing the mutation.
60529
+ """
60530
+ clientMutationId: String
60531
+
60532
+ """
60533
+ The updated issue type
60534
+ """
60535
+ issueType: IssueType
60536
+ }
60537
+
59837
60538
  """
59838
60539
  Autogenerated input type of UpdateLabel
59839
60540
  """