github-schema 1.17.0 → 1.17.1
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 +140 -18
- package/dist/github-schema.d.ts +140 -18
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/github-schema.graphql +346 -19
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -243,6 +243,46 @@ interface Actor {
|
|
|
243
243
|
url: URI!
|
|
244
244
|
}
|
|
245
245
|
|
|
246
|
+
"""
|
|
247
|
+
The connection type for Actor.
|
|
248
|
+
"""
|
|
249
|
+
type ActorConnection {
|
|
250
|
+
"""
|
|
251
|
+
A list of edges.
|
|
252
|
+
"""
|
|
253
|
+
edges: [ActorEdge]
|
|
254
|
+
|
|
255
|
+
"""
|
|
256
|
+
A list of nodes.
|
|
257
|
+
"""
|
|
258
|
+
nodes: [Actor]
|
|
259
|
+
|
|
260
|
+
"""
|
|
261
|
+
Information to aid in pagination.
|
|
262
|
+
"""
|
|
263
|
+
pageInfo: PageInfo!
|
|
264
|
+
|
|
265
|
+
"""
|
|
266
|
+
Identifies the total count of items in the connection.
|
|
267
|
+
"""
|
|
268
|
+
totalCount: Int!
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
"""
|
|
272
|
+
An edge in a connection.
|
|
273
|
+
"""
|
|
274
|
+
type ActorEdge {
|
|
275
|
+
"""
|
|
276
|
+
A cursor for use in pagination.
|
|
277
|
+
"""
|
|
278
|
+
cursor: String!
|
|
279
|
+
|
|
280
|
+
"""
|
|
281
|
+
The item at the end of the edge.
|
|
282
|
+
"""
|
|
283
|
+
node: Actor
|
|
284
|
+
}
|
|
285
|
+
|
|
246
286
|
"""
|
|
247
287
|
Location information for an actor
|
|
248
288
|
"""
|
|
@@ -1513,6 +1553,31 @@ type ArchiveRepositoryPayload {
|
|
|
1513
1553
|
An object that can have users assigned to it.
|
|
1514
1554
|
"""
|
|
1515
1555
|
interface Assignable {
|
|
1556
|
+
"""
|
|
1557
|
+
A list of actors assigned to this object.
|
|
1558
|
+
"""
|
|
1559
|
+
assignedActors(
|
|
1560
|
+
"""
|
|
1561
|
+
Returns the elements in the list that come after the specified cursor.
|
|
1562
|
+
"""
|
|
1563
|
+
after: String
|
|
1564
|
+
|
|
1565
|
+
"""
|
|
1566
|
+
Returns the elements in the list that come before the specified cursor.
|
|
1567
|
+
"""
|
|
1568
|
+
before: String
|
|
1569
|
+
|
|
1570
|
+
"""
|
|
1571
|
+
Returns the first _n_ elements from the list.
|
|
1572
|
+
"""
|
|
1573
|
+
first: Int
|
|
1574
|
+
|
|
1575
|
+
"""
|
|
1576
|
+
Returns the last _n_ elements from the list.
|
|
1577
|
+
"""
|
|
1578
|
+
last: Int
|
|
1579
|
+
): AssigneeConnection!
|
|
1580
|
+
|
|
1516
1581
|
"""
|
|
1517
1582
|
A list of Users assigned to this object.
|
|
1518
1583
|
"""
|
|
@@ -1537,6 +1602,36 @@ interface Assignable {
|
|
|
1537
1602
|
"""
|
|
1538
1603
|
last: Int
|
|
1539
1604
|
): UserConnection!
|
|
1605
|
+
|
|
1606
|
+
"""
|
|
1607
|
+
A list of suggested actors to assign to this object
|
|
1608
|
+
"""
|
|
1609
|
+
suggestedActors(
|
|
1610
|
+
"""
|
|
1611
|
+
Returns the elements in the list that come after the specified cursor.
|
|
1612
|
+
"""
|
|
1613
|
+
after: String
|
|
1614
|
+
|
|
1615
|
+
"""
|
|
1616
|
+
Returns the elements in the list that come before the specified cursor.
|
|
1617
|
+
"""
|
|
1618
|
+
before: String
|
|
1619
|
+
|
|
1620
|
+
"""
|
|
1621
|
+
Returns the first _n_ elements from the list.
|
|
1622
|
+
"""
|
|
1623
|
+
first: Int
|
|
1624
|
+
|
|
1625
|
+
"""
|
|
1626
|
+
Returns the last _n_ elements from the list.
|
|
1627
|
+
"""
|
|
1628
|
+
last: Int
|
|
1629
|
+
|
|
1630
|
+
"""
|
|
1631
|
+
If provided, searches users by login or profile name
|
|
1632
|
+
"""
|
|
1633
|
+
query: String
|
|
1634
|
+
): AssigneeConnection!
|
|
1540
1635
|
}
|
|
1541
1636
|
|
|
1542
1637
|
"""
|
|
@@ -1579,6 +1674,46 @@ Types that can be assigned to issues.
|
|
|
1579
1674
|
"""
|
|
1580
1675
|
union Assignee = Bot | Mannequin | Organization | User
|
|
1581
1676
|
|
|
1677
|
+
"""
|
|
1678
|
+
The connection type for Assignee.
|
|
1679
|
+
"""
|
|
1680
|
+
type AssigneeConnection {
|
|
1681
|
+
"""
|
|
1682
|
+
A list of edges.
|
|
1683
|
+
"""
|
|
1684
|
+
edges: [AssigneeEdge]
|
|
1685
|
+
|
|
1686
|
+
"""
|
|
1687
|
+
A list of nodes.
|
|
1688
|
+
"""
|
|
1689
|
+
nodes: [Assignee]
|
|
1690
|
+
|
|
1691
|
+
"""
|
|
1692
|
+
Information to aid in pagination.
|
|
1693
|
+
"""
|
|
1694
|
+
pageInfo: PageInfo!
|
|
1695
|
+
|
|
1696
|
+
"""
|
|
1697
|
+
Identifies the total count of items in the connection.
|
|
1698
|
+
"""
|
|
1699
|
+
totalCount: Int!
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
"""
|
|
1703
|
+
An edge in a connection.
|
|
1704
|
+
"""
|
|
1705
|
+
type AssigneeEdge {
|
|
1706
|
+
"""
|
|
1707
|
+
A cursor for use in pagination.
|
|
1708
|
+
"""
|
|
1709
|
+
cursor: String!
|
|
1710
|
+
|
|
1711
|
+
"""
|
|
1712
|
+
The item at the end of the edge.
|
|
1713
|
+
"""
|
|
1714
|
+
node: Assignee
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1582
1717
|
"""
|
|
1583
1718
|
An entry in the audit log.
|
|
1584
1719
|
"""
|
|
@@ -7630,7 +7765,7 @@ Autogenerated input type of CreateIssue
|
|
|
7630
7765
|
"""
|
|
7631
7766
|
input CreateIssueInput {
|
|
7632
7767
|
"""
|
|
7633
|
-
The Node ID
|
|
7768
|
+
The Node ID of assignees for this issue.
|
|
7634
7769
|
"""
|
|
7635
7770
|
assigneeIds: [ID!]
|
|
7636
7771
|
|
|
@@ -7724,15 +7859,6 @@ input CreateIssueTypeInput {
|
|
|
7724
7859
|
"""
|
|
7725
7860
|
isEnabled: Boolean!
|
|
7726
7861
|
|
|
7727
|
-
"""
|
|
7728
|
-
Whether or not the issue type is restricted to issues in private repositories
|
|
7729
|
-
|
|
7730
|
-
**Upcoming Change on 2025-04-01 UTC**
|
|
7731
|
-
**Description:** `isPrivate` will be removed.
|
|
7732
|
-
**Reason:** Private issue types are being deprecated and can no longer be created.
|
|
7733
|
-
"""
|
|
7734
|
-
isPrivate: Boolean
|
|
7735
|
-
|
|
7736
7862
|
"""
|
|
7737
7863
|
Name of the new issue type
|
|
7738
7864
|
"""
|
|
@@ -18295,6 +18421,31 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
|
|
|
18295
18421
|
"""
|
|
18296
18422
|
activeLockReason: LockReason
|
|
18297
18423
|
|
|
18424
|
+
"""
|
|
18425
|
+
A list of actors assigned to this object.
|
|
18426
|
+
"""
|
|
18427
|
+
assignedActors(
|
|
18428
|
+
"""
|
|
18429
|
+
Returns the elements in the list that come after the specified cursor.
|
|
18430
|
+
"""
|
|
18431
|
+
after: String
|
|
18432
|
+
|
|
18433
|
+
"""
|
|
18434
|
+
Returns the elements in the list that come before the specified cursor.
|
|
18435
|
+
"""
|
|
18436
|
+
before: String
|
|
18437
|
+
|
|
18438
|
+
"""
|
|
18439
|
+
Returns the first _n_ elements from the list.
|
|
18440
|
+
"""
|
|
18441
|
+
first: Int
|
|
18442
|
+
|
|
18443
|
+
"""
|
|
18444
|
+
Returns the last _n_ elements from the list.
|
|
18445
|
+
"""
|
|
18446
|
+
last: Int
|
|
18447
|
+
): AssigneeConnection!
|
|
18448
|
+
|
|
18298
18449
|
"""
|
|
18299
18450
|
A list of Users assigned to this object.
|
|
18300
18451
|
"""
|
|
@@ -18810,6 +18961,36 @@ type Issue implements Assignable & Closable & Comment & Deletable & Labelable &
|
|
|
18810
18961
|
"""
|
|
18811
18962
|
subIssuesSummary: SubIssuesSummary!
|
|
18812
18963
|
|
|
18964
|
+
"""
|
|
18965
|
+
A list of suggested actors to assign to this object
|
|
18966
|
+
"""
|
|
18967
|
+
suggestedActors(
|
|
18968
|
+
"""
|
|
18969
|
+
Returns the elements in the list that come after the specified cursor.
|
|
18970
|
+
"""
|
|
18971
|
+
after: String
|
|
18972
|
+
|
|
18973
|
+
"""
|
|
18974
|
+
Returns the elements in the list that come before the specified cursor.
|
|
18975
|
+
"""
|
|
18976
|
+
before: String
|
|
18977
|
+
|
|
18978
|
+
"""
|
|
18979
|
+
Returns the first _n_ elements from the list.
|
|
18980
|
+
"""
|
|
18981
|
+
first: Int
|
|
18982
|
+
|
|
18983
|
+
"""
|
|
18984
|
+
Returns the last _n_ elements from the list.
|
|
18985
|
+
"""
|
|
18986
|
+
last: Int
|
|
18987
|
+
|
|
18988
|
+
"""
|
|
18989
|
+
If provided, searches users by login or profile name
|
|
18990
|
+
"""
|
|
18991
|
+
query: String
|
|
18992
|
+
): AssigneeConnection!
|
|
18993
|
+
|
|
18813
18994
|
"""
|
|
18814
18995
|
A list of events, comments, commits, etc. associated with the issue.
|
|
18815
18996
|
"""
|
|
@@ -25022,6 +25203,16 @@ type Mutation {
|
|
|
25022
25203
|
input: ReorderEnvironmentInput!
|
|
25023
25204
|
): ReorderEnvironmentPayload
|
|
25024
25205
|
|
|
25206
|
+
"""
|
|
25207
|
+
Replaces all actors for assignable object.
|
|
25208
|
+
"""
|
|
25209
|
+
replaceActorsForAssignable(
|
|
25210
|
+
"""
|
|
25211
|
+
Parameters for ReplaceActorsForAssignable
|
|
25212
|
+
"""
|
|
25213
|
+
input: ReplaceActorsForAssignableInput!
|
|
25214
|
+
): ReplaceActorsForAssignablePayload
|
|
25215
|
+
|
|
25025
25216
|
"""
|
|
25026
25217
|
Reprioritizes a sub-issue to a different position in the parent list.
|
|
25027
25218
|
"""
|
|
@@ -37170,6 +37361,31 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
37170
37361
|
"""
|
|
37171
37362
|
additions: Int!
|
|
37172
37363
|
|
|
37364
|
+
"""
|
|
37365
|
+
A list of actors assigned to this object.
|
|
37366
|
+
"""
|
|
37367
|
+
assignedActors(
|
|
37368
|
+
"""
|
|
37369
|
+
Returns the elements in the list that come after the specified cursor.
|
|
37370
|
+
"""
|
|
37371
|
+
after: String
|
|
37372
|
+
|
|
37373
|
+
"""
|
|
37374
|
+
Returns the elements in the list that come before the specified cursor.
|
|
37375
|
+
"""
|
|
37376
|
+
before: String
|
|
37377
|
+
|
|
37378
|
+
"""
|
|
37379
|
+
Returns the first _n_ elements from the list.
|
|
37380
|
+
"""
|
|
37381
|
+
first: Int
|
|
37382
|
+
|
|
37383
|
+
"""
|
|
37384
|
+
Returns the last _n_ elements from the list.
|
|
37385
|
+
"""
|
|
37386
|
+
last: Int
|
|
37387
|
+
): AssigneeConnection!
|
|
37388
|
+
|
|
37173
37389
|
"""
|
|
37174
37390
|
A list of Users assigned to this object.
|
|
37175
37391
|
"""
|
|
@@ -37953,6 +38169,36 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
37953
38169
|
"""
|
|
37954
38170
|
statusCheckRollup: StatusCheckRollup
|
|
37955
38171
|
|
|
38172
|
+
"""
|
|
38173
|
+
A list of suggested actors to assign to this object
|
|
38174
|
+
"""
|
|
38175
|
+
suggestedActors(
|
|
38176
|
+
"""
|
|
38177
|
+
Returns the elements in the list that come after the specified cursor.
|
|
38178
|
+
"""
|
|
38179
|
+
after: String
|
|
38180
|
+
|
|
38181
|
+
"""
|
|
38182
|
+
Returns the elements in the list that come before the specified cursor.
|
|
38183
|
+
"""
|
|
38184
|
+
before: String
|
|
38185
|
+
|
|
38186
|
+
"""
|
|
38187
|
+
Returns the first _n_ elements from the list.
|
|
38188
|
+
"""
|
|
38189
|
+
first: Int
|
|
38190
|
+
|
|
38191
|
+
"""
|
|
38192
|
+
Returns the last _n_ elements from the list.
|
|
38193
|
+
"""
|
|
38194
|
+
last: Int
|
|
38195
|
+
|
|
38196
|
+
"""
|
|
38197
|
+
If provided, searches users by login or profile name
|
|
38198
|
+
"""
|
|
38199
|
+
query: String
|
|
38200
|
+
): AssigneeConnection!
|
|
38201
|
+
|
|
37956
38202
|
"""
|
|
37957
38203
|
A list of reviewer suggestions based on commit history and past review comments.
|
|
37958
38204
|
"""
|
|
@@ -42907,6 +43153,41 @@ type ReorderEnvironmentPayload {
|
|
|
42907
43153
|
environment: Environment
|
|
42908
43154
|
}
|
|
42909
43155
|
|
|
43156
|
+
"""
|
|
43157
|
+
Autogenerated input type of ReplaceActorsForAssignable
|
|
43158
|
+
"""
|
|
43159
|
+
input ReplaceActorsForAssignableInput {
|
|
43160
|
+
"""
|
|
43161
|
+
The ids of the actors to replace the existing assignees.
|
|
43162
|
+
"""
|
|
43163
|
+
actorIds: [ID!]!
|
|
43164
|
+
|
|
43165
|
+
"""
|
|
43166
|
+
The id of the assignable object to replace the assignees for.
|
|
43167
|
+
"""
|
|
43168
|
+
assignableId: ID!
|
|
43169
|
+
|
|
43170
|
+
"""
|
|
43171
|
+
A unique identifier for the client performing the mutation.
|
|
43172
|
+
"""
|
|
43173
|
+
clientMutationId: String
|
|
43174
|
+
}
|
|
43175
|
+
|
|
43176
|
+
"""
|
|
43177
|
+
Autogenerated return type of ReplaceActorsForAssignable.
|
|
43178
|
+
"""
|
|
43179
|
+
type ReplaceActorsForAssignablePayload {
|
|
43180
|
+
"""
|
|
43181
|
+
The item that was assigned.
|
|
43182
|
+
"""
|
|
43183
|
+
assignable: Assignable
|
|
43184
|
+
|
|
43185
|
+
"""
|
|
43186
|
+
A unique identifier for the client performing the mutation.
|
|
43187
|
+
"""
|
|
43188
|
+
clientMutationId: String
|
|
43189
|
+
}
|
|
43190
|
+
|
|
42910
43191
|
"""
|
|
42911
43192
|
Audit log entry for a repo.access event.
|
|
42912
43193
|
"""
|
|
@@ -46941,6 +47222,46 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
46941
47222
|
last: Int
|
|
46942
47223
|
): SubmoduleConnection!
|
|
46943
47224
|
|
|
47225
|
+
"""
|
|
47226
|
+
A list of suggested actors that can be attributed to content in this repository.
|
|
47227
|
+
"""
|
|
47228
|
+
suggestedActors(
|
|
47229
|
+
"""
|
|
47230
|
+
Returns the elements in the list that come after the specified cursor.
|
|
47231
|
+
"""
|
|
47232
|
+
after: String
|
|
47233
|
+
|
|
47234
|
+
"""
|
|
47235
|
+
Returns the elements in the list that come before the specified cursor.
|
|
47236
|
+
"""
|
|
47237
|
+
before: String
|
|
47238
|
+
|
|
47239
|
+
"""
|
|
47240
|
+
A list of capabilities to filter actors by.
|
|
47241
|
+
"""
|
|
47242
|
+
capabilities: [RepositorySuggestedActorFilter!]!
|
|
47243
|
+
|
|
47244
|
+
"""
|
|
47245
|
+
Returns the first _n_ elements from the list.
|
|
47246
|
+
"""
|
|
47247
|
+
first: Int
|
|
47248
|
+
|
|
47249
|
+
"""
|
|
47250
|
+
Returns the last _n_ elements from the list.
|
|
47251
|
+
"""
|
|
47252
|
+
last: Int
|
|
47253
|
+
|
|
47254
|
+
"""
|
|
47255
|
+
A comma separated list of login names to filter actors by. Only the first 10 logins will be used.
|
|
47256
|
+
"""
|
|
47257
|
+
loginNames: String
|
|
47258
|
+
|
|
47259
|
+
"""
|
|
47260
|
+
Search actors with query on user name and login.
|
|
47261
|
+
"""
|
|
47262
|
+
query: String
|
|
47263
|
+
): ActorConnection!
|
|
47264
|
+
|
|
46944
47265
|
"""
|
|
46945
47266
|
Temporary authentication token for cloning this repository.
|
|
46946
47267
|
"""
|
|
@@ -48965,6 +49286,21 @@ enum RepositoryRulesetTarget {
|
|
|
48965
49286
|
TAG
|
|
48966
49287
|
}
|
|
48967
49288
|
|
|
49289
|
+
"""
|
|
49290
|
+
The possible filters for suggested actors in a repository
|
|
49291
|
+
"""
|
|
49292
|
+
enum RepositorySuggestedActorFilter {
|
|
49293
|
+
"""
|
|
49294
|
+
Actors that can be assigned to issues and pull requests
|
|
49295
|
+
"""
|
|
49296
|
+
CAN_BE_ASSIGNED
|
|
49297
|
+
|
|
49298
|
+
"""
|
|
49299
|
+
Actors that can be the author of issues and pull requests
|
|
49300
|
+
"""
|
|
49301
|
+
CAN_BE_AUTHOR
|
|
49302
|
+
}
|
|
49303
|
+
|
|
48968
49304
|
"""
|
|
48969
49305
|
A repository-topic connects a repository to a topic.
|
|
48970
49306
|
"""
|
|
@@ -60438,15 +60774,6 @@ input UpdateIssueTypeInput {
|
|
|
60438
60774
|
"""
|
|
60439
60775
|
isEnabled: Boolean
|
|
60440
60776
|
|
|
60441
|
-
"""
|
|
60442
|
-
Whether or not the issue type is restricted to issues in private repositories
|
|
60443
|
-
|
|
60444
|
-
**Upcoming Change on 2025-04-01 UTC**
|
|
60445
|
-
**Description:** `isPrivate` will be removed.
|
|
60446
|
-
**Reason:** Private issue types are being deprecated and can no longer be created.
|
|
60447
|
-
"""
|
|
60448
|
-
isPrivate: Boolean
|
|
60449
|
-
|
|
60450
60777
|
"""
|
|
60451
60778
|
The ID of the issue type to update
|
|
60452
60779
|
"""
|