github-schema 1.22.14 → 1.22.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.
@@ -3021,7 +3021,7 @@ input BulkSponsorship {
3021
3021
  """
3022
3022
  Types that can represent a repository ruleset bypass actor.
3023
3023
  """
3024
- union BypassActor = App | Team
3024
+ union BypassActor = App | Team | User
3025
3025
 
3026
3026
  """
3027
3027
  A user, team, or app who has the ability to bypass a force push requirement on a protected branch.
@@ -5720,8 +5720,9 @@ type CommitComment implements Comment & Deletable & Minimizable & Node & Reactab
5720
5720
 
5721
5721
  """
5722
5722
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
5723
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
5724
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
5723
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
5724
+ case and formatting of these values differs from the inputs to the
5725
+ `MinimizeComment` mutation.
5725
5726
  """
5726
5727
  minimizedReason: String
5727
5728
 
@@ -8065,6 +8066,101 @@ type CreateIpAllowListEntryPayload {
8065
8066
  ipAllowListEntry: IpAllowListEntry
8066
8067
  }
8067
8068
 
8069
+ """
8070
+ Autogenerated input type of CreateIssueField
8071
+ """
8072
+ input CreateIssueFieldInput {
8073
+ """
8074
+ A unique identifier for the client performing the mutation.
8075
+ """
8076
+ clientMutationId: String
8077
+
8078
+ """
8079
+ The data type of the issue field.
8080
+ """
8081
+ dataType: IssueFieldDataType!
8082
+
8083
+ """
8084
+ A description of the issue field.
8085
+ """
8086
+ description: String
8087
+
8088
+ """
8089
+ The name of the issue field.
8090
+ """
8091
+ name: String!
8092
+
8093
+ """
8094
+ The options for the issue field if applicable.
8095
+ """
8096
+ options: [IssueFieldSingleSelectOptionInput!]
8097
+
8098
+ """
8099
+ The ID of the organization where the issue field will be created.
8100
+ """
8101
+ ownerId: ID!
8102
+
8103
+ """
8104
+ The visibility of the issue field.
8105
+ """
8106
+ visibility: IssueFieldVisibility
8107
+ }
8108
+
8109
+ """
8110
+ Autogenerated return type of CreateIssueField.
8111
+ """
8112
+ type CreateIssueFieldPayload {
8113
+ """
8114
+ A unique identifier for the client performing the mutation.
8115
+ """
8116
+ clientMutationId: String
8117
+
8118
+ """
8119
+ The newly created issue field.
8120
+ """
8121
+ issueField: IssueFields
8122
+ }
8123
+
8124
+ """
8125
+ Autogenerated input type of CreateIssueFieldValue
8126
+ """
8127
+ input CreateIssueFieldValueInput {
8128
+ """
8129
+ A unique identifier for the client performing the mutation.
8130
+ """
8131
+ clientMutationId: String
8132
+
8133
+ """
8134
+ The field value to create.
8135
+ """
8136
+ issueField: IssueFieldCreateOrUpdateInput!
8137
+
8138
+ """
8139
+ The ID of the issue.
8140
+ """
8141
+ issueId: ID!
8142
+ }
8143
+
8144
+ """
8145
+ Autogenerated return type of CreateIssueFieldValue.
8146
+ """
8147
+ type CreateIssueFieldValuePayload {
8148
+ """
8149
+ A unique identifier for the client performing the mutation.
8150
+ """
8151
+ clientMutationId: String
8152
+
8153
+ """
8154
+ The issue object.
8155
+ """
8156
+ issue: Issue
8157
+
8158
+ """
8159
+ The newly created issue field value.
8160
+ """
8161
+ issueFieldValue: IssueFieldValue
8162
+ }
8163
+
8068
8164
  """
8069
8165
  Autogenerated input type of CreateIssue
8070
8166
  """
@@ -8089,6 +8185,11 @@ input CreateIssueInput {
8089
8185
  """
8090
8186
  clientMutationId: String
8091
8187
 
8188
+ """
8189
+ An array of issue fields to set on the issue during creation
8190
+ """
8191
+ issueFields: [IssueFieldCreateOrUpdateInput!]
8192
+
8092
8193
  """
8093
8194
  The name of an issue template in the repository, assigns labels and assignees from the template to the issue
8094
8195
  """
@@ -8480,6 +8581,41 @@ input CreateProjectV2Input {
8480
8581
  title: String!
8481
8582
  }
8482
8583
 
8584
+ """
8585
+ Autogenerated input type of CreateProjectV2IssueField
8586
+ """
8587
+ input CreateProjectV2IssueFieldInput {
8588
+ """
8589
+ A unique identifier for the client performing the mutation.
8590
+ """
8591
+ clientMutationId: String
8592
+
8593
+ """
8594
+ The ID of the IssueField to create the field for.
8595
+ """
8596
+ issueFieldId: ID!
8597
+
8598
+ """
8599
+ The ID of the Project to create the field in.
8600
+ """
8601
+ projectId: ID!
8602
+ }
8603
+
8604
+ """
8605
+ Autogenerated return type of CreateProjectV2IssueField.
8606
+ """
8607
+ type CreateProjectV2IssueFieldPayload {
8608
+ """
8609
+ A unique identifier for the client performing the mutation.
8610
+ """
8611
+ clientMutationId: String
8612
+
8613
+ """
8614
+ The new field.
8615
+ """
8616
+ projectV2Field: ProjectV2FieldConfiguration
8617
+ }
8618
+
8483
8619
  """
8484
8620
  Autogenerated return type of CreateProjectV2.
8485
8621
  """
@@ -10022,6 +10158,76 @@ type DeleteIssueCommentPayload {
10022
10158
  clientMutationId: String
10023
10159
  }
10024
10160
 
10161
+ """
10162
+ Autogenerated input type of DeleteIssueField
10163
+ """
10164
+ input DeleteIssueFieldInput {
10165
+ """
10166
+ A unique identifier for the client performing the mutation.
10167
+ """
10168
+ clientMutationId: String
10169
+
10170
+ """
10171
+ The ID of the field to delete.
10172
+ """
10173
+ fieldId: ID!
10174
+ }
10175
+
10176
+ """
10177
+ Autogenerated return type of DeleteIssueField.
10178
+ """
10179
+ type DeleteIssueFieldPayload {
10180
+ """
10181
+ A unique identifier for the client performing the mutation.
10182
+ """
10183
+ clientMutationId: String
10184
+
10185
+ """
10186
+ The deleted issue field.
10187
+ """
10188
+ issueField: IssueFields
10189
+ }
10190
+
10191
+ """
10192
+ Autogenerated input type of DeleteIssueFieldValue
10193
+ """
10194
+ input DeleteIssueFieldValueInput {
10195
+ """
10196
+ A unique identifier for the client performing the mutation.
10197
+ """
10198
+ clientMutationId: String
10199
+
10200
+ """
10201
+ The ID of the field to delete.
10202
+ """
10203
+ fieldId: ID!
10204
+
10205
+ """
10206
+ The ID of the issue.
10207
+ """
10208
+ issueId: ID!
10209
+ }
10210
+
10211
+ """
10212
+ Autogenerated return type of DeleteIssueFieldValue.
10213
+ """
10214
+ type DeleteIssueFieldValuePayload {
10215
+ """
10216
+ A unique identifier for the client performing the mutation.
10217
+ """
10218
+ clientMutationId: String
10219
+
10220
+ """
10221
+ The issue object.
10222
+ """
10223
+ issue: Issue
10224
+
10225
+ """
10226
+ Whether the field value was successfully deleted.
10227
+ """
10228
+ success: Boolean
10229
+ }
10230
+
10025
10231
  """
10026
10232
  Autogenerated input type of DeleteIssue
10027
10233
  """
@@ -12493,8 +12699,9 @@ type DiscussionComment implements Comment & Deletable & Minimizable & Node & Rea
12493
12699
 
12494
12700
  """
12495
12701
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
12496
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
12497
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
12702
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
12703
+ case and formatting of these values differs from the inputs to the
12704
+ `MinimizeComment` mutation.
12498
12705
  """
12499
12706
  minimizedReason: String
12500
12707
 
@@ -17600,8 +17807,9 @@ type GistComment implements Comment & Deletable & Minimizable & Node & Updatable
17600
17807
 
17601
17808
  """
17602
17809
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
17603
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
17604
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
17810
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
17811
+ case and formatting of these values differs from the inputs to the
17812
+ `MinimizeComment` mutation.
17605
17813
  """
17606
17814
  minimizedReason: String
17607
17815
 
@@ -19057,6 +19265,31 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
19057
19265
  """
19058
19266
  issueDependenciesSummary: IssueDependenciesSummary!
19059
19267
 
19268
+ """
19269
+ Fields that are set on this issue
19270
+ """
19271
+ issueFieldValues(
19272
+ """
19273
+ Returns the elements in the list that come after the specified cursor.
19274
+ """
19275
+ after: String
19276
+
19277
+ """
19278
+ Returns the elements in the list that come before the specified cursor.
19279
+ """
19280
+ before: String
19281
+
19282
+ """
19283
+ Returns the first _n_ elements from the list.
19284
+ """
19285
+ first: Int
19286
+
19287
+ """
19288
+ Returns the last _n_ elements from the list.
19289
+ """
19290
+ last: Int
19291
+ ): IssueFieldValueConnection
19292
+
19060
19293
  """
19061
19294
  The issue type for this Issue
19062
19295
  """
@@ -19167,6 +19400,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
19167
19400
  last: Int
19168
19401
  ): UserConnection!
19169
19402
 
19403
+ """
19404
+ The pinned comment for this issue.
19405
+ """
19406
+ pinnedIssueComment: PinnedIssueComment
19407
+
19170
19408
  """
19171
19409
  List of project cards associated with this issue.
19172
19410
  """
@@ -19675,7 +19913,7 @@ enum IssueClosedStateReason {
19675
19913
  """
19676
19914
  Represents a comment on an Issue.
19677
19915
  """
19678
- type IssueComment implements Comment & Deletable & Minimizable & Node & Reactable & RepositoryNode & Updatable & UpdatableComment {
19916
+ type IssueComment implements Comment & Deletable & Minimizable & Node & Pinnable & Reactable & RepositoryNode & Updatable & UpdatableComment {
19679
19917
  """
19680
19918
  The actor who authored the comment.
19681
19919
  """
@@ -19741,6 +19979,11 @@ type IssueComment implements Comment & Deletable & Minimizable & Node & Reactabl
19741
19979
  """
19742
19980
  isMinimized: Boolean!
19743
19981
 
19982
+ """
19983
+ Indicates whether or not this entity is currently pinned.
19984
+ """
19985
+ isPinned: Boolean
19986
+
19744
19987
  """
19745
19988
  Identifies the issue associated with the comment.
19746
19989
  """
@@ -19753,11 +19996,22 @@ type IssueComment implements Comment & Deletable & Minimizable & Node & Reactabl
19753
19996
 
19754
19997
  """
19755
19998
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
19756
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
19757
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
19999
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
20000
+ case and formatting of these values differs from the inputs to the
20001
+ `MinimizeComment` mutation.
19758
20002
  """
19759
20003
  minimizedReason: String
19760
20004
 
20005
+ """
20006
+ Identifies the date and time when this entity was pinned.
20007
+ """
20008
+ pinnedAt: DateTime
20009
+
20010
+ """
20011
+ The user who pinned this entity.
20012
+ """
20013
+ pinnedBy: User
20014
+
19761
20015
  """
19762
20016
  Identifies when the comment was published at.
19763
20017
  """
@@ -19864,6 +20118,11 @@ type IssueComment implements Comment & Deletable & Minimizable & Node & Reactabl
19864
20118
  """
19865
20119
  viewerCanMinimize: Boolean!
19866
20120
 
20121
+ """
20122
+ Check if the current viewer can pin this entity.
20123
+ """
20124
+ viewerCanPin: Boolean!
20125
+
19867
20126
  """
19868
20127
  Can user react to this subject
19869
20128
  """
@@ -19874,6 +20133,11 @@ type IssueComment implements Comment & Deletable & Minimizable & Node & Reactabl
19874
20133
  """
19875
20134
  viewerCanUnminimize: Boolean!
19876
20135
 
20136
+ """
20137
+ Check if the current viewer can unpin this entity.
20138
+ """
20139
+ viewerCanUnpin: Boolean!
20140
+
19877
20141
  """
19878
20142
  Check if the current viewer can update this object.
19879
20143
  """
@@ -19955,6 +20219,56 @@ enum IssueCommentOrderField {
19955
20219
  UPDATED_AT
19956
20220
  }
19957
20221
 
20222
+ """
20223
+ Represents a 'issue_comment_pinned' event on a given issue.
20224
+ """
20225
+ type IssueCommentPinnedEvent implements Node {
20226
+ """
20227
+ Identifies the actor who performed the event.
20228
+ """
20229
+ actor: Actor
20230
+
20231
+ """
20232
+ Identifies the date and time when the object was created.
20233
+ """
20234
+ createdAt: DateTime!
20235
+
20236
+ """
20237
+ The Node ID of the IssueCommentPinnedEvent object
20238
+ """
20239
+ id: ID!
20240
+
20241
+ """
20242
+ Identifies the issue comment associated with the 'issue_comment_pinned' event.
20243
+ """
20244
+ issueComment: IssueComment
20245
+ }
20246
+
20247
+ """
20248
+ Represents a 'issue_comment_unpinned' event on a given issue.
20249
+ """
20250
+ type IssueCommentUnpinnedEvent implements Node {
20251
+ """
20252
+ Identifies the actor who performed the event.
20253
+ """
20254
+ actor: Actor
20255
+
20256
+ """
20257
+ Identifies the date and time when the object was created.
20258
+ """
20259
+ createdAt: DateTime!
20260
+
20261
+ """
20262
+ The Node ID of the IssueCommentUnpinnedEvent object
20263
+ """
20264
+ id: ID!
20265
+
20266
+ """
20267
+ Identifies the issue comment associated with the 'issue_comment_unpinned' event.
20268
+ """
20269
+ issueComment: IssueComment
20270
+ }
20271
+
19958
20272
  """
19959
20273
  The connection type for Issue.
19960
20274
  """
@@ -20090,6 +20404,691 @@ type IssueEdge {
20090
20404
  node: Issue
20091
20405
  }
20092
20406
 
20407
+ """
20408
+ Represents a 'issue_field_added' event on a given issue.
20409
+ """
20410
+ type IssueFieldAddedEvent implements Node {
20411
+ """
20412
+ Identifies the actor who performed the event.
20413
+ """
20414
+ actor: Actor
20415
+
20416
+ """
20417
+ The color if it is a single-select field.
20418
+ """
20419
+ color: String
20420
+
20421
+ """
20422
+ Identifies the date and time when the object was created.
20423
+ """
20424
+ createdAt: DateTime!
20425
+
20426
+ """
20427
+ The Node ID of the IssueFieldAddedEvent object
20428
+ """
20429
+ id: ID!
20430
+
20431
+ """
20432
+ The issue field added.
20433
+ """
20434
+ issueField: IssueFields
20435
+
20436
+ """
20437
+ The value of the added field.
20438
+ """
20439
+ value: String
20440
+ }
20441
+
20442
+ """
20443
+ Represents a 'issue_field_changed' event on a given issue.
20444
+ """
20445
+ type IssueFieldChangedEvent implements Node {
20446
+ """
20447
+ Identifies the actor who performed the event.
20448
+ """
20449
+ actor: Actor
20450
+
20451
+ """
20452
+ Identifies the date and time when the object was created.
20453
+ """
20454
+ createdAt: DateTime!
20455
+
20456
+ """
20457
+ The Node ID of the IssueFieldChangedEvent object
20458
+ """
20459
+ id: ID!
20460
+
20461
+ """
20462
+ The issue field changed.
20463
+ """
20464
+ issueField: IssueFields
20465
+
20466
+ """
20467
+ The new color if it is a single-select field.
20468
+ """
20469
+ newColor: String
20470
+
20471
+ """
20472
+ The new value of the field.
20473
+ """
20474
+ newValue: String
20475
+
20476
+ """
20477
+ The previous color if it was a single-select field.
20478
+ """
20479
+ previousColor: String
20480
+
20481
+ """
20482
+ The previous value of the field.
20483
+ """
20484
+ previousValue: String
20485
+ }
20486
+
20487
+ """
20488
+ Common fields across different issue field types
20489
+ """
20490
+ interface IssueFieldCommon {
20491
+ """
20492
+ The issue field's creation timestamp.
20493
+ """
20494
+ createdAt: DateTime!
20495
+
20496
+ """
20497
+ The issue field's data type.
20498
+ """
20499
+ dataType: IssueFieldDataType!
20500
+
20501
+ """
20502
+ The issue field's description.
20503
+ """
20504
+ description: String
20505
+
20506
+ """
20507
+ The issue field's name.
20508
+ """
20509
+ name: String!
20510
+
20511
+ """
20512
+ The issue field's visibility.
20513
+ """
20514
+ visibility: IssueFieldVisibility!
20515
+ }
20516
+
20517
+ """
20518
+ Represents an issue field value that must be set on an issue during issue creation
20519
+ """
20520
+ input IssueFieldCreateOrUpdateInput {
20521
+ """
20522
+ The date value, for a date field
20523
+ """
20524
+ dateValue: String
20525
+
20526
+ """
20527
+ Set to true to delete the field value
20528
+ """
20529
+ delete: Boolean
20530
+
20531
+ """
20532
+ The ID of the issue field
20533
+ """
20534
+ fieldId: ID!
20535
+
20536
+ """
20537
+ The numeric value, for a number field
20538
+ """
20539
+ numberValue: Float
20540
+
20541
+ """
20542
+ The ID of the selected option, for a single select field
20543
+ """
20544
+ singleSelectOptionId: ID
20545
+
20546
+ """
20547
+ The text value, for a text field
20548
+ """
20549
+ textValue: String
20550
+ }
20551
+
20552
+ """
20553
+ The type of an issue field.
20554
+ """
20555
+ enum IssueFieldDataType {
20556
+ """
20557
+ Date
20558
+ """
20559
+ DATE
20560
+
20561
+ """
20562
+ Number
20563
+ """
20564
+ NUMBER
20565
+
20566
+ """
20567
+ Single Select
20568
+ """
20569
+ SINGLE_SELECT
20570
+
20571
+ """
20572
+ Text
20573
+ """
20574
+ TEXT
20575
+ }
20576
+
20577
+ """
20578
+ Represents a date issue field.
20579
+ """
20580
+ type IssueFieldDate implements IssueFieldCommon & Node {
20581
+ """
20582
+ The issue field's creation timestamp.
20583
+ """
20584
+ createdAt: DateTime!
20585
+
20586
+ """
20587
+ The issue field's data type.
20588
+ """
20589
+ dataType: IssueFieldDataType!
20590
+
20591
+ """
20592
+ The issue field's description.
20593
+ """
20594
+ description: String
20595
+
20596
+ """
20597
+ The Node ID of the IssueFieldDate object
20598
+ """
20599
+ id: ID!
20600
+
20601
+ """
20602
+ The issue field's name.
20603
+ """
20604
+ name: String!
20605
+
20606
+ """
20607
+ The issue field's visibility.
20608
+ """
20609
+ visibility: IssueFieldVisibility!
20610
+ }
20611
+
20612
+ """
20613
+ The value of a date field in an Issue item.
20614
+ """
20615
+ type IssueFieldDateValue implements IssueFieldValueCommon & Node {
20616
+ """
20617
+ The issue field that contains this value.
20618
+ """
20619
+ field: IssueFields
20620
+
20621
+ """
20622
+ The Node ID of the IssueFieldDateValue object
20623
+ """
20624
+ id: ID!
20625
+
20626
+ """
20627
+ Value of the field.
20628
+ """
20629
+ value: String!
20630
+ }
20631
+
20632
+ """
20633
+ Represents a number issue field.
20634
+ """
20635
+ type IssueFieldNumber implements IssueFieldCommon & Node {
20636
+ """
20637
+ The issue field's creation timestamp.
20638
+ """
20639
+ createdAt: DateTime!
20640
+
20641
+ """
20642
+ The issue field's data type.
20643
+ """
20644
+ dataType: IssueFieldDataType!
20645
+
20646
+ """
20647
+ The issue field's description.
20648
+ """
20649
+ description: String
20650
+
20651
+ """
20652
+ The Node ID of the IssueFieldNumber object
20653
+ """
20654
+ id: ID!
20655
+
20656
+ """
20657
+ The issue field's name.
20658
+ """
20659
+ name: String!
20660
+
20661
+ """
20662
+ The issue field's visibility.
20663
+ """
20664
+ visibility: IssueFieldVisibility!
20665
+ }
20666
+
20667
+ """
20668
+ The value of a number field in an Issue item.
20669
+ """
20670
+ type IssueFieldNumberValue implements IssueFieldValueCommon & Node {
20671
+ """
20672
+ The issue field that contains this value.
20673
+ """
20674
+ field: IssueFields
20675
+
20676
+ """
20677
+ The Node ID of the IssueFieldNumberValue object
20678
+ """
20679
+ id: ID!
20680
+
20681
+ """
20682
+ Value of the field.
20683
+ """
20684
+ value: Float!
20685
+ }
20686
+
20687
+ """
20688
+ Ordering options for issue field connections
20689
+ """
20690
+ input IssueFieldOrder {
20691
+ """
20692
+ The ordering direction.
20693
+ """
20694
+ direction: OrderDirection!
20695
+
20696
+ """
20697
+ The field to order issue fields by.
20698
+ """
20699
+ field: IssueFieldOrderField!
20700
+ }
20701
+
20702
+ """
20703
+ Properties by which issue field connections can be ordered.
20704
+ """
20705
+ enum IssueFieldOrderField {
20706
+ """
20707
+ Order issue fields by creation time
20708
+ """
20709
+ CREATED_AT
20710
+
20711
+ """
20712
+ Order issue fields by name
20713
+ """
20714
+ NAME
20715
+ }
20716
+
20717
+ """
20718
+ Represents a 'issue_field_removed' event on a given issue.
20719
+ """
20720
+ type IssueFieldRemovedEvent implements Node {
20721
+ """
20722
+ Identifies the actor who performed the event.
20723
+ """
20724
+ actor: Actor
20725
+
20726
+ """
20727
+ Identifies the date and time when the object was created.
20728
+ """
20729
+ createdAt: DateTime!
20730
+
20731
+ """
20732
+ The Node ID of the IssueFieldRemovedEvent object
20733
+ """
20734
+ id: ID!
20735
+
20736
+ """
20737
+ The issue field removed.
20738
+ """
20739
+ issueField: IssueFields
20740
+ }
20741
+
20742
+ """
20743
+ Represents a single select issue field.
20744
+ """
20745
+ type IssueFieldSingleSelect implements IssueFieldCommon & Node {
20746
+ """
20747
+ The issue field's creation timestamp.
20748
+ """
20749
+ createdAt: DateTime!
20750
+
20751
+ """
20752
+ The issue field's data type.
20753
+ """
20754
+ dataType: IssueFieldDataType!
20755
+
20756
+ """
20757
+ The issue field's description.
20758
+ """
20759
+ description: String
20760
+
20761
+ """
20762
+ The Node ID of the IssueFieldSingleSelect object
20763
+ """
20764
+ id: ID!
20765
+
20766
+ """
20767
+ The issue field's name.
20768
+ """
20769
+ name: String!
20770
+
20771
+ """
20772
+ Options for the single select field
20773
+ """
20774
+ options: [IssueFieldSingleSelectOption!]!
20775
+
20776
+ """
20777
+ The issue field's visibility.
20778
+ """
20779
+ visibility: IssueFieldVisibility!
20780
+ }
20781
+
20782
+ """
20783
+ Represents an option in a single-select issue field.
20784
+ """
20785
+ type IssueFieldSingleSelectOption implements Node {
20786
+ """
20787
+ The option's display color.
20788
+ """
20789
+ color: IssueFieldSingleSelectOptionColor!
20790
+
20791
+ """
20792
+ The option's plain-text description.
20793
+ """
20794
+ description: String
20795
+
20796
+ """
20797
+ The Node ID of the IssueFieldSingleSelectOption object
20798
+ """
20799
+ id: ID!
20800
+
20801
+ """
20802
+ The option's name.
20803
+ """
20804
+ name: String!
20805
+
20806
+ """
20807
+ The option's priority order.
20808
+ """
20809
+ priority: Int
20810
+ }
20811
+
20812
+ """
20813
+ The display color of a single-select field option.
20814
+ """
20815
+ enum IssueFieldSingleSelectOptionColor {
20816
+ """
20817
+ blue
20818
+ """
20819
+ BLUE
20820
+
20821
+ """
20822
+ gray
20823
+ """
20824
+ GRAY
20825
+
20826
+ """
20827
+ green
20828
+ """
20829
+ GREEN
20830
+
20831
+ """
20832
+ orange
20833
+ """
20834
+ ORANGE
20835
+
20836
+ """
20837
+ pink
20838
+ """
20839
+ PINK
20840
+
20841
+ """
20842
+ purple
20843
+ """
20844
+ PURPLE
20845
+
20846
+ """
20847
+ red
20848
+ """
20849
+ RED
20850
+
20851
+ """
20852
+ yellow
20853
+ """
20854
+ YELLOW
20855
+ }
20856
+
20857
+ """
20858
+ A single selection option for an issue field.
20859
+ """
20860
+ input IssueFieldSingleSelectOptionInput {
20861
+ """
20862
+ The color associated with the option.
20863
+ """
20864
+ color: IssueFieldSingleSelectOptionColor!
20865
+
20866
+ """
20867
+ A description of the option.
20868
+ """
20869
+ description: String
20870
+
20871
+ """
20872
+ The name of the option.
20873
+ """
20874
+ name: String!
20875
+
20876
+ """
20877
+ The priority of the option in the list.
20878
+ """
20879
+ priority: Int!
20880
+ }
20881
+
20882
+ """
20883
+ The value of a single select field in an Issue item.
20884
+ """
20885
+ type IssueFieldSingleSelectValue implements IssueFieldValueCommon & Node {
20886
+ """
20887
+ The option's display color.
20888
+ """
20889
+ color: IssueFieldSingleSelectOptionColor!
20890
+
20891
+ """
20892
+ The option's plain-text description.
20893
+ """
20894
+ description: String
20895
+
20896
+ """
20897
+ The issue field that contains this value.
20898
+ """
20899
+ field: IssueFields
20900
+
20901
+ """
20902
+ The Node ID of the IssueFieldSingleSelectValue object
20903
+ """
20904
+ id: ID!
20905
+
20906
+ """
20907
+ The option's name.
20908
+ """
20909
+ name: String!
20910
+
20911
+ """
20912
+ The selected option's global relay ID.
20913
+ """
20914
+ optionId: String
20915
+
20916
+ """
20917
+ The option's name text (alias for `name`, for consistency with other field value types).
20918
+ """
20919
+ value: String!
20920
+ }
20921
+
20922
+ """
20923
+ Represents a text issue field.
20924
+ """
20925
+ type IssueFieldText implements IssueFieldCommon & Node {
20926
+ """
20927
+ The issue field's creation timestamp.
20928
+ """
20929
+ createdAt: DateTime!
20930
+
20931
+ """
20932
+ The issue field's data type.
20933
+ """
20934
+ dataType: IssueFieldDataType!
20935
+
20936
+ """
20937
+ The issue field's description.
20938
+ """
20939
+ description: String
20940
+
20941
+ """
20942
+ The Node ID of the IssueFieldText object
20943
+ """
20944
+ id: ID!
20945
+
20946
+ """
20947
+ The issue field's name.
20948
+ """
20949
+ name: String!
20950
+
20951
+ """
20952
+ The issue field's visibility.
20953
+ """
20954
+ visibility: IssueFieldVisibility!
20955
+ }
20956
+
20957
+ """
20958
+ The value of a text field in an Issue item.
20959
+ """
20960
+ type IssueFieldTextValue implements IssueFieldValueCommon & Node {
20961
+ """
20962
+ The issue field that contains this value.
20963
+ """
20964
+ field: IssueFields
20965
+
20966
+ """
20967
+ The Node ID of the IssueFieldTextValue object
20968
+ """
20969
+ id: ID!
20970
+
20971
+ """
20972
+ Value of the field.
20973
+ """
20974
+ value: String!
20975
+ }
20976
+
20977
+ """
20978
+ Issue field values
20979
+ """
20980
+ union IssueFieldValue = IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue
20981
+
20982
+ """
20983
+ Common fields across different issue field value types
20984
+ """
20985
+ interface IssueFieldValueCommon {
20986
+ """
20987
+ The issue field that contains this value.
20988
+ """
20989
+ field: IssueFields
20990
+ }
20991
+
20992
+ """
20993
+ The connection type for IssueFieldValue.
20994
+ """
20995
+ type IssueFieldValueConnection {
20996
+ """
20997
+ A list of edges.
20998
+ """
20999
+ edges: [IssueFieldValueEdge]
21000
+
21001
+ """
21002
+ A list of nodes.
21003
+ """
21004
+ nodes: [IssueFieldValue]
21005
+
21006
+ """
21007
+ Information to aid in pagination.
21008
+ """
21009
+ pageInfo: PageInfo!
21010
+
21011
+ """
21012
+ Identifies the total count of items in the connection.
21013
+ """
21014
+ totalCount: Int!
21015
+ }
21016
+
21017
+ """
21018
+ An edge in a connection.
21019
+ """
21020
+ type IssueFieldValueEdge {
21021
+ """
21022
+ A cursor for use in pagination.
21023
+ """
21024
+ cursor: String!
21025
+
21026
+ """
21027
+ The item at the end of the edge.
21028
+ """
21029
+ node: IssueFieldValue
21030
+ }
21031
+
21032
+ """
21033
+ The visibility of an issue field.
21034
+ """
21035
+ enum IssueFieldVisibility {
21036
+ """
21037
+ All
21038
+ """
21039
+ ALL
21040
+
21041
+ """
21042
+ Org Only
21043
+ """
21044
+ ORG_ONLY
21045
+ }
21046
+
21047
+ """
21048
+ Possible issue fields.
21049
+ """
21050
+ union IssueFields = IssueFieldDate | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText
21051
+
21052
+ """
21053
+ The connection type for IssueFields.
21054
+ """
21055
+ type IssueFieldsConnection {
21056
+ """
21057
+ A list of edges.
21058
+ """
21059
+ edges: [IssueFieldsEdge]
21060
+
21061
+ """
21062
+ A list of nodes.
21063
+ """
21064
+ nodes: [IssueFields]
21065
+
21066
+ """
21067
+ Information to aid in pagination.
21068
+ """
21069
+ pageInfo: PageInfo!
21070
+
21071
+ """
21072
+ Identifies the total count of items in the connection.
21073
+ """
21074
+ totalCount: Int!
21075
+ }
21076
+
21077
+ """
21078
+ An edge in a connection.
21079
+ """
21080
+ type IssueFieldsEdge {
21081
+ """
21082
+ A cursor for use in pagination.
21083
+ """
21084
+ cursor: String!
21085
+
21086
+ """
21087
+ The item at the end of the edge.
21088
+ """
21089
+ node: IssueFields
21090
+ }
21091
+
20093
21092
  """
20094
21093
  Ways in which to filter lists of issues.
20095
21094
  """
@@ -20190,6 +21189,26 @@ enum IssueOrderField {
20190
21189
  UPDATED_AT
20191
21190
  }
20192
21191
 
21192
+ """
21193
+ Type of issue search performed
21194
+ """
21195
+ enum IssueSearchType {
21196
+ """
21197
+ Hybrid search combining lexical and semantic approaches
21198
+ """
21199
+ HYBRID
21200
+
21201
+ """
21202
+ Lexical (keyword-based) search
21203
+ """
21204
+ LEXICAL
21205
+
21206
+ """
21207
+ Semantic (meaning-based) search using embeddings
21208
+ """
21209
+ SEMANTIC
21210
+ }
21211
+
20193
21212
  """
20194
21213
  The possible states of an issue.
20195
21214
  """
@@ -20368,7 +21387,7 @@ type IssueTimelineItemEdge {
20368
21387
  """
20369
21388
  An item in an issue timeline
20370
21389
  """
20371
- 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
21390
+ union IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldRemovedEvent | 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
20372
21391
 
20373
21392
  """
20374
21393
  The connection type for IssueTimelineItems.
@@ -20768,6 +21787,11 @@ type IssueType implements Node {
20768
21787
  The issue type's name.
20769
21788
  """
20770
21789
  name: String!
21790
+
21791
+ """
21792
+ An ordered list of issue fields pinned to this type.
21793
+ """
21794
+ pinnedFields: [IssueFields!]
20771
21795
  }
20772
21796
 
20773
21797
  """
@@ -21380,6 +22404,46 @@ enum LanguageOrderField {
21380
22404
  SIZE
21381
22405
  }
21382
22406
 
22407
+ """
22408
+ Reason why a semantic or hybrid issue search fell back to lexical search
22409
+ """
22410
+ enum LexicalFallbackReason {
22411
+ """
22412
+ Query targets non-issue types (e.g., pull requests)
22413
+ """
22414
+ NON_ISSUE_TARGET
22415
+
22416
+ """
22417
+ Scoped query resolved to zero accessible repositories
22418
+ """
22419
+ NO_ACCESSIBLE_REPOS
22420
+
22421
+ """
22422
+ Query has only qualifiers and no free text terms
22423
+ """
22424
+ NO_TEXT_TERMS
22425
+
22426
+ """
22427
+ Query uses an in: qualifier targeting non-semantic fields
22428
+ """
22429
+ ONLY_NON_SEMANTIC_FIELDS_REQUESTED
22430
+
22431
+ """
22432
+ Query contains OR operators (nested boolean qualifiers)
22433
+ """
22434
+ OR_BOOLEAN_NOT_SUPPORTED
22435
+
22436
+ """
22437
+ Query contains quoted text requiring exact matches
22438
+ """
22439
+ QUOTED_TEXT
22440
+
22441
+ """
22442
+ Embedding generation failed or timed out
22443
+ """
22444
+ SERVER_ERROR
22445
+ }
22446
+
21383
22447
  """
21384
22448
  A repository's open source license
21385
22449
  """
@@ -24022,8 +25086,9 @@ interface Minimizable {
24022
25086
 
24023
25087
  """
24024
25088
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
24025
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
24026
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
25089
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
25090
+ case and formatting of these values differs from the inputs to the
25091
+ `MinimizeComment` mutation.
24027
25092
  """
24028
25093
  minimizedReason: String
24029
25094
 
@@ -24825,6 +25890,26 @@ type Mutation {
24825
25890
  input: CreateIssueInput!
24826
25891
  ): CreateIssuePayload
24827
25892
 
25893
+ """
25894
+ Creates a new issue field.
25895
+ """
25896
+ createIssueField(
25897
+ """
25898
+ Parameters for CreateIssueField
25899
+ """
25900
+ input: CreateIssueFieldInput!
25901
+ ): CreateIssueFieldPayload
25902
+
25903
+ """
25904
+ Creates a new issue field value for an issue.
25905
+ """
25906
+ createIssueFieldValue(
25907
+ """
25908
+ Parameters for CreateIssueFieldValue
25909
+ """
25910
+ input: CreateIssueFieldValueInput!
25911
+ ): CreateIssueFieldValuePayload
25912
+
24828
25913
  """
24829
25914
  Creates a new issue type
24830
25915
  """
@@ -24895,6 +25980,16 @@ type Mutation {
24895
25980
  input: CreateProjectV2FieldInput!
24896
25981
  ): CreateProjectV2FieldPayload
24897
25982
 
25983
+ """
25984
+ Create a new project issue field.
25985
+ """
25986
+ createProjectV2IssueField(
25987
+ """
25988
+ Parameters for CreateProjectV2IssueField
25989
+ """
25990
+ input: CreateProjectV2IssueFieldInput!
25991
+ ): CreateProjectV2IssueFieldPayload
25992
+
24898
25993
  """
24899
25994
  Creates a status update within a Project.
24900
25995
  """
@@ -25096,6 +26191,26 @@ type Mutation {
25096
26191
  input: DeleteIssueCommentInput!
25097
26192
  ): DeleteIssueCommentPayload
25098
26193
 
26194
+ """
26195
+ Deletes an issue field.
26196
+ """
26197
+ deleteIssueField(
26198
+ """
26199
+ Parameters for DeleteIssueField
26200
+ """
26201
+ input: DeleteIssueFieldInput!
26202
+ ): DeleteIssueFieldPayload
26203
+
26204
+ """
26205
+ Deletes an issue field value from an issue.
26206
+ """
26207
+ deleteIssueFieldValue(
26208
+ """
26209
+ Parameters for DeleteIssueFieldValue
26210
+ """
26211
+ input: DeleteIssueFieldValueInput!
26212
+ ): DeleteIssueFieldValuePayload
26213
+
25099
26214
  """
25100
26215
  Delete an issue type
25101
26216
  """
@@ -25566,6 +26681,16 @@ type Mutation {
25566
26681
  input: PinIssueInput!
25567
26682
  ): PinIssuePayload
25568
26683
 
26684
+ """
26685
+ Pins an Issue Comment.
26686
+ """
26687
+ pinIssueComment(
26688
+ """
26689
+ Parameters for PinIssueComment
26690
+ """
26691
+ input: PinIssueCommentInput!
26692
+ ): PinIssueCommentPayload
26693
+
25569
26694
  """
25570
26695
  Promote a repository custom property to the enterprise level.
25571
26696
  """
@@ -25897,6 +27022,16 @@ type Mutation {
25897
27022
  input: SetEnterpriseIdentityProviderInput!
25898
27023
  ): SetEnterpriseIdentityProviderPayload
25899
27024
 
27025
+ """
27026
+ Sets the value of an IssueFieldValue.
27027
+ """
27028
+ setIssueFieldValue(
27029
+ """
27030
+ Parameters for SetIssueFieldValue
27031
+ """
27032
+ input: SetIssueFieldValueInput!
27033
+ ): SetIssueFieldValuePayload
27034
+
25900
27035
  """
25901
27036
  Set an organization level interaction limit for an organization's public repositories.
25902
27037
  """
@@ -26127,6 +27262,16 @@ type Mutation {
26127
27262
  input: UnpinIssueInput!
26128
27263
  ): UnpinIssuePayload
26129
27264
 
27265
+ """
27266
+ Unpins an Issue Comment.
27267
+ """
27268
+ unpinIssueComment(
27269
+ """
27270
+ Parameters for UnpinIssueComment
27271
+ """
27272
+ input: UnpinIssueCommentInput!
27273
+ ): UnpinIssueCommentPayload
27274
+
26130
27275
  """
26131
27276
  Marks a review thread as unresolved.
26132
27277
  """
@@ -26437,6 +27582,26 @@ type Mutation {
26437
27582
  input: UpdateIssueCommentInput!
26438
27583
  ): UpdateIssueCommentPayload
26439
27584
 
27585
+ """
27586
+ Updates an issue field.
27587
+ """
27588
+ updateIssueField(
27589
+ """
27590
+ Parameters for UpdateIssueField
27591
+ """
27592
+ input: UpdateIssueFieldInput!
27593
+ ): UpdateIssueFieldPayload
27594
+
27595
+ """
27596
+ Updates an existing issue field value for an issue.
27597
+ """
27598
+ updateIssueFieldValue(
27599
+ """
27600
+ Parameters for UpdateIssueFieldValue
27601
+ """
27602
+ input: UpdateIssueFieldValueInput!
27603
+ ): UpdateIssueFieldValuePayload
27604
+
26440
27605
  """
26441
27606
  Updates the issue type on an issue
26442
27607
  """
@@ -30704,6 +31869,36 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
30704
31869
  """
30705
31870
  isVerified: Boolean!
30706
31871
 
31872
+ """
31873
+ A list of the organization's issue fields
31874
+ """
31875
+ issueFields(
31876
+ """
31877
+ Returns the elements in the list that come after the specified cursor.
31878
+ """
31879
+ after: String
31880
+
31881
+ """
31882
+ Returns the elements in the list that come before the specified cursor.
31883
+ """
31884
+ before: String
31885
+
31886
+ """
31887
+ Returns the first _n_ elements from the list.
31888
+ """
31889
+ first: Int
31890
+
31891
+ """
31892
+ Returns the last _n_ elements from the list.
31893
+ """
31894
+ last: Int
31895
+
31896
+ """
31897
+ Ordering options for issue fields returned from the connection.
31898
+ """
31899
+ orderBy: IssueFieldOrder = {field: CREATED_AT, direction: ASC}
31900
+ ): IssueFieldsConnection
31901
+
30707
31902
  """
30708
31903
  A list of the organization's issue types
30709
31904
  """
@@ -33451,6 +34646,36 @@ type PinEnvironmentPayload {
33451
34646
  pinnedEnvironment: PinnedEnvironment
33452
34647
  }
33453
34648
 
34649
+ """
34650
+ Autogenerated input type of PinIssueComment
34651
+ """
34652
+ input PinIssueCommentInput {
34653
+ """
34654
+ A unique identifier for the client performing the mutation.
34655
+ """
34656
+ clientMutationId: String
34657
+
34658
+ """
34659
+ The ID of the Issue Comment to pin. Comment pinning is not supported on Pull Requests.
34660
+ """
34661
+ issueCommentId: ID!
34662
+ }
34663
+
34664
+ """
34665
+ Autogenerated return type of PinIssueComment.
34666
+ """
34667
+ type PinIssueCommentPayload {
34668
+ """
34669
+ A unique identifier for the client performing the mutation.
34670
+ """
34671
+ clientMutationId: String
34672
+
34673
+ """
34674
+ The Issue Comment that was pinned
34675
+ """
34676
+ issueComment: IssueComment
34677
+ }
34678
+
33454
34679
  """
33455
34680
  Autogenerated input type of PinIssue
33456
34681
  """
@@ -33481,6 +34706,36 @@ type PinIssuePayload {
33481
34706
  issue: Issue
33482
34707
  }
33483
34708
 
34709
+ """
34710
+ Entities that can be pinned.
34711
+ """
34712
+ interface Pinnable {
34713
+ """
34714
+ Indicates whether or not this entity is currently pinned.
34715
+ """
34716
+ isPinned: Boolean
34717
+
34718
+ """
34719
+ Identifies the date and time when this entity was pinned.
34720
+ """
34721
+ pinnedAt: DateTime
34722
+
34723
+ """
34724
+ The user who pinned this entity.
34725
+ """
34726
+ pinnedBy: User
34727
+
34728
+ """
34729
+ Check if the current viewer can pin this entity.
34730
+ """
34731
+ viewerCanPin: Boolean!
34732
+
34733
+ """
34734
+ Check if the current viewer can unpin this entity.
34735
+ """
34736
+ viewerCanUnpin: Boolean!
34737
+ }
34738
+
33484
34739
  """
33485
34740
  Types that can be pinned to a profile page.
33486
34741
  """
@@ -33891,6 +35146,46 @@ type PinnedIssue implements Node {
33891
35146
  repository: Repository!
33892
35147
  }
33893
35148
 
35149
+ """
35150
+ A comment pinned to an Issue.
35151
+ """
35152
+ type PinnedIssueComment implements Node {
35153
+ """
35154
+ Identifies the primary key from the database.
35155
+ """
35156
+ databaseId: Int
35157
+
35158
+ """
35159
+ Identifies the primary key from the database as a BigInt.
35160
+ """
35161
+ fullDatabaseId: BigInt
35162
+
35163
+ """
35164
+ The Node ID of the PinnedIssueComment object
35165
+ """
35166
+ id: ID!
35167
+
35168
+ """
35169
+ The issue that this comment belongs to.
35170
+ """
35171
+ issue: Issue!
35172
+
35173
+ """
35174
+ The comment that was pinned.
35175
+ """
35176
+ issueComment: IssueComment!
35177
+
35178
+ """
35179
+ Identifies when the comment was pinned.
35180
+ """
35181
+ pinnedAt: DateTime!
35182
+
35183
+ """
35184
+ The actor that pinned this comment.
35185
+ """
35186
+ pinnedBy: Actor!
35187
+ }
35188
+
33894
35189
  """
33895
35190
  The connection type for PinnedIssue.
33896
35191
  """
@@ -35898,12 +37193,17 @@ input ProjectV2Filters {
35898
37193
  state: ProjectV2State
35899
37194
  }
35900
37195
 
37196
+ """
37197
+ Possible issue field values for a Project item.
37198
+ """
37199
+ union ProjectV2IssueFieldValues = IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue
37200
+
35901
37201
  """
35902
37202
  An item within a Project.
35903
37203
  """
35904
37204
  type ProjectV2Item implements Node {
35905
37205
  """
35906
- The content of the referenced draft issue, issue, or pull request
37206
+ The content of the referenced draft issue, issue, pull request
35907
37207
  """
35908
37208
  content: ProjectV2ItemContent
35909
37209
 
@@ -36486,7 +37786,7 @@ type ProjectV2ItemFieldUserValue {
36486
37786
  """
36487
37787
  Project field values
36488
37788
  """
36489
- union ProjectV2ItemFieldValue = ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldLabelValue | ProjectV2ItemFieldMilestoneValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldPullRequestValue | ProjectV2ItemFieldRepositoryValue | ProjectV2ItemFieldReviewerValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemFieldUserValue
37789
+ union ProjectV2ItemFieldValue = ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldLabelValue | ProjectV2ItemFieldMilestoneValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldPullRequestValue | ProjectV2ItemFieldRepositoryValue | ProjectV2ItemFieldReviewerValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemFieldUserValue | ProjectV2ItemIssueFieldValue
36490
37790
 
36491
37791
  """
36492
37792
  Common fields across different project field value types
@@ -36593,6 +37893,21 @@ enum ProjectV2ItemFieldValueOrderField {
36593
37893
  POSITION
36594
37894
  }
36595
37895
 
37896
+ """
37897
+ The value of an issue field in a Project item.
37898
+ """
37899
+ type ProjectV2ItemIssueFieldValue {
37900
+ """
37901
+ Field that contains this value.
37902
+ """
37903
+ field: ProjectV2FieldConfiguration!
37904
+
37905
+ """
37906
+ Value of the Issue Field
37907
+ """
37908
+ issueFieldValue: ProjectV2IssueFieldValues
37909
+ }
37910
+
36596
37911
  """
36597
37912
  Ordering options for project v2 item connections
36598
37913
  """
@@ -39822,8 +41137,9 @@ type PullRequestReview implements Comment & Deletable & Minimizable & Node & Rea
39822
41137
 
39823
41138
  """
39824
41139
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
39825
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
39826
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
41140
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
41141
+ case and formatting of these values differs from the inputs to the
41142
+ `MinimizeComment` mutation.
39827
41143
  """
39828
41144
  minimizedReason: String
39829
41145
 
@@ -40089,8 +41405,9 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
40089
41405
 
40090
41406
  """
40091
41407
  Returns why the comment was minimized. One of `abuse`, `off-topic`,
40092
- `outdated`, `resolved`, `duplicate` and `spam`. Note that the case and
40093
- formatting of these values differs from the inputs to the `MinimizeComment` mutation.
41408
+ `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
41409
+ case and formatting of these values differs from the inputs to the
41410
+ `MinimizeComment` mutation.
40094
41411
  """
40095
41412
  minimizedReason: String
40096
41413
 
@@ -40898,7 +42215,7 @@ type PullRequestTimelineItemEdge {
40898
42215
  """
40899
42216
  An item in a pull request timeline
40900
42217
  """
40901
- 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
42218
+ 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 | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldRemovedEvent | 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
40902
42219
 
40903
42220
  """
40904
42221
  The connection type for PullRequestTimelineItems.
@@ -48414,6 +49731,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
48414
49731
  """
48415
49732
  before: String
48416
49733
 
49734
+ """
49735
+ Filter by the classification of the alert's associated security advisory
49736
+ """
49737
+ classifications: [SecurityAdvisoryClassification!]
49738
+
48417
49739
  """
48418
49740
  Filter by the scope of the alert's dependency
48419
49741
  """
@@ -52343,6 +53665,16 @@ type SearchResultItemConnection {
52343
53665
  """
52344
53666
  issueCount: Int!
52345
53667
 
53668
+ """
53669
+ The type of search that was performed for issues (lexical, semantic, or hybrid)
53670
+ """
53671
+ issueSearchType: IssueSearchType
53672
+
53673
+ """
53674
+ When a semantic or hybrid search falls back to lexical, the reasons why the fallback occurred.
53675
+ """
53676
+ lexicalFallbackReason: [LexicalFallbackReason!]
53677
+
52346
53678
  """
52347
53679
  A list of nodes.
52348
53680
  """
@@ -52413,6 +53745,16 @@ enum SearchType {
52413
53745
  """
52414
53746
  ISSUE_ADVANCED
52415
53747
 
53748
+ """
53749
+ Returns results matching issues using hybrid (lexical + semantic) search.
53750
+ """
53751
+ ISSUE_HYBRID
53752
+
53753
+ """
53754
+ Returns results matching issues using semantic search.
53755
+ """
53756
+ ISSUE_SEMANTIC
53757
+
52416
53758
  """
52417
53759
  Returns results matching repositories.
52418
53760
  """
@@ -53020,6 +54362,46 @@ type SetEnterpriseIdentityProviderPayload {
53020
54362
  identityProvider: EnterpriseIdentityProvider
53021
54363
  }
53022
54364
 
54365
+ """
54366
+ Autogenerated input type of SetIssueFieldValue
54367
+ """
54368
+ input SetIssueFieldValueInput {
54369
+ """
54370
+ A unique identifier for the client performing the mutation.
54371
+ """
54372
+ clientMutationId: String
54373
+
54374
+ """
54375
+ The issue fields to set on the issue
54376
+ """
54377
+ issueFields: [IssueFieldCreateOrUpdateInput!]!
54378
+
54379
+ """
54380
+ The ID of the Issue to set the field value on.
54381
+ """
54382
+ issueId: ID!
54383
+ }
54384
+
54385
+ """
54386
+ Autogenerated return type of SetIssueFieldValue.
54387
+ """
54388
+ type SetIssueFieldValuePayload {
54389
+ """
54390
+ A unique identifier for the client performing the mutation.
54391
+ """
54392
+ clientMutationId: String
54393
+
54394
+ """
54395
+ The issue where the field values were set.
54396
+ """
54397
+ issue: Issue
54398
+
54399
+ """
54400
+ The issue field values that were created or updated.
54401
+ """
54402
+ issueFieldValues: [IssueFieldValue!]
54403
+ }
54404
+
53023
54405
  """
53024
54406
  Autogenerated input type of SetOrganizationInteractionLimit
53025
54407
  """
@@ -59982,6 +61364,36 @@ type UnminimizeCommentPayload {
59982
61364
  unminimizedComment: Minimizable
59983
61365
  }
59984
61366
 
61367
+ """
61368
+ Autogenerated input type of UnpinIssueComment
61369
+ """
61370
+ input UnpinIssueCommentInput {
61371
+ """
61372
+ A unique identifier for the client performing the mutation.
61373
+ """
61374
+ clientMutationId: String
61375
+
61376
+ """
61377
+ The ID of the Issue Comment to unpin. Comment pinning is not supported on Pull Requests.
61378
+ """
61379
+ issueCommentId: ID!
61380
+ }
61381
+
61382
+ """
61383
+ Autogenerated return type of UnpinIssueComment.
61384
+ """
61385
+ type UnpinIssueCommentPayload {
61386
+ """
61387
+ A unique identifier for the client performing the mutation.
61388
+ """
61389
+ clientMutationId: String
61390
+
61391
+ """
61392
+ The Issue Comment that was unpinned
61393
+ """
61394
+ issueComment: IssueComment
61395
+ }
61396
+
59985
61397
  """
59986
61398
  Autogenerated input type of UnpinIssue
59987
61399
  """
@@ -61469,6 +62881,96 @@ type UpdateIssueCommentPayload {
61469
62881
  issueComment: IssueComment
61470
62882
  }
61471
62883
 
62884
+ """
62885
+ Autogenerated input type of UpdateIssueField
62886
+ """
62887
+ input UpdateIssueFieldInput {
62888
+ """
62889
+ A unique identifier for the client performing the mutation.
62890
+ """
62891
+ clientMutationId: String
62892
+
62893
+ """
62894
+ A description of the issue field.
62895
+ """
62896
+ description: String
62897
+
62898
+ """
62899
+ The ID of the issue field to update.
62900
+ """
62901
+ id: ID!
62902
+
62903
+ """
62904
+ The name of the issue field.
62905
+ """
62906
+ name: String
62907
+
62908
+ """
62909
+ The options for the issue field if applicable.
62910
+ """
62911
+ options: [IssueFieldSingleSelectOptionInput!]
62912
+
62913
+ """
62914
+ The visibility of the issue field.
62915
+ """
62916
+ visibility: IssueFieldVisibility
62917
+ }
62918
+
62919
+ """
62920
+ Autogenerated return type of UpdateIssueField.
62921
+ """
62922
+ type UpdateIssueFieldPayload {
62923
+ """
62924
+ A unique identifier for the client performing the mutation.
62925
+ """
62926
+ clientMutationId: String
62927
+
62928
+ """
62929
+ The updated issue field.
62930
+ """
62931
+ issueField: IssueFields
62932
+ }
62933
+
62934
+ """
62935
+ Autogenerated input type of UpdateIssueFieldValue
62936
+ """
62937
+ input UpdateIssueFieldValueInput {
62938
+ """
62939
+ A unique identifier for the client performing the mutation.
62940
+ """
62941
+ clientMutationId: String
62942
+
62943
+ """
62944
+ The field value to update.
62945
+ """
62946
+ issueField: IssueFieldCreateOrUpdateInput!
62947
+
62948
+ """
62949
+ The ID of the issue.
62950
+ """
62951
+ issueId: ID!
62952
+ }
62953
+
62954
+ """
62955
+ Autogenerated return type of UpdateIssueFieldValue.
62956
+ """
62957
+ type UpdateIssueFieldValuePayload {
62958
+ """
62959
+ A unique identifier for the client performing the mutation.
62960
+ """
62961
+ clientMutationId: String
62962
+
62963
+ """
62964
+ The issue object.
62965
+ """
62966
+ issue: Issue
62967
+
62968
+ """
62969
+ The updated issue field value.
62970
+ """
62971
+ issueFieldValue: IssueFieldValue
62972
+ }
62973
+
61472
62974
  """
61473
62975
  Autogenerated input type of UpdateIssue
61474
62976
  """
@@ -66116,4 +67618,4 @@ scalar X509Certificate
66116
67618
 
66117
67619
  scalar _Any
66118
67620
 
66119
- union _Entity = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | CWE | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | IssueType | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OIDCProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | Package | PackageFile | PackageTag | PackageVersion | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemStatusChangedEvent | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2StatusUpdate | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Query | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryCustomProperty | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserNamespaceRepository | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile
67621
+ union _Entity = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | CWE | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldDate | IssueFieldDateValue | IssueFieldNumber | IssueFieldNumberValue | IssueFieldRemovedEvent | IssueFieldSingleSelect | IssueFieldSingleSelectOption | IssueFieldSingleSelectValue | IssueFieldText | IssueFieldTextValue | IssueType | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OIDCProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | Package | PackageFile | PackageTag | PackageVersion | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PinnedIssueComment | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemStatusChangedEvent | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2StatusUpdate | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Query | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryCustomProperty | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserNamespaceRepository | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile