Action ran graphql script"update-files"

This commit is contained in:
rachmari 2021-02-25 17:11:41 +00:00 коммит произвёл GitHub
Родитель 46d8de0040
Коммит ce27513d61
4 изменённых файлов: 1707 добавлений и 267 удалений

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -1,4 +1,19 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Type `ApproveVerifiableDomainInput` was added",
"Type `ApproveVerifiableDomainPayload` was added",
"Field `approveVerifiableDomain` was added to object type `Mutation`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-02-25"
},
{
"schemaChanges": [
{

Просмотреть файл

@ -1389,6 +1389,40 @@
}
]
},
{
"name": "approveVerifiableDomain",
"kind": "mutations",
"id": "approveverifiabledomain",
"href": "/graphql/reference/mutations#approveverifiabledomain",
"description": "<p>Approve a verifiable domain for notification delivery.</p>",
"inputFields": [
{
"name": "input",
"type": "ApproveVerifiableDomainInput!",
"id": "approveverifiabledomaininput",
"kind": "input-objects",
"href": "/graphql/reference/input-objects#approveverifiabledomaininput"
}
],
"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": "domain",
"type": "VerifiableDomain",
"id": "verifiabledomain",
"kind": "objects",
"href": "/graphql/reference/objects#verifiabledomain",
"description": "<p>The verifiable domain that was approved.</p>"
}
]
},
{
"name": "archiveRepository",
"kind": "mutations",
@ -64196,6 +64230,32 @@
}
]
},
{
"name": "ApproveVerifiableDomainInput",
"kind": "inputObjects",
"id": "approveverifiabledomaininput",
"href": "/graphql/reference/input-objects#approveverifiabledomaininput",
"description": "<p>Autogenerated input type of ApproveVerifiableDomain.</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": "id",
"description": "<p>The ID of the verifiable domain to approve.</p>",
"type": "ID!",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
}
]
},
{
"name": "ArchiveRepositoryInput",
"kind": "inputObjects",