Action ran graphql script"update-files"
This commit is contained in:
@@ -33773,6 +33773,11 @@ enum SecurityAdvisoryEcosystem {
|
||||
"""
|
||||
NUGET
|
||||
|
||||
"""
|
||||
Applications, runtimes, operating systems and other kinds of software
|
||||
"""
|
||||
OTHER
|
||||
|
||||
"""
|
||||
Python packages hosted at PyPI.org
|
||||
"""
|
||||
|
||||
@@ -22641,6 +22641,41 @@ type Organization implements Actor & MemberStatusable & Node & PackageOwner & Pr
|
||||
"""
|
||||
samlIdentityProvider: OrganizationIdentityProvider
|
||||
|
||||
"""
|
||||
Events involving this sponsorable, such as new sponsorships.
|
||||
"""
|
||||
sponsorsActivities(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for activity returned from the connection.
|
||||
"""
|
||||
orderBy: SponsorsActivityOrder = {field: TIMESTAMP, direction: DESC}
|
||||
|
||||
"""
|
||||
Filter activities returned to only those that occurred in a given time range.
|
||||
"""
|
||||
period: SponsorsActivityPeriod = MONTH
|
||||
): SponsorsActivityConnection!
|
||||
|
||||
"""
|
||||
The GitHub Sponsors listing for this user or organization.
|
||||
"""
|
||||
@@ -36340,6 +36375,11 @@ enum SecurityAdvisoryEcosystem {
|
||||
"""
|
||||
NUGET
|
||||
|
||||
"""
|
||||
Applications, runtimes, operating systems and other kinds of software
|
||||
"""
|
||||
OTHER
|
||||
|
||||
"""
|
||||
Python packages hosted at PyPI.org
|
||||
"""
|
||||
@@ -36852,6 +36892,41 @@ interface Sponsorable {
|
||||
"""
|
||||
isSponsoringViewer: Boolean!
|
||||
|
||||
"""
|
||||
Events involving this sponsorable, such as new sponsorships.
|
||||
"""
|
||||
sponsorsActivities(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for activity returned from the connection.
|
||||
"""
|
||||
orderBy: SponsorsActivityOrder = {field: TIMESTAMP, direction: DESC}
|
||||
|
||||
"""
|
||||
Filter activities returned to only those that occurred in a given time range.
|
||||
"""
|
||||
period: SponsorsActivityPeriod = MONTH
|
||||
): SponsorsActivityConnection!
|
||||
|
||||
"""
|
||||
The GitHub Sponsors listing for this user or organization.
|
||||
"""
|
||||
@@ -37010,6 +37085,167 @@ enum SponsorableOrderField {
|
||||
LOGIN
|
||||
}
|
||||
|
||||
"""
|
||||
An event related to sponsorship activity.
|
||||
"""
|
||||
type SponsorsActivity implements Node {
|
||||
"""
|
||||
What action this activity indicates took place.
|
||||
"""
|
||||
action: SponsorsActivityAction!
|
||||
id: ID!
|
||||
|
||||
"""
|
||||
The tier that the sponsorship used to use, for tier change events.
|
||||
"""
|
||||
previousSponsorsTier: SponsorsTier
|
||||
|
||||
"""
|
||||
The user or organization who triggered this activity and was/is sponsoring the sponsorable.
|
||||
"""
|
||||
sponsor: Sponsor
|
||||
|
||||
"""
|
||||
The user or organization that is being sponsored, the maintainer.
|
||||
"""
|
||||
sponsorable: Sponsorable!
|
||||
|
||||
"""
|
||||
The associated sponsorship tier.
|
||||
"""
|
||||
sponsorsTier: SponsorsTier
|
||||
|
||||
"""
|
||||
The timestamp of this event.
|
||||
"""
|
||||
timestamp: DateTime
|
||||
}
|
||||
|
||||
"""
|
||||
The possible actions that GitHub Sponsors activities can represent.
|
||||
"""
|
||||
enum SponsorsActivityAction {
|
||||
"""
|
||||
The activity was cancelling a sponsorship.
|
||||
"""
|
||||
CANCELLED_SPONSORSHIP
|
||||
|
||||
"""
|
||||
The activity was starting a sponsorship.
|
||||
"""
|
||||
NEW_SPONSORSHIP
|
||||
|
||||
"""
|
||||
The activity was scheduling a downgrade or cancellation.
|
||||
"""
|
||||
PENDING_CHANGE
|
||||
|
||||
"""
|
||||
The activity was funds being refunded to the sponsor or GitHub.
|
||||
"""
|
||||
REFUND
|
||||
|
||||
"""
|
||||
The activity was disabling matching for a previously matched sponsorship.
|
||||
"""
|
||||
SPONSOR_MATCH_DISABLED
|
||||
|
||||
"""
|
||||
The activity was changing the sponsorship tier, either directly by the sponsor or by a scheduled/pending change.
|
||||
"""
|
||||
TIER_CHANGE
|
||||
}
|
||||
|
||||
"""
|
||||
The connection type for SponsorsActivity.
|
||||
"""
|
||||
type SponsorsActivityConnection {
|
||||
"""
|
||||
A list of edges.
|
||||
"""
|
||||
edges: [SponsorsActivityEdge]
|
||||
|
||||
"""
|
||||
A list of nodes.
|
||||
"""
|
||||
nodes: [SponsorsActivity]
|
||||
|
||||
"""
|
||||
Information to aid in pagination.
|
||||
"""
|
||||
pageInfo: PageInfo!
|
||||
|
||||
"""
|
||||
Identifies the total count of items in the connection.
|
||||
"""
|
||||
totalCount: Int!
|
||||
}
|
||||
|
||||
"""
|
||||
An edge in a connection.
|
||||
"""
|
||||
type SponsorsActivityEdge {
|
||||
"""
|
||||
A cursor for use in pagination.
|
||||
"""
|
||||
cursor: String!
|
||||
|
||||
"""
|
||||
The item at the end of the edge.
|
||||
"""
|
||||
node: SponsorsActivity
|
||||
}
|
||||
|
||||
"""
|
||||
Ordering options for GitHub Sponsors activity connections.
|
||||
"""
|
||||
input SponsorsActivityOrder {
|
||||
"""
|
||||
The ordering direction.
|
||||
"""
|
||||
direction: OrderDirection!
|
||||
|
||||
"""
|
||||
The field to order activity by.
|
||||
"""
|
||||
field: SponsorsActivityOrderField!
|
||||
}
|
||||
|
||||
"""
|
||||
Properties by which GitHub Sponsors activity connections can be ordered.
|
||||
"""
|
||||
enum SponsorsActivityOrderField {
|
||||
"""
|
||||
Order activities by when they happened.
|
||||
"""
|
||||
TIMESTAMP
|
||||
}
|
||||
|
||||
"""
|
||||
The possible time periods for which Sponsors activities can be requested.
|
||||
"""
|
||||
enum SponsorsActivityPeriod {
|
||||
"""
|
||||
Don't restrict the activity to any date range, include all activity.
|
||||
"""
|
||||
ALL
|
||||
|
||||
"""
|
||||
The previous calendar day.
|
||||
"""
|
||||
DAY
|
||||
|
||||
"""
|
||||
The previous thirty days.
|
||||
"""
|
||||
MONTH
|
||||
|
||||
"""
|
||||
The previous seven days.
|
||||
"""
|
||||
WEEK
|
||||
}
|
||||
|
||||
"""
|
||||
A goal associated with a GitHub Sponsors listing, representing a target the sponsored maintainer would like to attain.
|
||||
"""
|
||||
@@ -37138,8 +37374,8 @@ type SponsorsTier implements Node {
|
||||
|
||||
"""
|
||||
Get a different tier for this tier's maintainer that is at the same frequency
|
||||
as this tier but with a lesser cost. Returns the published tier with the
|
||||
monthly price closest to this tier's without going over.
|
||||
as this tier but with an equal or lesser cost. Returns the published tier with
|
||||
the monthly price closest to this tier's without going over.
|
||||
"""
|
||||
closestLesserValueTier: SponsorsTier
|
||||
|
||||
@@ -43841,6 +44077,41 @@ type User implements Actor & Node & PackageOwner & ProfileOwner & ProjectOwner &
|
||||
orderBy: SavedReplyOrder = {field: UPDATED_AT, direction: DESC}
|
||||
): SavedReplyConnection
|
||||
|
||||
"""
|
||||
Events involving this sponsorable, such as new sponsorships.
|
||||
"""
|
||||
sponsorsActivities(
|
||||
"""
|
||||
Returns the elements in the list that come after the specified cursor.
|
||||
"""
|
||||
after: String
|
||||
|
||||
"""
|
||||
Returns the elements in the list that come before the specified cursor.
|
||||
"""
|
||||
before: String
|
||||
|
||||
"""
|
||||
Returns the first _n_ elements from the list.
|
||||
"""
|
||||
first: Int
|
||||
|
||||
"""
|
||||
Returns the last _n_ elements from the list.
|
||||
"""
|
||||
last: Int
|
||||
|
||||
"""
|
||||
Ordering options for activity returned from the connection.
|
||||
"""
|
||||
orderBy: SponsorsActivityOrder = {field: TIMESTAMP, direction: DESC}
|
||||
|
||||
"""
|
||||
Filter activities returned to only those that occurred in a given time range.
|
||||
"""
|
||||
period: SponsorsActivityPeriod = MONTH
|
||||
): SponsorsActivityConnection!
|
||||
|
||||
"""
|
||||
The GitHub Sponsors listing for this user or organization.
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user