@@ -9618,6 +9618,9 @@ type Organization implements Node & Actor & RegistryPackageOwner & RegistryPacka
9618
9618
"""The Organization's SAML identity providers"""
9619
9619
samlIdentityProvider: OrganizationIdentityProvider
9620
9620
9621
+ """The GitHub Sponsors listing for this user."""
9622
+ sponsorsListing: SponsorsListing
9623
+
9621
9624
"""This object's sponsorships as the maintainer."""
9622
9625
sponsorshipsAsMaintainer(
9623
9626
"""Returns the elements in the list that come after the specified cursor."""
@@ -14409,12 +14412,6 @@ type Query {
14409
14412
last: Int
14410
14413
): SecurityVulnerabilityConnection!
14411
14414
14412
- """Look up a single Sponsors Listing"""
14413
- sponsorsListing(
14414
- """Select the Sponsors listing which matches this slug"""
14415
- slug: String!
14416
- ): SponsorsListing
14417
-
14418
14415
"""Look up a topic by name."""
14419
14416
topic(
14420
14417
"""The topic's name."""
@@ -19377,6 +19374,9 @@ type SmimeSignature implements GitSignature {
19377
19374
19378
19375
"""Entities that can be sponsored through GitHub Sponsors"""
19379
19376
interface Sponsorable {
19377
+ """The GitHub Sponsors listing for this user."""
19378
+ sponsorsListing: SponsorsListing
19379
+
19380
19380
"""This object's sponsorships as the maintainer."""
19381
19381
sponsorshipsAsMaintainer(
19382
19382
"""Returns the elements in the list that come after the specified cursor."""
@@ -19474,10 +19474,19 @@ type SponsorshipEdge {
19474
19474
19475
19475
"""Ordering options for sponsorship connections."""
19476
19476
input SponsorshipOrder {
19477
+ """The field to order sponsorship by."""
19478
+ field: SponsorshipOrderField!
19479
+
19477
19480
"""The ordering direction."""
19478
19481
direction: OrderDirection!
19479
19482
}
19480
19483
19484
+ """Properties by which sponsorship connections can be ordered."""
19485
+ enum SponsorshipOrderField {
19486
+ """Order sponsorship by creation time."""
19487
+ CREATED_AT
19488
+ }
19489
+
19481
19490
"""The privacy of a sponsorship"""
19482
19491
enum SponsorshipPrivacy {
19483
19492
"""Public"""
@@ -19504,10 +19513,35 @@ type SponsorsListing implements Node {
19504
19513
19505
19514
"""The short name of the listing."""
19506
19515
slug: String!
19516
+
19517
+ """The published tiers for this GitHub Sponsors listing."""
19518
+ tiers(
19519
+ """Returns the elements in the list that come after the specified cursor."""
19520
+ after: String
19521
+
19522
+ """
19523
+ Returns the elements in the list that come before the specified cursor.
19524
+ """
19525
+ before: String
19526
+
19527
+ """Returns the first _n_ elements from the list."""
19528
+ first: Int
19529
+
19530
+ """Returns the last _n_ elements from the list."""
19531
+ last: Int
19532
+
19533
+ """Ordering options for Sponsors tiers returned from the connection."""
19534
+ orderBy: SponsorsTierOrder = {field: MONTHLY_PRICE_IN_CENTS, direction: ASC}
19535
+ ): SponsorsTierConnection
19507
19536
}
19508
19537
19509
19538
"""A GitHub Sponsors tier associated with a GitHub Sponsors listing."""
19510
19539
type SponsorsTier implements Node {
19540
+ """
19541
+ SponsorsTier information only visible to users that can administer the associated Sponsors listing.
19542
+ """
19543
+ adminInfo: SponsorsTierAdminInfo
19544
+
19511
19545
"""Identifies the date and time when the object was created."""
19512
19546
createdAt: DateTime!
19513
19547
@@ -19534,6 +19568,37 @@ type SponsorsTier implements Node {
19534
19568
updatedAt: DateTime!
19535
19569
}
19536
19570
19571
+ """
19572
+ SponsorsTier information only visible to users that can administer the associated Sponsors listing.
19573
+ """
19574
+ type SponsorsTierAdminInfo {
19575
+ """The sponsorships associated with this tier."""
19576
+ sponsorships(
19577
+ """Returns the elements in the list that come after the specified cursor."""
19578
+ after: String
19579
+
19580
+ """
19581
+ Returns the elements in the list that come before the specified cursor.
19582
+ """
19583
+ before: String
19584
+
19585
+ """Returns the first _n_ elements from the list."""
19586
+ first: Int
19587
+
19588
+ """Returns the last _n_ elements from the list."""
19589
+ last: Int
19590
+
19591
+ """Whether or not to include private sponsorships in the result set"""
19592
+ includePrivate: Boolean = false
19593
+
19594
+ """
19595
+ Ordering options for sponsorships returned from this connection. If left
19596
+ blank, the sponsorships will be ordered based on relevancy to the viewer.
19597
+ """
19598
+ orderBy: SponsorshipOrder
19599
+ ): SponsorshipConnection!
19600
+ }
19601
+
19537
19602
"""The connection type for SponsorsTier."""
19538
19603
type SponsorsTierConnection {
19539
19604
"""A list of edges."""
@@ -19558,6 +19623,24 @@ type SponsorsTierEdge {
19558
19623
node: SponsorsTier
19559
19624
}
19560
19625
19626
+ """Ordering options for Sponsors tiers connections."""
19627
+ input SponsorsTierOrder {
19628
+ """The field to order tiers by."""
19629
+ field: SponsorsTierOrderField!
19630
+
19631
+ """The ordering direction."""
19632
+ direction: OrderDirection!
19633
+ }
19634
+
19635
+ """Properties by which Sponsors tiers connections can be ordered."""
19636
+ enum SponsorsTierOrderField {
19637
+ """Order tiers by creation time."""
19638
+ CREATED_AT
19639
+
19640
+ """Order tiers by their monthly price in cents"""
19641
+ MONTHLY_PRICE_IN_CENTS
19642
+ }
19643
+
19561
19644
"""The connection type for User."""
19562
19645
type StargazerConnection {
19563
19646
"""A list of edges."""
@@ -23211,6 +23294,9 @@ type User implements Node & Actor & RegistryPackageOwner & RegistryPackageSearch
23211
23294
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
23212
23295
): SavedReplyConnection
23213
23296
23297
+ """The GitHub Sponsors listing for this user."""
23298
+ sponsorsListing: SponsorsListing
23299
+
23214
23300
"""This object's sponsorships as the maintainer."""
23215
23301
sponsorshipsAsMaintainer(
23216
23302
"""Returns the elements in the list that come after the specified cursor."""
0 commit comments