зеркало из https://github.com/github/docs.git
GraphQL schema update (#53013)
Co-authored-by: rachmari <9831992+rachmari@users.noreply.github.com>
This commit is contained in:
Родитель
f7b3987fc3
Коммит
22094f8e80
|
@ -1,4 +1,19 @@
|
|||
[
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
"title": "The GraphQL schema includes these changes:",
|
||||
"changes": [
|
||||
"<p>Type <code>UpdateEnterpriseDeployKeySettingInput</code> was added</p>",
|
||||
"<p>Type <code>UpdateEnterpriseDeployKeySettingPayload</code> was added</p>",
|
||||
"<p>Field <code>updateEnterpriseDeployKeySetting</code> was added to object type <code>Mutation</code></p>"
|
||||
]
|
||||
}
|
||||
],
|
||||
"previewChanges": [],
|
||||
"upcomingChanges": [],
|
||||
"date": "2024-11-07"
|
||||
},
|
||||
{
|
||||
"schemaChanges": [
|
||||
{
|
||||
|
|
|
@ -24830,6 +24830,16 @@ type Mutation {
|
|||
input: UpdateEnterpriseDefaultRepositoryPermissionSettingInput!
|
||||
): UpdateEnterpriseDefaultRepositoryPermissionSettingPayload
|
||||
|
||||
"""
|
||||
Sets whether deploy keys are allowed to be created and used for an enterprise.
|
||||
"""
|
||||
updateEnterpriseDeployKeySetting(
|
||||
"""
|
||||
Parameters for UpdateEnterpriseDeployKeySetting
|
||||
"""
|
||||
input: UpdateEnterpriseDeployKeySettingInput!
|
||||
): UpdateEnterpriseDeployKeySettingPayload
|
||||
|
||||
"""
|
||||
Sets whether organization members with admin permissions on a repository can change repository visibility.
|
||||
"""
|
||||
|
@ -58729,6 +58739,46 @@ type UpdateEnterpriseDefaultRepositoryPermissionSettingPayload {
|
|||
message: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateEnterpriseDeployKeySetting
|
||||
"""
|
||||
input UpdateEnterpriseDeployKeySettingInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the enterprise on which to set the deploy key setting.
|
||||
"""
|
||||
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
|
||||
|
||||
"""
|
||||
The value for the deploy key setting on the enterprise.
|
||||
"""
|
||||
settingValue: EnterpriseEnabledDisabledSettingValue!
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdateEnterpriseDeployKeySetting.
|
||||
"""
|
||||
type UpdateEnterpriseDeployKeySettingPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The enterprise with the updated deploy key setting.
|
||||
"""
|
||||
enterprise: Enterprise
|
||||
|
||||
"""
|
||||
A message confirming the result of updating the deploy key setting.
|
||||
"""
|
||||
message: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting
|
||||
"""
|
||||
|
|
|
@ -7681,6 +7681,48 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateEnterpriseDeployKeySetting",
|
||||
"kind": "mutations",
|
||||
"id": "updateenterprisedeploykeysetting",
|
||||
"href": "/graphql/reference/mutations#updateenterprisedeploykeysetting",
|
||||
"description": "<p>Sets whether deploy keys are allowed to be created and used for an enterprise.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdateEnterpriseDeployKeySettingInput!",
|
||||
"id": "updateenterprisedeploykeysettinginput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updateenterprisedeploykeysettinginput"
|
||||
}
|
||||
],
|
||||
"returnFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>"
|
||||
},
|
||||
{
|
||||
"name": "enterprise",
|
||||
"type": "Enterprise",
|
||||
"id": "enterprise",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#enterprise",
|
||||
"description": "<p>The enterprise with the updated deploy key setting.</p>"
|
||||
},
|
||||
{
|
||||
"name": "message",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A message confirming the result of updating the deploy key setting.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateEnterpriseMembersCanChangeRepositoryVisibilitySetting",
|
||||
"kind": "mutations",
|
||||
|
@ -103270,6 +103312,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateEnterpriseDeployKeySettingInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updateenterprisedeploykeysettinginput",
|
||||
"href": "/graphql/reference/input-objects#updateenterprisedeploykeysettinginput",
|
||||
"description": "<p>Autogenerated input type of UpdateEnterpriseDeployKeySetting.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "enterpriseId",
|
||||
"description": "<p>The ID of the enterprise on which to set the deploy key setting.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "settingValue",
|
||||
"description": "<p>The value for the deploy key setting on the enterprise.</p>",
|
||||
"type": "EnterpriseEnabledDisabledSettingValue!",
|
||||
"id": "enterpriseenableddisabledsettingvalue",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#enterpriseenableddisabledsettingvalue"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
|
@ -24830,6 +24830,16 @@ type Mutation {
|
|||
input: UpdateEnterpriseDefaultRepositoryPermissionSettingInput!
|
||||
): UpdateEnterpriseDefaultRepositoryPermissionSettingPayload
|
||||
|
||||
"""
|
||||
Sets whether deploy keys are allowed to be created and used for an enterprise.
|
||||
"""
|
||||
updateEnterpriseDeployKeySetting(
|
||||
"""
|
||||
Parameters for UpdateEnterpriseDeployKeySetting
|
||||
"""
|
||||
input: UpdateEnterpriseDeployKeySettingInput!
|
||||
): UpdateEnterpriseDeployKeySettingPayload
|
||||
|
||||
"""
|
||||
Sets whether organization members with admin permissions on a repository can change repository visibility.
|
||||
"""
|
||||
|
@ -58729,6 +58739,46 @@ type UpdateEnterpriseDefaultRepositoryPermissionSettingPayload {
|
|||
message: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateEnterpriseDeployKeySetting
|
||||
"""
|
||||
input UpdateEnterpriseDeployKeySettingInput {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The ID of the enterprise on which to set the deploy key setting.
|
||||
"""
|
||||
enterpriseId: ID! @possibleTypes(concreteTypes: ["Enterprise"])
|
||||
|
||||
"""
|
||||
The value for the deploy key setting on the enterprise.
|
||||
"""
|
||||
settingValue: EnterpriseEnabledDisabledSettingValue!
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated return type of UpdateEnterpriseDeployKeySetting.
|
||||
"""
|
||||
type UpdateEnterpriseDeployKeySettingPayload {
|
||||
"""
|
||||
A unique identifier for the client performing the mutation.
|
||||
"""
|
||||
clientMutationId: String
|
||||
|
||||
"""
|
||||
The enterprise with the updated deploy key setting.
|
||||
"""
|
||||
enterprise: Enterprise
|
||||
|
||||
"""
|
||||
A message confirming the result of updating the deploy key setting.
|
||||
"""
|
||||
message: String
|
||||
}
|
||||
|
||||
"""
|
||||
Autogenerated input type of UpdateEnterpriseMembersCanChangeRepositoryVisibilitySetting
|
||||
"""
|
||||
|
|
|
@ -7681,6 +7681,48 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateEnterpriseDeployKeySetting",
|
||||
"kind": "mutations",
|
||||
"id": "updateenterprisedeploykeysetting",
|
||||
"href": "/graphql/reference/mutations#updateenterprisedeploykeysetting",
|
||||
"description": "<p>Sets whether deploy keys are allowed to be created and used for an enterprise.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "input",
|
||||
"type": "UpdateEnterpriseDeployKeySettingInput!",
|
||||
"id": "updateenterprisedeploykeysettinginput",
|
||||
"kind": "input-objects",
|
||||
"href": "/graphql/reference/input-objects#updateenterprisedeploykeysettinginput"
|
||||
}
|
||||
],
|
||||
"returnFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>"
|
||||
},
|
||||
{
|
||||
"name": "enterprise",
|
||||
"type": "Enterprise",
|
||||
"id": "enterprise",
|
||||
"kind": "objects",
|
||||
"href": "/graphql/reference/objects#enterprise",
|
||||
"description": "<p>The enterprise with the updated deploy key setting.</p>"
|
||||
},
|
||||
{
|
||||
"name": "message",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string",
|
||||
"description": "<p>A message confirming the result of updating the deploy key setting.</p>"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "updateEnterpriseMembersCanChangeRepositoryVisibilitySetting",
|
||||
"kind": "mutations",
|
||||
|
@ -103270,6 +103312,40 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateEnterpriseDeployKeySettingInput",
|
||||
"kind": "inputObjects",
|
||||
"id": "updateenterprisedeploykeysettinginput",
|
||||
"href": "/graphql/reference/input-objects#updateenterprisedeploykeysettinginput",
|
||||
"description": "<p>Autogenerated input type of UpdateEnterpriseDeployKeySetting.</p>",
|
||||
"inputFields": [
|
||||
{
|
||||
"name": "clientMutationId",
|
||||
"description": "<p>A unique identifier for the client performing the mutation.</p>",
|
||||
"type": "String",
|
||||
"id": "string",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#string"
|
||||
},
|
||||
{
|
||||
"name": "enterpriseId",
|
||||
"description": "<p>The ID of the enterprise on which to set the deploy key setting.</p>",
|
||||
"type": "ID!",
|
||||
"id": "id",
|
||||
"kind": "scalars",
|
||||
"href": "/graphql/reference/scalars#id",
|
||||
"isDeprecated": false
|
||||
},
|
||||
{
|
||||
"name": "settingValue",
|
||||
"description": "<p>The value for the deploy key setting on the enterprise.</p>",
|
||||
"type": "EnterpriseEnabledDisabledSettingValue!",
|
||||
"id": "enterpriseenableddisabledsettingvalue",
|
||||
"kind": "enums",
|
||||
"href": "/graphql/reference/enums#enterpriseenableddisabledsettingvalue"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "UpdateEnterpriseMembersCanChangeRepositoryVisibilitySettingInput",
|
||||
"kind": "inputObjects",
|
||||
|
|
Загрузка…
Ссылка в новой задаче