github-schema 1.15.1 → 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.
- package/dist/github-schema.d.cts +336 -19
- package/dist/github-schema.d.ts +336 -19
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +683 -15
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -7674,6 +7674,11 @@ input CreateIssueInput {
|
|
|
7674
7674
|
"""
|
|
7675
7675
|
issueTemplate: String
|
|
7676
7676
|
|
|
7677
|
+
"""
|
|
7678
|
+
The Node ID of the issue type for this issue
|
|
7679
|
+
"""
|
|
7680
|
+
issueTypeId: ID
|
|
7681
|
+
|
|
7677
7682
|
"""
|
|
7678
7683
|
An array of Node IDs of labels for this issue.
|
|
7679
7684
|
"""
|
|
@@ -7720,6 +7725,65 @@ type CreateIssuePayload {
|
|
|
7720
7725
|
issue: Issue
|
|
7721
7726
|
}
|
|
7722
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
|
+
|
|
7723
7787
|
"""
|
|
7724
7788
|
Autogenerated input type of CreateLabel
|
|
7725
7789
|
"""
|
|
@@ -9557,6 +9621,36 @@ type DeleteIssuePayload {
|
|
|
9557
9621
|
repository: Repository
|
|
9558
9622
|
}
|
|
9559
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
|
+
|
|
9560
9654
|
"""
|
|
9561
9655
|
Autogenerated input type of DeleteLabel
|
|
9562
9656
|
"""
|
|
@@ -10226,6 +10320,11 @@ type DependencyGraphDependency {
|
|
|
10226
10320
|
"""
|
|
10227
10321
|
packageName: String!
|
|
10228
10322
|
|
|
10323
|
+
"""
|
|
10324
|
+
Public preview: The dependency package URL
|
|
10325
|
+
"""
|
|
10326
|
+
packageUrl: URI
|
|
10327
|
+
|
|
10229
10328
|
"""
|
|
10230
10329
|
Public preview: The relationship of the dependency. Can be direct, transitive, or unknown
|
|
10231
10330
|
"""
|
|
@@ -16597,7 +16696,8 @@ input FileExtensionRestrictionParametersInput {
|
|
|
16597
16696
|
}
|
|
16598
16697
|
|
|
16599
16698
|
"""
|
|
16600
|
-
Prevent commits that include changes in specified file paths from
|
|
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.
|
|
16601
16701
|
"""
|
|
16602
16702
|
type FilePathRestrictionParameters {
|
|
16603
16703
|
"""
|
|
@@ -16607,7 +16707,8 @@ type FilePathRestrictionParameters {
|
|
|
16607
16707
|
}
|
|
16608
16708
|
|
|
16609
16709
|
"""
|
|
16610
|
-
Prevent commits that include changes in specified file paths from
|
|
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.
|
|
16611
16712
|
"""
|
|
16612
16713
|
input FilePathRestrictionParametersInput {
|
|
16613
16714
|
"""
|
|
@@ -18434,6 +18535,11 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
|
|
|
18434
18535
|
"""
|
|
18435
18536
|
isReadByViewer: Boolean
|
|
18436
18537
|
|
|
18538
|
+
"""
|
|
18539
|
+
The issue type for this Issue
|
|
18540
|
+
"""
|
|
18541
|
+
issueType: IssueType
|
|
18542
|
+
|
|
18437
18543
|
"""
|
|
18438
18544
|
A list of labels associated with the object.
|
|
18439
18545
|
"""
|
|
@@ -19582,6 +19688,11 @@ type IssueTemplate {
|
|
|
19582
19688
|
The suggested issue title.
|
|
19583
19689
|
"""
|
|
19584
19690
|
title: String
|
|
19691
|
+
|
|
19692
|
+
"""
|
|
19693
|
+
The suggested issue type
|
|
19694
|
+
"""
|
|
19695
|
+
type: IssueType
|
|
19585
19696
|
}
|
|
19586
19697
|
|
|
19587
19698
|
"""
|
|
@@ -19632,7 +19743,7 @@ type IssueTimelineItemEdge {
|
|
|
19632
19743
|
"""
|
|
19633
19744
|
An item in an issue timeline
|
|
19634
19745
|
"""
|
|
19635
|
-
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
|
|
19636
19747
|
|
|
19637
19748
|
"""
|
|
19638
19749
|
The connection type for IssueTimelineItems.
|
|
@@ -19748,6 +19859,21 @@ enum IssueTimelineItemsItemType {
|
|
|
19748
19859
|
"""
|
|
19749
19860
|
ISSUE_COMMENT
|
|
19750
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
|
+
|
|
19751
19877
|
"""
|
|
19752
19878
|
Represents a 'labeled' event on a given issue or pull request.
|
|
19753
19879
|
"""
|
|
@@ -19869,6 +19995,286 @@ enum IssueTimelineItemsItemType {
|
|
|
19869
19995
|
USER_BLOCKED_EVENT
|
|
19870
19996
|
}
|
|
19871
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
|
+
|
|
19872
20278
|
"""
|
|
19873
20279
|
Represents a user signing up for a GitHub account.
|
|
19874
20280
|
"""
|
|
@@ -21332,27 +21738,27 @@ type MarketplaceListingEdge {
|
|
|
21332
21738
|
}
|
|
21333
21739
|
|
|
21334
21740
|
"""
|
|
21335
|
-
Prevent commits that include file paths that exceed
|
|
21741
|
+
Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
|
|
21336
21742
|
"""
|
|
21337
21743
|
type MaxFilePathLengthParameters {
|
|
21338
21744
|
"""
|
|
21339
|
-
The maximum amount of characters allowed in file paths
|
|
21745
|
+
The maximum amount of characters allowed in file paths.
|
|
21340
21746
|
"""
|
|
21341
21747
|
maxFilePathLength: Int!
|
|
21342
21748
|
}
|
|
21343
21749
|
|
|
21344
21750
|
"""
|
|
21345
|
-
Prevent commits that include file paths that exceed
|
|
21751
|
+
Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
|
|
21346
21752
|
"""
|
|
21347
21753
|
input MaxFilePathLengthParametersInput {
|
|
21348
21754
|
"""
|
|
21349
|
-
The maximum amount of characters allowed in file paths
|
|
21755
|
+
The maximum amount of characters allowed in file paths.
|
|
21350
21756
|
"""
|
|
21351
21757
|
maxFilePathLength: Int!
|
|
21352
21758
|
}
|
|
21353
21759
|
|
|
21354
21760
|
"""
|
|
21355
|
-
Prevent commits that exceed
|
|
21761
|
+
Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
|
|
21356
21762
|
"""
|
|
21357
21763
|
type MaxFileSizeParameters {
|
|
21358
21764
|
"""
|
|
@@ -21362,7 +21768,7 @@ type MaxFileSizeParameters {
|
|
|
21362
21768
|
}
|
|
21363
21769
|
|
|
21364
21770
|
"""
|
|
21365
|
-
Prevent commits that exceed
|
|
21771
|
+
Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
|
|
21366
21772
|
"""
|
|
21367
21773
|
input MaxFileSizeParametersInput {
|
|
21368
21774
|
"""
|
|
@@ -23694,6 +24100,16 @@ type Mutation {
|
|
|
23694
24100
|
input: CreateIssueInput!
|
|
23695
24101
|
): CreateIssuePayload
|
|
23696
24102
|
|
|
24103
|
+
"""
|
|
24104
|
+
Creates a new issue type
|
|
24105
|
+
"""
|
|
24106
|
+
createIssueType(
|
|
24107
|
+
"""
|
|
24108
|
+
Parameters for CreateIssueType
|
|
24109
|
+
"""
|
|
24110
|
+
input: CreateIssueTypeInput!
|
|
24111
|
+
): CreateIssueTypePayload
|
|
24112
|
+
|
|
23697
24113
|
"""
|
|
23698
24114
|
Creates a new label.
|
|
23699
24115
|
"""
|
|
@@ -23965,6 +24381,16 @@ type Mutation {
|
|
|
23965
24381
|
input: DeleteIssueCommentInput!
|
|
23966
24382
|
): DeleteIssueCommentPayload
|
|
23967
24383
|
|
|
24384
|
+
"""
|
|
24385
|
+
Delete an issue type
|
|
24386
|
+
"""
|
|
24387
|
+
deleteIssueType(
|
|
24388
|
+
"""
|
|
24389
|
+
Parameters for DeleteIssueType
|
|
24390
|
+
"""
|
|
24391
|
+
input: DeleteIssueTypeInput!
|
|
24392
|
+
): DeleteIssueTypePayload
|
|
24393
|
+
|
|
23968
24394
|
"""
|
|
23969
24395
|
Deletes a label.
|
|
23970
24396
|
"""
|
|
@@ -25256,6 +25682,26 @@ type Mutation {
|
|
|
25256
25682
|
input: UpdateIssueCommentInput!
|
|
25257
25683
|
): UpdateIssueCommentPayload
|
|
25258
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
|
+
|
|
25259
25705
|
"""
|
|
25260
25706
|
Updates an existing label.
|
|
25261
25707
|
"""
|
|
@@ -29533,6 +29979,36 @@ type Organization implements Actor & AnnouncementBannerI & MemberStatusable & No
|
|
|
29533
29979
|
"""
|
|
29534
29980
|
isVerified: Boolean!
|
|
29535
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
|
+
|
|
29536
30012
|
"""
|
|
29537
30013
|
Showcases a selection of repositories and gists that the profile owner has
|
|
29538
30014
|
either curated or that have been selected automatically based on popularity.
|
|
@@ -34466,6 +34942,11 @@ enum ProjectV2FieldType {
|
|
|
34466
34942
|
"""
|
|
34467
34943
|
DATE
|
|
34468
34944
|
|
|
34945
|
+
"""
|
|
34946
|
+
Issue type
|
|
34947
|
+
"""
|
|
34948
|
+
ISSUE_TYPE
|
|
34949
|
+
|
|
34469
34950
|
"""
|
|
34470
34951
|
Iteration
|
|
34471
34952
|
"""
|
|
@@ -37769,6 +38250,26 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
37769
38250
|
viewerSubscription: SubscriptionState
|
|
37770
38251
|
}
|
|
37771
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
|
+
|
|
37772
38273
|
"""
|
|
37773
38274
|
The possible methods for updating a pull request's head branch with the base branch.
|
|
37774
38275
|
"""
|
|
@@ -38122,7 +38623,13 @@ type PullRequestParameters {
|
|
|
38122
38623
|
Array of allowed merge methods. Allowed values include `merge`, `squash`, and
|
|
38123
38624
|
`rebase`. At least one option must be enabled.
|
|
38124
38625
|
"""
|
|
38125
|
-
allowedMergeMethods: [
|
|
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!
|
|
38126
38633
|
|
|
38127
38634
|
"""
|
|
38128
38635
|
New, reviewable commits pushed will dismiss previous pull request review approvals.
|
|
@@ -38158,7 +38665,13 @@ input PullRequestParametersInput {
|
|
|
38158
38665
|
Array of allowed merge methods. Allowed values include `merge`, `squash`, and
|
|
38159
38666
|
`rebase`. At least one option must be enabled.
|
|
38160
38667
|
"""
|
|
38161
|
-
allowedMergeMethods: [
|
|
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
|
|
38162
38675
|
|
|
38163
38676
|
"""
|
|
38164
38677
|
New, reviewable commits pushed will dismiss previous pull request review approvals.
|
|
@@ -39363,7 +39876,7 @@ type PullRequestTimelineItemEdge {
|
|
|
39363
39876
|
"""
|
|
39364
39877
|
An item in a pull request timeline
|
|
39365
39878
|
"""
|
|
39366
|
-
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
|
|
39367
39880
|
|
|
39368
39881
|
"""
|
|
39369
39882
|
The connection type for PullRequestTimelineItems.
|
|
@@ -39559,6 +40072,21 @@ enum PullRequestTimelineItemsItemType {
|
|
|
39559
40072
|
"""
|
|
39560
40073
|
ISSUE_COMMENT
|
|
39561
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
|
+
|
|
39562
40090
|
"""
|
|
39563
40091
|
Represents a 'labeled' event on a given issue or pull request.
|
|
39564
40092
|
"""
|
|
@@ -45528,6 +46056,46 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
45528
46056
|
"""
|
|
45529
46057
|
issueTemplates: [IssueTemplate!]
|
|
45530
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
|
+
|
|
45531
46099
|
"""
|
|
45532
46100
|
A list of issues that have been opened in the repository.
|
|
45533
46101
|
"""
|
|
@@ -48038,7 +48606,8 @@ enum RepositoryRuleType {
|
|
|
48038
48606
|
FILE_EXTENSION_RESTRICTION
|
|
48039
48607
|
|
|
48040
48608
|
"""
|
|
48041
|
-
Prevent commits that include changes in specified file paths from
|
|
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.
|
|
48042
48611
|
"""
|
|
48043
48612
|
FILE_PATH_RESTRICTION
|
|
48044
48613
|
|
|
@@ -48048,12 +48617,12 @@ enum RepositoryRuleType {
|
|
|
48048
48617
|
LOCK_BRANCH
|
|
48049
48618
|
|
|
48050
48619
|
"""
|
|
48051
|
-
Prevent commits that include file paths that exceed
|
|
48620
|
+
Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit graph.
|
|
48052
48621
|
"""
|
|
48053
48622
|
MAX_FILE_PATH_LENGTH
|
|
48054
48623
|
|
|
48055
48624
|
"""
|
|
48056
|
-
Prevent commits that exceed
|
|
48625
|
+
Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph.
|
|
48057
48626
|
"""
|
|
48058
48627
|
MAX_FILE_SIZE
|
|
48059
48628
|
|
|
@@ -59821,6 +60390,11 @@ input UpdateIssueInput {
|
|
|
59821
60390
|
"""
|
|
59822
60391
|
id: ID!
|
|
59823
60392
|
|
|
60393
|
+
"""
|
|
60394
|
+
The ID of the Issue Type for this issue.
|
|
60395
|
+
"""
|
|
60396
|
+
issueTypeId: ID
|
|
60397
|
+
|
|
59824
60398
|
"""
|
|
59825
60399
|
An array of Node IDs of labels for this issue.
|
|
59826
60400
|
"""
|
|
@@ -59847,6 +60421,41 @@ input UpdateIssueInput {
|
|
|
59847
60421
|
title: String
|
|
59848
60422
|
}
|
|
59849
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
|
+
|
|
59850
60459
|
"""
|
|
59851
60460
|
Autogenerated return type of UpdateIssue.
|
|
59852
60461
|
"""
|
|
@@ -59867,6 +60476,65 @@ type UpdateIssuePayload {
|
|
|
59867
60476
|
issue: Issue
|
|
59868
60477
|
}
|
|
59869
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
|
+
|
|
59870
60538
|
"""
|
|
59871
60539
|
Autogenerated input type of UpdateLabel
|
|
59872
60540
|
"""
|