Action ran graphql script"update-files"

This commit is contained in:
rachmari 2021-08-24 16:35:39 +00:00 коммит произвёл GitHub
Родитель d50dc507d6
Коммит 3a6a18274e
5 изменённых файлов: 95 добавлений и 22 удалений

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

@ -6137,11 +6137,21 @@ type CreateRepositoryPayload {
Autogenerated input type of CreateSponsorship
"""
input CreateSponsorshipInput {
"""
The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.
"""
amount: Int
"""
A unique identifier for the client performing the mutation.
"""
clientMutationId: String
"""
Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.
"""
isRecurring: Boolean
"""
Specify whether others should be able to see that the sponsor is sponsoring
the sponsorable. Public visibility still does not reveal which tier is used.
@ -6154,19 +6164,31 @@ input CreateSponsorshipInput {
receiveEmails: Boolean = true
"""
The ID of user or organization who is acting as the sponsor, paying for the sponsorship.
The ID of the user or organization who is acting as the sponsor, paying for
the sponsorship. Required if sponsorLogin is not given.
"""
sponsorId: ID! @possibleTypes(concreteTypes: ["Organization", "User"], abstractType: "Sponsor")
sponsorId: ID @possibleTypes(concreteTypes: ["Organization", "User"], abstractType: "Sponsor")
"""
The ID of user or organization who is receiving the sponsorship.
The username of the user or organization who is acting as the sponsor, paying
for the sponsorship. Required if sponsorId is not given.
"""
sponsorableId: ID! @possibleTypes(concreteTypes: ["Organization", "User"], abstractType: "Sponsorable")
sponsorLogin: String
"""
The ID of tier to sponsor at.
The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.
"""
tierId: ID! @possibleTypes(concreteTypes: ["SponsorsTier"])
sponsorableId: ID @possibleTypes(concreteTypes: ["Organization", "User"], abstractType: "Sponsorable")
"""
The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.
"""
sponsorableLogin: String
"""
The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified.
"""
tierId: ID @possibleTypes(concreteTypes: ["SponsorsTier"])
}
"""
@ -37645,7 +37667,7 @@ type SponsorsGoal {
percentComplete: Int!
"""
What the goal amount is. Represents a dollar amount for monthly sponsorship
What the goal amount is. Represents an amount in USD for monthly sponsorship
amount goals. Represents a count of unique sponsors for total sponsors count goals.
"""
targetValue: Int!
@ -37661,7 +37683,7 @@ The different kinds of goals a GitHub Sponsors member can have.
"""
enum SponsorsGoalKind {
"""
The goal is about getting a certain dollar amount from sponsorships each month.
The goal is about getting a certain amount in USD from sponsorships each month.
"""
MONTHLY_SPONSORSHIP_AMOUNT
@ -37806,7 +37828,7 @@ type SponsorsTier implements Node {
monthlyPriceInCents: Int!
"""
How much this tier costs per month in dollars.
How much this tier costs per month in USD.
"""
monthlyPriceInDollars: Int!
@ -38025,7 +38047,7 @@ type SponsorshipConnection {
totalRecurringMonthlyPriceInCents: Int!
"""
The total dollar amount of all recurring sponsorships in the connection whose
The total amount in USD of all recurring sponsorships in the connection whose
amount you can view. Does not include one-time sponsorships.
"""
totalRecurringMonthlyPriceInDollars: Int!

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

@ -1,4 +1,23 @@
[
{
"schemaChanges": [
{
"title": "The GraphQL schema includes these changes:",
"changes": [
"Input field `amount` was added to input object type `CreateSponsorshipInput`",
"Input field `isRecurring` was added to input object type `CreateSponsorshipInput`",
"Input field `sponsorLogin` was added to input object type `CreateSponsorshipInput`",
"Input field `sponsorableLogin` was added to input object type `CreateSponsorshipInput`",
"Input field `CreateSponsorshipInput.sponsorId` changed type from `ID!` to `ID`",
"Input field `CreateSponsorshipInput.sponsorableId` changed type from `ID!` to `ID`",
"Input field `CreateSponsorshipInput.tierId` changed type from `ID!` to `ID`"
]
}
],
"previewChanges": [],
"upcomingChanges": [],
"date": "2021-08-24"
},
{
"schemaChanges": [
{

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

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

@ -52525,7 +52525,7 @@
},
{
"name": "targetValue",
"description": "<p>What the goal amount is. Represents a dollar amount for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.</p>",
"description": "<p>What the goal amount is. Represents an amount in USD for monthly sponsorship\namount goals. Represents a count of unique sponsors for total sponsors count goals.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
@ -52777,7 +52777,7 @@
},
{
"name": "monthlyPriceInDollars",
"description": "<p>How much this tier costs per month in dollars.</p>",
"description": "<p>How much this tier costs per month in USD.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
@ -53096,7 +53096,7 @@
},
{
"name": "totalRecurringMonthlyPriceInDollars",
"description": "<p>The total dollar amount of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.</p>",
"description": "<p>The total amount in USD of all recurring sponsorships in the connection whose\namount you can view. Does not include one-time sponsorships.</p>",
"type": "Int!",
"id": "int",
"kind": "scalars",
@ -67839,7 +67839,7 @@
"values": [
{
"name": "MONTHLY_SPONSORSHIP_AMOUNT",
"description": "<p>The goal is about getting a certain dollar amount from sponsorships each month.</p>"
"description": "<p>The goal is about getting a certain amount in USD from sponsorships each month.</p>"
},
{
"name": "TOTAL_SPONSORS_COUNT",
@ -72534,6 +72534,14 @@
"href": "/graphql/reference/input-objects#createsponsorshipinput",
"description": "<p>Autogenerated input type of CreateSponsorship.</p>",
"inputFields": [
{
"name": "amount",
"description": "<p>The amount to pay to the sponsorable in US dollars. Required if a tierId is not specified. Valid values: 1-12000.</p>",
"type": "Int",
"id": "int",
"kind": "scalars",
"href": "/graphql/reference/scalars#int"
},
{
"name": "clientMutationId",
"description": "<p>A unique identifier for the client performing the mutation.</p>",
@ -72542,6 +72550,14 @@
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "isRecurring",
"description": "<p>Whether the sponsorship should happen monthly/yearly or just this one time. Required if a tierId is not specified.</p>",
"type": "Boolean",
"id": "boolean",
"kind": "scalars",
"href": "/graphql/reference/scalars#boolean"
},
{
"name": "privacyLevel",
"description": "<p>Specify whether others should be able to see that the sponsor is sponsoring\nthe sponsorable. Public visibility still does not reveal which tier is used.</p>",
@ -72560,26 +72576,42 @@
},
{
"name": "sponsorId",
"description": "<p>The ID of user or organization who is acting as the sponsor, paying for the sponsorship.</p>",
"type": "ID!",
"description": "<p>The ID of the user or organization who is acting as the sponsor, paying for\nthe sponsorship. Required if sponsorLogin is not given.</p>",
"type": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "sponsorLogin",
"description": "<p>The username of the user or organization who is acting as the sponsor, paying\nfor the sponsorship. Required if sponsorId is not given.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "sponsorableId",
"description": "<p>The ID of user or organization who is receiving the sponsorship.</p>",
"type": "ID!",
"description": "<p>The ID of the user or organization who is receiving the sponsorship. Required if sponsorableLogin is not given.</p>",
"type": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",
"isDeprecated": false
},
{
"name": "sponsorableLogin",
"description": "<p>The username of the user or organization who is receiving the sponsorship. Required if sponsorableId is not given.</p>",
"type": "String",
"id": "string",
"kind": "scalars",
"href": "/graphql/reference/scalars#string"
},
{
"name": "tierId",
"description": "<p>The ID of tier to sponsor at.</p>",
"type": "ID!",
"description": "<p>The ID of one of sponsorable's existing tiers to sponsor at. Required if amount is not specified.</p>",
"type": "ID",
"id": "id",
"kind": "scalars",
"href": "/graphql/reference/scalars#id",