github-schema 1.7.9 → 1.7.10

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.
@@ -7005,6 +7005,141 @@ type CreateCommitOnBranchPayload {
7005
7005
  ref: Ref
7006
7006
  }
7007
7007
 
7008
+ """
7009
+ Autogenerated input type of CreateDeployment
7010
+ """
7011
+ input CreateDeploymentInput {
7012
+ """
7013
+ Attempt to automatically merge the default branch into the requested ref, defaults to true.
7014
+ """
7015
+ autoMerge: Boolean = true
7016
+
7017
+ """
7018
+ A unique identifier for the client performing the mutation.
7019
+ """
7020
+ clientMutationId: String
7021
+
7022
+ """
7023
+ Short description of the deployment.
7024
+ """
7025
+ description: String = ""
7026
+
7027
+ """
7028
+ Name for the target deployment environment.
7029
+ """
7030
+ environment: String = "production"
7031
+
7032
+ """
7033
+ JSON payload with extra information about the deployment.
7034
+ """
7035
+ payload: String = "{}"
7036
+
7037
+ """
7038
+ The node ID of the ref to be deployed.
7039
+ """
7040
+ refId: ID!
7041
+
7042
+ """
7043
+ The node ID of the repository.
7044
+ """
7045
+ repositoryId: ID!
7046
+
7047
+ """
7048
+ The status contexts to verify against commit status checks. To bypass required
7049
+ contexts, pass an empty array. Defaults to all unique contexts.
7050
+ """
7051
+ requiredContexts: [String!]
7052
+
7053
+ """
7054
+ Specifies a task to execute.
7055
+ """
7056
+ task: String = "deploy"
7057
+ }
7058
+
7059
+ """
7060
+ Autogenerated return type of CreateDeployment
7061
+ """
7062
+ type CreateDeploymentPayload {
7063
+ """
7064
+ True if the default branch has been auto-merged into the deployment ref.
7065
+ """
7066
+ autoMerged: Boolean
7067
+
7068
+ """
7069
+ A unique identifier for the client performing the mutation.
7070
+ """
7071
+ clientMutationId: String
7072
+
7073
+ """
7074
+ The new deployment.
7075
+ """
7076
+ deployment: Deployment
7077
+ }
7078
+
7079
+ """
7080
+ Autogenerated input type of CreateDeploymentStatus
7081
+ """
7082
+ input CreateDeploymentStatusInput {
7083
+ """
7084
+ Adds a new inactive status to all non-transient, non-production environment
7085
+ deployments with the same repository and environment name as the created
7086
+ status's deployment.
7087
+ """
7088
+ autoInactive: Boolean = true
7089
+
7090
+ """
7091
+ A unique identifier for the client performing the mutation.
7092
+ """
7093
+ clientMutationId: String
7094
+
7095
+ """
7096
+ The node ID of the deployment.
7097
+ """
7098
+ deploymentId: ID!
7099
+
7100
+ """
7101
+ A short description of the status. Maximum length of 140 characters.
7102
+ """
7103
+ description: String = ""
7104
+
7105
+ """
7106
+ If provided, updates the environment of the deploy. Otherwise, does not modify the environment.
7107
+ """
7108
+ environment: String
7109
+
7110
+ """
7111
+ Sets the URL for accessing your environment.
7112
+ """
7113
+ environmentUrl: String = ""
7114
+
7115
+ """
7116
+ The log URL to associate with this status. This URL should contain
7117
+ output to keep the user updated while the task is running or serve as
7118
+ historical information for what happened in the deployment.
7119
+ """
7120
+ logUrl: String = ""
7121
+
7122
+ """
7123
+ The state of the deployment.
7124
+ """
7125
+ state: DeploymentStatusState!
7126
+ }
7127
+
7128
+ """
7129
+ Autogenerated return type of CreateDeploymentStatus
7130
+ """
7131
+ type CreateDeploymentStatusPayload {
7132
+ """
7133
+ A unique identifier for the client performing the mutation.
7134
+ """
7135
+ clientMutationId: String
7136
+
7137
+ """
7138
+ The new deployment status.
7139
+ """
7140
+ deploymentStatus: DeploymentStatus
7141
+ }
7142
+
7008
7143
  """
7009
7144
  Autogenerated input type of CreateDiscussion
7010
7145
  """
@@ -9627,6 +9762,81 @@ type DependabotUpdateError {
9627
9762
  title: String!
9628
9763
  }
9629
9764
 
9765
+ """
9766
+ A dependency manifest entry
9767
+ """
9768
+ type DependencyGraphDependency {
9769
+ """
9770
+ Does the dependency itself have dependencies?
9771
+ """
9772
+ hasDependencies: Boolean!
9773
+
9774
+ """
9775
+ The original name of the package, as it appears in the manifest.
9776
+ """
9777
+ packageLabel: String! @deprecated(reason: "`packageLabel` will be removed. Use normalized `packageName` field instead. Removal on 2022-10-01 UTC.")
9778
+
9779
+ """
9780
+ The dependency package manager
9781
+ """
9782
+ packageManager: String
9783
+
9784
+ """
9785
+ The name of the package in the canonical form used by the package manager.
9786
+ """
9787
+ packageName: String!
9788
+
9789
+ """
9790
+ The repository containing the package
9791
+ """
9792
+ repository: Repository
9793
+
9794
+ """
9795
+ The dependency version requirements
9796
+ """
9797
+ requirements: String!
9798
+ }
9799
+
9800
+ """
9801
+ The connection type for DependencyGraphDependency.
9802
+ """
9803
+ type DependencyGraphDependencyConnection {
9804
+ """
9805
+ A list of edges.
9806
+ """
9807
+ edges: [DependencyGraphDependencyEdge]
9808
+
9809
+ """
9810
+ A list of nodes.
9811
+ """
9812
+ nodes: [DependencyGraphDependency]
9813
+
9814
+ """
9815
+ Information to aid in pagination.
9816
+ """
9817
+ pageInfo: PageInfo!
9818
+
9819
+ """
9820
+ Identifies the total count of items in the connection.
9821
+ """
9822
+ totalCount: Int!
9823
+ }
9824
+
9825
+ """
9826
+ An edge in a connection.
9827
+ """
9828
+ type DependencyGraphDependencyEdge {
9829
+ """
9830
+ A cursor for use in pagination.
9831
+ """
9832
+ cursor: String!
9833
+
9834
+ """
9835
+ The item at the end of the edge.
9836
+ """
9837
+ node: DependencyGraphDependency
9838
+ }
9839
+
9630
9840
  """
9631
9841
  The possible ecosystems of a dependency graph package.
9632
9842
  """
@@ -9687,6 +9897,111 @@ enum DependencyGraphEcosystem {
9687
9897
  SWIFT
9688
9898
  }
9689
9899
 
9900
+ """
9901
+ Dependency manifest for a repository
9902
+ """
9903
+ type DependencyGraphManifest implements Node {
9904
+ """
9905
+ Path to view the manifest file blob
9906
+ """
9907
+ blobPath: String!
9908
+
9909
+ """
9910
+ A list of manifest dependencies
9911
+ """
9912
+ dependencies(
9913
+ """
9914
+ Returns the elements in the list that come after the specified cursor.
9915
+ """
9916
+ after: String
9917
+
9918
+ """
9919
+ Returns the elements in the list that come before the specified cursor.
9920
+ """
9921
+ before: String
9922
+
9923
+ """
9924
+ Returns the first _n_ elements from the list.
9925
+ """
9926
+ first: Int
9927
+
9928
+ """
9929
+ Returns the last _n_ elements from the list.
9930
+ """
9931
+ last: Int
9932
+ ): DependencyGraphDependencyConnection
9933
+
9934
+ """
9935
+ The number of dependencies listed in the manifest
9936
+ """
9937
+ dependenciesCount: Int
9938
+
9939
+ """
9940
+ Is the manifest too big to parse?
9941
+ """
9942
+ exceedsMaxSize: Boolean!
9943
+
9944
+ """
9945
+ Fully qualified manifest filename
9946
+ """
9947
+ filename: String!
9948
+
9949
+ """
9950
+ The Node ID of the DependencyGraphManifest object
9951
+ """
9952
+ id: ID!
9953
+
9954
+ """
9955
+ Were we able to parse the manifest?
9956
+ """
9957
+ parseable: Boolean!
9958
+
9959
+ """
9960
+ The repository containing the manifest
9961
+ """
9962
+ repository: Repository!
9963
+ }
9964
+
9965
+ """
9966
+ The connection type for DependencyGraphManifest.
9967
+ """
9968
+ type DependencyGraphManifestConnection {
9969
+ """
9970
+ A list of edges.
9971
+ """
9972
+ edges: [DependencyGraphManifestEdge]
9973
+
9974
+ """
9975
+ A list of nodes.
9976
+ """
9977
+ nodes: [DependencyGraphManifest]
9978
+
9979
+ """
9980
+ Information to aid in pagination.
9981
+ """
9982
+ pageInfo: PageInfo!
9983
+
9984
+ """
9985
+ Identifies the total count of items in the connection.
9986
+ """
9987
+ totalCount: Int!
9988
+ }
9989
+
9990
+ """
9991
+ An edge in a connection.
9992
+ """
9993
+ type DependencyGraphManifestEdge {
9994
+ """
9995
+ A cursor for use in pagination.
9996
+ """
9997
+ cursor: String!
9998
+
9999
+ """
10000
+ The item at the end of the edge.
10001
+ """
10002
+ node: DependencyGraphManifest
10003
+ }
10004
+
9690
10005
  """
9691
10006
  A repository deploy key.
9692
10007
  """
@@ -10446,6 +10761,11 @@ type DeploymentStatus implements Node {
10446
10761
  """
10447
10762
  description: String
10448
10763
 
10764
+ """
10765
+ Identifies the environment of the deployment at the time of this deployment status
10766
+ """
10767
+ environment: String
10768
+
10449
10769
  """
10450
10770
  Identifies the environment URL of the deployment.
10451
10771
  """
@@ -15423,6 +15743,50 @@ input FileDeletion {
15423
15743
  path: String!
15424
15744
  }
15425
15745
 
15746
+ """
15747
+ Prevent commits that include files with specified file extensions from being
15748
+ pushed to the commit graph. NOTE: This rule is in beta and subject to change
15749
+ """
15750
+ type FileExtensionRestrictionParameters {
15751
+ """
15752
+ The file extensions that are restricted from being pushed to the commit graph.
15753
+ """
15754
+ restrictedFileExtensions: [String!]!
15755
+ }
15756
+
15757
+ """
15758
+ Prevent commits that include files with specified file extensions from being
15759
+ pushed to the commit graph. NOTE: This rule is in beta and subject to change
15760
+ """
15761
+ input FileExtensionRestrictionParametersInput {
15762
+ """
15763
+ The file extensions that are restricted from being pushed to the commit graph.
15764
+ """
15765
+ restrictedFileExtensions: [String!]!
15766
+ }
15767
+
15768
+ """
15769
+ Prevent commits that include changes in specified file paths from being pushed
15770
+ to the commit graph. NOTE: This rule is in beta and subject to change
15771
+ """
15772
+ type FilePathRestrictionParameters {
15773
+ """
15774
+ The file paths that are restricted from being pushed to the commit graph.
15775
+ """
15776
+ restrictedFilePaths: [String!]!
15777
+ }
15778
+
15779
+ """
15780
+ Prevent commits that include changes in specified file paths from being pushed
15781
+ to the commit graph. NOTE: This rule is in beta and subject to change
15782
+ """
15783
+ input FilePathRestrictionParametersInput {
15784
+ """
15785
+ The file paths that are restricted from being pushed to the commit graph.
15786
+ """
15787
+ restrictedFilePaths: [String!]!
15788
+ }
15789
+
15426
15790
  """
15427
15791
  The possible viewed states of a file .
15428
15792
  """
@@ -16305,6 +16669,11 @@ A Git object ID.
16305
16669
  """
16306
16670
  scalar GitObjectID
16307
16671
 
16672
+ """
16673
+ A fully qualified reference name (e.g. `refs/heads/master`).
16674
+ """
16675
+ scalar GitRefname
16676
+
16308
16677
  """
16309
16678
  Git SSH string
16310
16679
  """
@@ -19987,6 +20356,50 @@ type MarketplaceListingEdge {
19987
20356
  node: MarketplaceListing
19988
20357
  }
19989
20358
 
20359
+ """
20360
+ Prevent commits that include file paths that exceed a specified character limit
20361
+ from being pushed to the commit graph. NOTE: This rule is in beta and subject to change
20362
+ """
20363
+ type MaxFilePathLengthParameters {
20364
+ """
20365
+ The maximum amount of characters allowed in file paths
20366
+ """
20367
+ maxFilePathLength: Int!
20368
+ }
20369
+
20370
+ """
20371
+ Prevent commits that include file paths that exceed a specified character limit
20372
+ from being pushed to the commit graph. NOTE: This rule is in beta and subject to change
20373
+ """
20374
+ input MaxFilePathLengthParametersInput {
20375
+ """
20376
+ The maximum amount of characters allowed in file paths
20377
+ """
20378
+ maxFilePathLength: Int!
20379
+ }
20380
+
20381
+ """
20382
+ Prevent commits that exceed a specified file size limit from being pushed to the
20383
+ commit. NOTE: This rule is in beta and subject to change
20384
+ """
20385
+ type MaxFileSizeParameters {
20386
+ """
20387
+ The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS).
20388
+ """
20389
+ maxFileSize: Int!
20390
+ }
20391
+
20392
+ """
20393
+ Prevent commits that exceed a specified file size limit from being pushed to the
20394
+ commit. NOTE: This rule is in beta and subject to change
20395
+ """
20396
+ input MaxFileSizeParametersInput {
20397
+ """
20398
+ The maximum file size allowed in megabytes. This limit does not apply to Git Large File Storage (Git LFS).
20399
+ """
20400
+ maxFileSize: Int!
20401
+ }
20402
+
19990
20403
  """
19991
20404
  Represents a member feature request notification
19992
20405
  """
@@ -22048,6 +22461,26 @@ type Mutation {
22048
22461
  input: CreateCommitOnBranchInput!
22049
22462
  ): CreateCommitOnBranchPayload
22050
22463
 
22464
+ """
22465
+ Creates a new deployment event.
22466
+ """
22467
+ createDeployment(
22468
+ """
22469
+ Parameters for CreateDeployment
22470
+ """
22471
+ input: CreateDeploymentInput!
22472
+ ): CreateDeploymentPayload
22473
+
22474
+ """
22475
+ Create a deployment status.
22476
+ """
22477
+ createDeploymentStatus(
22478
+ """
22479
+ Parameters for CreateDeploymentStatus
22480
+ """
22481
+ input: CreateDeploymentStatusInput!
22482
+ ): CreateDeploymentStatusPayload
22483
+
22051
22484
  """
22052
22485
  Create a discussion.
22053
22486
  """
@@ -23779,6 +24212,33 @@ type Mutation {
23779
24212
  input: UpdateRefInput!
23780
24213
  ): UpdateRefPayload
23781
24214
 
24215
+ """
24216
+ Creates, updates and/or deletes multiple refs in a repository.
24217
+
24218
+ This mutation takes a list of `RefUpdate`s and performs these updates
24219
+ on the repository. All updates are performed atomically, meaning that
24220
+ if one of them is rejected, no other ref will be modified.
24221
+
24222
+ `RefUpdate.beforeOid` specifies that the given reference needs to point
24223
+ to the given value before performing any updates. A value of
24224
+ `0000000000000000000000000000000000000000` can be used to verify that
24225
+ the references should not exist.
24226
+
24227
+ `RefUpdate.afterOid` specifies the value that the given reference
24228
+ will point to after performing all updates. A value of
24229
+ `0000000000000000000000000000000000000000` can be used to delete a
24230
+ reference.
24231
+
24232
+ If `RefUpdate.force` is set to `true`, a non-fast-forward updates
24233
+ for the given reference will be allowed.
24234
+ """
24235
+ updateRefs(
24236
+ """
24237
+ Parameters for UpdateRefs
24238
+ """
24239
+ input: UpdateRefsInput!
24240
+ ): UpdateRefsPayload
24241
+
23782
24242
  """
23783
24243
  Update information about a repository.
23784
24244
  """
@@ -38796,6 +39256,31 @@ enum RefOrderField {
38796
39256
  TAG_COMMIT_DATE
38797
39257
  }
38798
39258
 
39259
+ """
39260
+ A ref update
39261
+ """
39262
+ input RefUpdate {
39263
+ """
39264
+ The value this ref should be updated to.
39265
+ """
39266
+ afterOid: GitObjectID!
39267
+
39268
+ """
39269
+ The value this ref needs to point to before the update.
39270
+ """
39271
+ beforeOid: GitObjectID
39272
+
39273
+ """
39274
+ Force a non fast-forward update.
39275
+ """
39276
+ force: Boolean = false
39277
+
39278
+ """
39279
+ The fully qualified name of the ref to be update. For example `refs/heads/branch-name`
39280
+ """
39281
+ name: GitRefname!
39282
+ }
39283
+
38799
39284
  """
38800
39285
  Branch protection rules that are enforced on the viewer.
38801
39286
  """
@@ -42656,6 +43141,46 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
42656
43141
  """
42657
43142
  deleteBranchOnMerge: Boolean!
42658
43143
 
43144
+ """
43145
+ A list of dependency manifests contained in the repository
43146
+ """
43147
+ dependencyGraphManifests(
43148
+ """
43149
+ Returns the elements in the list that come after the specified cursor.
43150
+ """
43151
+ after: String
43152
+
43153
+ """
43154
+ Returns the elements in the list that come before the specified cursor.
43155
+ """
43156
+ before: String
43157
+
43158
+ """
43159
+ Cursor to paginate dependencies
43160
+ """
43161
+ dependenciesAfter: String
43162
+
43163
+ """
43164
+ Number of dependencies to fetch
43165
+ """
43166
+ dependenciesFirst: Int
43167
+
43168
+ """
43169
+ Returns the first _n_ elements from the list.
43170
+ """
43171
+ first: Int
43172
+
43173
+ """
43174
+ Returns the last _n_ elements from the list.
43175
+ """
43176
+ last: Int
43177
+
43178
+ """
43179
+ Flag to scope to only manifests with dependencies
43180
+ """
43181
+ withDependencies: Boolean
43182
+ ): DependencyGraphManifestConnection
43183
+
42659
43184
  """
42660
43185
  A list of deploy keys that are on this repository.
42661
43186
  """
@@ -45540,11 +46065,36 @@ enum RepositoryRuleType {
45540
46065
  """
45541
46066
  DELETION
45542
46067
 
46068
+ """
46069
+ Prevent commits that include files with specified file extensions from being
46070
+ pushed to the commit graph. NOTE: Thie rule is in beta and subject to change
46071
+ """
46072
+ FILE_EXTENSION_RESTRICTION
46073
+
46074
+ """
46075
+ Prevent commits that include changes in specified file paths from being pushed
46076
+ to the commit graph. NOTE: Thie rule is in beta and subject to change
46077
+ """
46078
+ FILE_PATH_RESTRICTION
46079
+
45543
46080
  """
45544
46081
  Branch is read-only. Users cannot push to the branch.
45545
46082
  """
45546
46083
  LOCK_BRANCH
45547
46084
 
46085
+ """
46086
+ Prevent commits that include file paths that exceed a specified character
46087
+ limit from being pushed to the commit graph. NOTE: Thie rule is in beta and
46088
+ subject to change
46089
+ """
46090
+ MAX_FILE_PATH_LENGTH
46091
+
46092
+ """
46093
+ Prevent commits that exceed a specified file size limit from being pushed to
46094
+ the commit. NOTE: Thie rule is in beta and subject to change
46095
+ """
46096
+ MAX_FILE_SIZE
46097
+
45548
46098
  """
45549
46099
  Max ref updates
45550
46100
  """
@@ -45753,6 +46303,11 @@ type RepositoryRulesetBypassActor implements Node {
45753
46303
  """
45754
46304
  bypassMode: RepositoryRulesetBypassActorBypassMode
45755
46305
 
46306
+ """
46307
+ This actor represents the ability for a deploy key to bypass
46308
+ """
46309
+ deployKey: Boolean!
46310
+
45756
46311
  """
45757
46312
  The Node ID of the RepositoryRulesetBypassActor object
45758
46313
  """
@@ -45836,7 +46391,8 @@ type RepositoryRulesetBypassActorEdge {
45836
46391
 
45837
46392
  """
45838
46393
  Specifies the attributes for a new or updated ruleset bypass actor. Only one of
45839
- `actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.
46394
+ `actor_id`, `repository_role_database_id`, `organization_admin`, or `deploy_key`
46395
+ should be specified.
45840
46396
  """
45841
46397
  input RepositoryRulesetBypassActorInput {
45842
46398
  """
@@ -45849,6 +46405,11 @@ input RepositoryRulesetBypassActorInput {
45849
46405
  """
45850
46406
  bypassMode: RepositoryRulesetBypassActorBypassMode!
45851
46407
 
46408
+ """
46409
+ For deploy key bypasses, true. Can only use ALWAYS as the bypass mode
46410
+ """
46411
+ deployKey: Boolean
46412
+
45852
46413
  """
45853
46414
  For organization owner bypasses, true
45854
46415
  """
@@ -45901,7 +46462,7 @@ type RepositoryRulesetEdge {
45901
46462
  }
45902
46463
 
45903
46464
  """
45904
- The targets supported for rulesets
46465
+ The targets supported for rulesets. NOTE: The push target is in beta and subject to change.
45905
46466
  """
45906
46467
  enum RepositoryRulesetTarget {
45907
46468
  """
@@ -45909,6 +46470,11 @@ enum RepositoryRulesetTarget {
45909
46470
  """
45910
46471
  BRANCH
45911
46472
 
46473
+ """
46474
+ Push
46475
+ """
46476
+ PUSH
46477
+
45912
46478
  """
45913
46479
  Tag
45914
46480
  """
@@ -47230,7 +47796,7 @@ enum RuleEnforcement {
47230
47796
  """
47231
47797
  Types which can be parameters for `RepositoryRule` objects.
47232
47798
  """
47233
- union RuleParameters = BranchNamePatternParameters | CommitAuthorEmailPatternParameters | CommitMessagePatternParameters | CommitterEmailPatternParameters | PullRequestParameters | RequiredDeploymentsParameters | RequiredStatusChecksParameters | TagNamePatternParameters | UpdateParameters | WorkflowsParameters
47799
+ union RuleParameters = BranchNamePatternParameters | CommitAuthorEmailPatternParameters | CommitMessagePatternParameters | CommitterEmailPatternParameters | FileExtensionRestrictionParameters | FilePathRestrictionParameters | MaxFilePathLengthParameters | MaxFileSizeParameters | PullRequestParameters | RequiredDeploymentsParameters | RequiredStatusChecksParameters | TagNamePatternParameters | UpdateParameters | WorkflowsParameters
47234
47800
 
47235
47801
  """
47236
47802
  Specifies the parameters for a `RepositoryRule` object. Only one of the fields should be specified.
@@ -47256,6 +47822,26 @@ input RuleParametersInput {
47256
47822
  """
47257
47823
  committerEmailPattern: CommitterEmailPatternParametersInput
47258
47824
 
47825
+ """
47826
+ Parameters used for the `file_extension_restriction` rule type
47827
+ """
47828
+ fileExtensionRestriction: FileExtensionRestrictionParametersInput
47829
+
47830
+ """
47831
+ Parameters used for the `file_path_restriction` rule type
47832
+ """
47833
+ filePathRestriction: FilePathRestrictionParametersInput
47834
+
47835
+ """
47836
+ Parameters used for the `max_file_path_length` rule type
47837
+ """
47838
+ maxFilePathLength: MaxFilePathLengthParametersInput
47839
+
47840
+ """
47841
+ Parameters used for the `max_file_size` rule type
47842
+ """
47843
+ maxFileSize: MaxFileSizeParametersInput
47844
+
47259
47845
  """
47260
47846
  Parameters used for the `pull_request` rule type
47261
47847
  """
@@ -57857,6 +58443,36 @@ type UpdateRefPayload {
57857
58443
  ref: Ref
57858
58444
  }
57859
58445
 
58446
+ """
58447
+ Autogenerated input type of UpdateRefs
58448
+ """
58449
+ input UpdateRefsInput {
58450
+ """
58451
+ A unique identifier for the client performing the mutation.
58452
+ """
58453
+ clientMutationId: String
58454
+
58455
+ """
58456
+ A list of ref updates.
58457
+ """
58458
+ refUpdates: [RefUpdate!]!
58459
+
58460
+ """
58461
+ The Node ID of the repository.
58462
+ """
58463
+ repositoryId: ID!
58464
+ }
58465
+
58466
+ """
58467
+ Autogenerated return type of UpdateRefs
58468
+ """
58469
+ type UpdateRefsPayload {
58470
+ """
58471
+ A unique identifier for the client performing the mutation.
58472
+ """
58473
+ clientMutationId: String
58474
+ }
58475
+
57860
58476
  """
57861
58477
  Autogenerated input type of UpdateRepository
57862
58478
  """