Skip to content

Commit ac93c5d

Browse files
authored
Action ran graphql script"update-files"
1 parent ad34fb2 commit ac93c5d

6 files changed

+72
-2
lines changed

data/graphql/ghae/schema.docs-ghae.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -31492,6 +31492,11 @@ type Sponsorship implements Node {
3149231492
createdAt: DateTime!
3149331493
id: ID!
3149431494

31495+
"""
31496+
Whether this sponsorship represents a one-time payment versus a recurring sponsorship.
31497+
"""
31498+
isOneTimePayment: Boolean!
31499+
3149531500
"""
3149631501
The entity that is being sponsored
3149731502
"""

data/graphql/schema.docs.graphql

+18
Original file line numberDiff line numberDiff line change
@@ -34242,6 +34242,13 @@ type SponsorsTier implements Node {
3424234242
"""
3424334243
adminInfo: SponsorsTierAdminInfo
3424434244

34245+
"""
34246+
Get a different tier for this tier's maintainer that is at the same frequency
34247+
as this tier but with a lesser cost. Returns the published tier with the
34248+
monthly price closest to this tier's without going over.
34249+
"""
34250+
closestLesserValueTier: SponsorsTier
34251+
3424534252
"""
3424634253
Identifies the date and time when the object was created.
3424734254
"""
@@ -34258,6 +34265,12 @@ type SponsorsTier implements Node {
3425834265
descriptionHTML: HTML!
3425934266
id: ID!
3426034267

34268+
"""
34269+
Whether this tier was chosen at checkout time by the sponsor rather than
34270+
defined ahead of time by the maintainer who manages the Sponsors listing.
34271+
"""
34272+
isCustomAmount: Boolean!
34273+
3426134274
"""
3426234275
Whether this tier is only for use with one-time sponsorships.
3426334276
"""
@@ -34410,6 +34423,11 @@ type Sponsorship implements Node {
3441034423
createdAt: DateTime!
3441134424
id: ID!
3441234425

34426+
"""
34427+
Whether this sponsorship represents a one-time payment versus a recurring sponsorship.
34428+
"""
34429+
isOneTimePayment: Boolean!
34430+
3441334431
"""
3441434432
The entity that is being sponsored
3441534433
"""

lib/graphql/static/changelog.json

+15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"Field `closestLesserValueTier` was added to object type `SponsorsTier`",
8+
"Field `isCustomAmount` was added to object type `SponsorsTier`",
9+
"Field `isOneTimePayment` was added to object type `Sponsorship`"
10+
]
11+
}
12+
],
13+
"previewChanges": [],
14+
"upcomingChanges": [],
15+
"date": "2021-03-27"
16+
},
217
{
318
"schemaChanges": [
419
{

lib/graphql/static/prerendered-objects.json

+2-2
Large diffs are not rendered by default.

lib/graphql/static/schema-dotcom.json

+24
Original file line numberDiff line numberDiff line change
@@ -48237,6 +48237,14 @@
4823748237
"kind": "objects",
4823848238
"href": "/graphql/reference/objects#sponsorstieradmininfo"
4823948239
},
48240+
{
48241+
"name": "closestLesserValueTier",
48242+
"description": "<p>Get a different tier for this tier's maintainer that is at the same frequency\nas this tier but with a lesser cost. Returns the published tier with the\nmonthly price closest to this tier's without going over.</p>",
48243+
"type": "SponsorsTier",
48244+
"id": "sponsorstier",
48245+
"kind": "objects",
48246+
"href": "/graphql/reference/objects#sponsorstier"
48247+
},
4824048248
{
4824148249
"name": "createdAt",
4824248250
"description": "<p>Identifies the date and time when the object was created.</p>",
@@ -48261,6 +48269,14 @@
4826148269
"kind": "scalars",
4826248270
"href": "/graphql/reference/scalars#html"
4826348271
},
48272+
{
48273+
"name": "isCustomAmount",
48274+
"description": "<p>Whether this tier was chosen at checkout time by the sponsor rather than\ndefined ahead of time by the maintainer who manages the Sponsors listing.</p>",
48275+
"type": "Boolean!",
48276+
"id": "boolean",
48277+
"kind": "scalars",
48278+
"href": "/graphql/reference/scalars#boolean"
48279+
},
4826448280
{
4826548281
"name": "isOneTime",
4826648282
"description": "<p>Whether this tier is only for use with one-time sponsorships.</p>",
@@ -48479,6 +48495,14 @@
4847948495
"kind": "scalars",
4848048496
"href": "/graphql/reference/scalars#datetime"
4848148497
},
48498+
{
48499+
"name": "isOneTimePayment",
48500+
"description": "<p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>",
48501+
"type": "Boolean!",
48502+
"id": "boolean",
48503+
"kind": "scalars",
48504+
"href": "/graphql/reference/scalars#boolean"
48505+
},
4848248506
{
4848348507
"name": "maintainer",
4848448508
"description": "<p>The entity that is being sponsored.</p>",

lib/graphql/static/schema-ghae.json

+8
Original file line numberDiff line numberDiff line change
@@ -44841,6 +44841,14 @@
4484144841
"kind": "scalars",
4484244842
"href": "/graphql/reference/scalars#datetime"
4484344843
},
44844+
{
44845+
"name": "isOneTimePayment",
44846+
"description": "<p>Whether this sponsorship represents a one-time payment versus a recurring sponsorship.</p>",
44847+
"type": "Boolean!",
44848+
"id": "boolean",
44849+
"kind": "scalars",
44850+
"href": "/graphql/reference/scalars#boolean"
44851+
},
4484444852
{
4484544853
"name": "maintainer",
4484644854
"description": "<p>The entity that is being sponsored.</p>",

0 commit comments

Comments
 (0)