github-schema 1.22.6 → 1.22.7
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 +20 -1
- package/dist/github-schema.d.mts +20 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/github-schema.graphql +45 -0
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -332,6 +332,11 @@ enum ActorType {
|
|
|
332
332
|
Autogenerated input type of AddAssigneesToAssignable
|
|
333
333
|
"""
|
|
334
334
|
input AddAssigneesToAssignableInput {
|
|
335
|
+
"""
|
|
336
|
+
Configuration for assigning Copilot to this issue.
|
|
337
|
+
"""
|
|
338
|
+
agentAssignment: AgentAssignmentInput
|
|
339
|
+
|
|
335
340
|
"""
|
|
336
341
|
The id of the assignable object to add assignees to.
|
|
337
342
|
"""
|
|
@@ -1364,6 +1369,31 @@ type AddedToProjectV2Event implements Node & ProjectV2Event {
|
|
|
1364
1369
|
wasAutomated: Boolean!
|
|
1365
1370
|
}
|
|
1366
1371
|
|
|
1372
|
+
"""
|
|
1373
|
+
Represents configuration for assigning Copilot to an issue (public variant)
|
|
1374
|
+
"""
|
|
1375
|
+
input AgentAssignmentInput {
|
|
1376
|
+
"""
|
|
1377
|
+
The base ref/branch for the repository. Defaults to the default branch if not provided.
|
|
1378
|
+
"""
|
|
1379
|
+
baseRef: String
|
|
1380
|
+
|
|
1381
|
+
"""
|
|
1382
|
+
Custom agent for Copilot.
|
|
1383
|
+
"""
|
|
1384
|
+
customAgent: String
|
|
1385
|
+
|
|
1386
|
+
"""
|
|
1387
|
+
Custom instructions for Copilot.
|
|
1388
|
+
"""
|
|
1389
|
+
customInstructions: String
|
|
1390
|
+
|
|
1391
|
+
"""
|
|
1392
|
+
The Node ID of the target repository where Copilot should work. Defaults to the issue's repository if not provided.
|
|
1393
|
+
"""
|
|
1394
|
+
targetRepositoryId: ID
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1367
1397
|
"""
|
|
1368
1398
|
Copilot Agentic fields in context of the current viewer.
|
|
1369
1399
|
"""
|
|
@@ -8029,6 +8059,11 @@ type CreateIpAllowListEntryPayload {
|
|
|
8029
8059
|
Autogenerated input type of CreateIssue
|
|
8030
8060
|
"""
|
|
8031
8061
|
input CreateIssueInput {
|
|
8062
|
+
"""
|
|
8063
|
+
Configuration for assigning Copilot to this issue.
|
|
8064
|
+
"""
|
|
8065
|
+
agentAssignment: AgentAssignmentInput
|
|
8066
|
+
|
|
8032
8067
|
"""
|
|
8033
8068
|
The Node ID of assignees for this issue.
|
|
8034
8069
|
"""
|
|
@@ -44070,6 +44105,11 @@ input ReplaceActorsForAssignableInput {
|
|
|
44070
44105
|
"""
|
|
44071
44106
|
actorLogins: [String!]
|
|
44072
44107
|
|
|
44108
|
+
"""
|
|
44109
|
+
Configuration for assigning an AI agent to this issue.
|
|
44110
|
+
"""
|
|
44111
|
+
agentAssignment: AgentAssignmentInput
|
|
44112
|
+
|
|
44073
44113
|
"""
|
|
44074
44114
|
The id of the assignable object to replace the assignees for.
|
|
44075
44115
|
"""
|
|
@@ -61358,6 +61398,11 @@ type UpdateIssueCommentPayload {
|
|
|
61358
61398
|
Autogenerated input type of UpdateIssue
|
|
61359
61399
|
"""
|
|
61360
61400
|
input UpdateIssueInput {
|
|
61401
|
+
"""
|
|
61402
|
+
Configuration for assigning an AI agent to this issue.
|
|
61403
|
+
"""
|
|
61404
|
+
agentAssignment: AgentAssignmentInput
|
|
61405
|
+
|
|
61361
61406
|
"""
|
|
61362
61407
|
An array of Node IDs of users or bots for this issue.
|
|
61363
61408
|
"""
|