github-schema 1.22.5 → 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.
@@ -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
  """
@@ -14906,6 +14941,11 @@ type EnterpriseOwnerInfo {
14906
14941
  """
14907
14942
  ipAllowListForInstalledAppsEnabledSetting: IpAllowListForInstalledAppsEnabledSettingValue!
14908
14943
 
14944
+ """
14945
+ The setting value for whether the enterprise has IP allow list user-level enforcement enabled.
14946
+ """
14947
+ ipAllowListUserLevelEnforcementEnabledSetting: IpAllowListUserLevelEnforcementEnabledSettingValue!
14948
+
14909
14949
  """
14910
14950
  Whether or not the base repository permission is currently being updated.
14911
14951
  """
@@ -18688,6 +18728,21 @@ Types that can own an IP allow list.
18688
18728
  """
18689
18729
  union IpAllowListOwner = App | Enterprise | Organization
18690
18730
 
18731
+ """
18732
+ The possible values for the IP allow list user-level enforcement enabled setting.
18733
+ """
18734
+ enum IpAllowListUserLevelEnforcementEnabledSettingValue {
18735
+ """
18736
+ The setting is disabled for the owner.
18737
+ """
18738
+ DISABLED
18739
+
18740
+ """
18741
+ The setting is enabled for the owner.
18742
+ """
18743
+ ENABLED
18744
+ }
18745
+
18691
18746
  """
18692
18747
  An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project.
18693
18748
  """
@@ -26327,6 +26382,16 @@ type Mutation {
26327
26382
  input: UpdateIpAllowListForInstalledAppsEnabledSettingInput!
26328
26383
  ): UpdateIpAllowListForInstalledAppsEnabledSettingPayload
26329
26384
 
26385
+ """
26386
+ Sets whether IP allow list user-level enforcement is enabled on an enterprise.
26387
+ """
26388
+ updateIpAllowListUserLevelEnforcementEnabledSetting(
26389
+ """
26390
+ Parameters for UpdateIpAllowListUserLevelEnforcementEnabledSetting
26391
+ """
26392
+ input: UpdateIpAllowListUserLevelEnforcementEnabledSettingInput!
26393
+ ): UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload
26394
+
26330
26395
  """
26331
26396
  Updates an Issue.
26332
26397
  """
@@ -44040,6 +44105,11 @@ input ReplaceActorsForAssignableInput {
44040
44105
  """
44041
44106
  actorLogins: [String!]
44042
44107
 
44108
+ """
44109
+ Configuration for assigning an AI agent to this issue.
44110
+ """
44111
+ agentAssignment: AgentAssignmentInput
44112
+
44043
44113
  """
44044
44114
  The id of the assignable object to replace the assignees for.
44045
44115
  """
@@ -61254,6 +61324,41 @@ type UpdateIpAllowListForInstalledAppsEnabledSettingPayload {
61254
61324
  owner: IpAllowListOwner
61255
61325
  }
61256
61326
 
61327
+ """
61328
+ Autogenerated input type of UpdateIpAllowListUserLevelEnforcementEnabledSetting
61329
+ """
61330
+ input UpdateIpAllowListUserLevelEnforcementEnabledSettingInput {
61331
+ """
61332
+ A unique identifier for the client performing the mutation.
61333
+ """
61334
+ clientMutationId: String
61335
+
61336
+ """
61337
+ The ID of the owner.
61338
+ """
61339
+ ownerId: ID!
61340
+
61341
+ """
61342
+ The value for the IP allow list user-level enforcement enabled setting.
61343
+ """
61344
+ settingValue: IpAllowListUserLevelEnforcementEnabledSettingValue!
61345
+ }
61346
+
61347
+ """
61348
+ Autogenerated return type of UpdateIpAllowListUserLevelEnforcementEnabledSetting.
61349
+ """
61350
+ type UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload {
61351
+ """
61352
+ A unique identifier for the client performing the mutation.
61353
+ """
61354
+ clientMutationId: String
61355
+
61356
+ """
61357
+ The IP allow list owner on which the setting was updated.
61358
+ """
61359
+ owner: IpAllowListOwner
61360
+ }
61361
+
61257
61362
  """
61258
61363
  Autogenerated input type of UpdateIssueComment
61259
61364
  """
@@ -61293,6 +61398,11 @@ type UpdateIssueCommentPayload {
61293
61398
  Autogenerated input type of UpdateIssue
61294
61399
  """
61295
61400
  input UpdateIssueInput {
61401
+ """
61402
+ Configuration for assigning an AI agent to this issue.
61403
+ """
61404
+ agentAssignment: AgentAssignmentInput
61405
+
61296
61406
  """
61297
61407
  An array of Node IDs of users or bots for this issue.
61298
61408
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.5",
3
+ "version": "1.22.7",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {