github-schema 1.6.3 → 1.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11966,6 +11966,11 @@ type Enterprise implements AnnouncementBanner & Node {
11966
11966
  size: Int
11967
11967
  ): URI!
11968
11968
 
11969
+ """
11970
+ The enterprise's billing email.
11971
+ """
11972
+ billingEmail: String
11973
+
11969
11974
  """
11970
11975
  Enterprise billing information visible to enterprise billing managers.
11971
11976
  """
@@ -27454,6 +27459,37 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
27454
27459
  """
27455
27460
  itemShowcase: ProfileItemShowcase!
27456
27461
 
27462
+ """
27463
+ Calculate how much each sponsor has ever paid total to this maintainer via
27464
+ GitHub Sponsors. Does not include sponsorships paid via Patreon.
27465
+ """
27466
+ lifetimeReceivedSponsorshipValues(
27467
+ """
27468
+ Returns the elements in the list that come after the specified cursor.
27469
+ """
27470
+ after: String
27471
+
27472
+ """
27473
+ Returns the elements in the list that come before the specified cursor.
27474
+ """
27475
+ before: String
27476
+
27477
+ """
27478
+ Returns the first _n_ elements from the list.
27479
+ """
27480
+ first: Int
27481
+
27482
+ """
27483
+ Returns the last _n_ elements from the list.
27484
+ """
27485
+ last: Int
27486
+
27487
+ """
27488
+ Ordering options for results returned from the connection.
27489
+ """
27490
+ orderBy: SponsorAndLifetimeValueOrder = {field: SPONSOR_LOGIN, direction: ASC}
27491
+ ): SponsorAndLifetimeValueConnection!
27492
+
27457
27493
  """
27458
27494
  The organization's public profile location.
27459
27495
  """
@@ -47808,6 +47844,107 @@ Entities that can sponsor others via GitHub Sponsors
47808
47844
  """
47809
47845
  union Sponsor = Organization | User
47810
47846
 
47847
+ """
47848
+ A GitHub account and the total amount in USD they've paid for sponsorships to a
47849
+ particular maintainer. Does not include payments made via Patreon.
47850
+ """
47851
+ type SponsorAndLifetimeValue {
47852
+ """
47853
+ The amount in cents.
47854
+ """
47855
+ amountInCents: Int!
47856
+
47857
+ """
47858
+ The amount in USD, formatted as a string.
47859
+ """
47860
+ formattedAmount: String!
47861
+
47862
+ """
47863
+ The sponsor's GitHub account.
47864
+ """
47865
+ sponsor: Sponsorable!
47866
+
47867
+ """
47868
+ The maintainer's GitHub account.
47869
+ """
47870
+ sponsorable: Sponsorable!
47871
+ }
47872
+
47873
+ """
47874
+ The connection type for SponsorAndLifetimeValue.
47875
+ """
47876
+ type SponsorAndLifetimeValueConnection {
47877
+ """
47878
+ A list of edges.
47879
+ """
47880
+ edges: [SponsorAndLifetimeValueEdge]
47881
+
47882
+ """
47883
+ A list of nodes.
47884
+ """
47885
+ nodes: [SponsorAndLifetimeValue]
47886
+
47887
+ """
47888
+ Information to aid in pagination.
47889
+ """
47890
+ pageInfo: PageInfo!
47891
+
47892
+ """
47893
+ Identifies the total count of items in the connection.
47894
+ """
47895
+ totalCount: Int!
47896
+ }
47897
+
47898
+ """
47899
+ An edge in a connection.
47900
+ """
47901
+ type SponsorAndLifetimeValueEdge {
47902
+ """
47903
+ A cursor for use in pagination.
47904
+ """
47905
+ cursor: String!
47906
+
47907
+ """
47908
+ The item at the end of the edge.
47909
+ """
47910
+ node: SponsorAndLifetimeValue
47911
+ }
47912
+
47913
+ """
47914
+ Ordering options for connections to get sponsor entities and associated USD amounts for GitHub Sponsors.
47915
+ """
47916
+ input SponsorAndLifetimeValueOrder {
47917
+ """
47918
+ The ordering direction.
47919
+ """
47920
+ direction: OrderDirection!
47921
+
47922
+ """
47923
+ The field to order results by.
47924
+ """
47925
+ field: SponsorAndLifetimeValueOrderField!
47926
+ }
47927
+
47928
+ """
47929
+ Properties by which sponsor and lifetime value connections can be ordered.
47930
+ """
47931
+ enum SponsorAndLifetimeValueOrderField {
47932
+ """
47933
+ Order results by how much money the sponsor has paid in total.
47934
+ """
47935
+ LIFETIME_VALUE
47936
+
47937
+ """
47938
+ Order results by the sponsor's login (username).
47939
+ """
47940
+ SPONSOR_LOGIN
47941
+
47942
+ """
47943
+ Order results by the sponsor's relevance to the viewer.
47944
+ """
47945
+ SPONSOR_RELEVANCE
47946
+ }
47947
+
47811
47948
  """
47812
47949
  The connection type for Sponsor.
47813
47950
  """
@@ -47907,6 +48044,37 @@ interface Sponsorable {
47907
48044
  """
47908
48045
  isSponsoringViewer: Boolean!
47909
48046
 
48047
+ """
48048
+ Calculate how much each sponsor has ever paid total to this maintainer via
48049
+ GitHub Sponsors. Does not include sponsorships paid via Patreon.
48050
+ """
48051
+ lifetimeReceivedSponsorshipValues(
48052
+ """
48053
+ Returns the elements in the list that come after the specified cursor.
48054
+ """
48055
+ after: String
48056
+
48057
+ """
48058
+ Returns the elements in the list that come before the specified cursor.
48059
+ """
48060
+ before: String
48061
+
48062
+ """
48063
+ Returns the first _n_ elements from the list.
48064
+ """
48065
+ first: Int
48066
+
48067
+ """
48068
+ Returns the last _n_ elements from the list.
48069
+ """
48070
+ last: Int
48071
+
48072
+ """
48073
+ Ordering options for results returned from the connection.
48074
+ """
48075
+ orderBy: SponsorAndLifetimeValueOrder = {field: SPONSOR_LOGIN, direction: ASC}
48076
+ ): SponsorAndLifetimeValueConnection!
48077
+
47910
48078
  """
47911
48079
  The estimated monthly GitHub Sponsors income for this user/organization in cents (USD).
47912
48080
  """
@@ -58014,6 +58182,37 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
58014
58182
  """
58015
58183
  itemShowcase: ProfileItemShowcase!
58016
58184
 
58185
+ """
58186
+ Calculate how much each sponsor has ever paid total to this maintainer via
58187
+ GitHub Sponsors. Does not include sponsorships paid via Patreon.
58188
+ """
58189
+ lifetimeReceivedSponsorshipValues(
58190
+ """
58191
+ Returns the elements in the list that come after the specified cursor.
58192
+ """
58193
+ after: String
58194
+
58195
+ """
58196
+ Returns the elements in the list that come before the specified cursor.
58197
+ """
58198
+ before: String
58199
+
58200
+ """
58201
+ Returns the first _n_ elements from the list.
58202
+ """
58203
+ first: Int
58204
+
58205
+ """
58206
+ Returns the last _n_ elements from the list.
58207
+ """
58208
+ last: Int
58209
+
58210
+ """
58211
+ Ordering options for results returned from the connection.
58212
+ """
58213
+ orderBy: SponsorAndLifetimeValueOrder = {field: SPONSOR_LOGIN, direction: ASC}
58214
+ ): SponsorAndLifetimeValueConnection!
58215
+
58017
58216
  """
58018
58217
  A user-curated list of repositories
58019
58218
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.6.3",
3
+ "version": "1.6.5",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {