1
0
mirror of synced 2025-12-23 21:07:12 -05:00

Action ran graphql script"update-files"

This commit is contained in:
JamesMGreene
2021-07-27 21:05:51 +00:00
committed by GitHub
parent f0269dbf4c
commit c2e14806a9
6 changed files with 273 additions and 6 deletions

View File

@@ -1,4 +1,22 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Argument `membersOnly: Boolean` added to field `EnterpriseIdentityProvider.externalIdentities`",
"Argument `membersOnly: Boolean` added to field `OrganizationIdentityProvider.externalIdentities`",
"Field `mentions` was added to object type `Release`",
"Field `isPublic` was added to object type `SponsorsListing`",
"Field `nextPayoutDate` was added to object type `SponsorsListing`",
"Field `sponsorable` was added to object type `SponsorsListing`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-07-27"
},
{
"schemaChanges": [
{

File diff suppressed because one or more lines are too long

View File

@@ -17337,6 +17337,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -34329,6 +34339,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -42302,6 +42322,56 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "mentions",
"description": "<p>A list of users mentioned in the release description.</p>",
"type": "UserConnection",
"id": "userconnection",
"kind": "objects",
"href": "/graphql/reference/objects#userconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "name",
"description": "<p>The title of the release.</p>",
@@ -50396,7 +50466,7 @@
"kind": "objects",
"id": "repositoryvulnerabilityalert",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>A alert for a repository with an affected vulnerability.</p>",
"description": "<p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>",
"implements": [
{
"name": "Node",
@@ -52211,6 +52281,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#html"
},
{
"name": "isPublic",
"description": "<p>Whether this listing is publicly visible.</p>",
"type": "Boolean!",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "name",
"description": "<p>The listing's full name.</p>",
@@ -52219,6 +52297,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "nextPayoutDate",
"description": "<p>A future date on which this listing is eligible to receive a payout.</p>",
"type": "Date",
"id": "date",
"kind": "scalars",
"href": "/graphql/reference/scalars#date"
},
{
"name": "shortDescription",
"description": "<p>The short description of the listing.</p>",
@@ -52235,6 +52321,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "sponsorable",
"description": "<p>The entity this listing represents who can be sponsored on GitHub Sponsors.</p>",
"type": "Sponsorable!",
"id": "sponsorable",
"kind": "interfaces",
"href": "/graphql/reference/interfaces#sponsorable"
},
{
"name": "tiers",
"description": "<p>The published tiers for this GitHub Sponsors listing.</p>",

View File

@@ -15891,6 +15891,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -31588,6 +31598,16 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "membersOnly",
"description": "<p>Filter to external identities with valid org membership only.</p>",
"type": {
"name": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
}
}
]
},
@@ -38941,6 +38961,56 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "mentions",
"description": "<p>A list of users mentioned in the release description.</p>",
"type": "UserConnection",
"id": "userconnection",
"kind": "objects",
"href": "/graphql/reference/objects#userconnection",
"arguments": [
{
"name": "after",
"description": "<p>Returns the elements in the list that come after the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "before",
"description": "<p>Returns the elements in the list that come before the specified cursor.</p>",
"type": {
"name": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
}
},
{
"name": "first",
"description": "<p>Returns the first <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
},
{
"name": "last",
"description": "<p>Returns the last <em>n</em> elements from the list.</p>",
"type": {
"name": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
}
}
]
},
{
"name": "name",
"description": "<p>The title of the release.</p>",
@@ -46798,7 +46868,7 @@
"kind": "objects",
"id": "repositoryvulnerabilityalert",
"href": "/graphql/reference/objects#repositoryvulnerabilityalert",
"description": "<p>A alert for a repository with an affected vulnerability.</p>",
"description": "<p>A Dependabot alert for a repository with a dependency affected by a security vulnerability.</p>",
"implements": [
{
"name": "Node",