Skip to content

Commit

Permalink
Update dependency @octokit/graphql-schema to v14.49.0 (#849)
Browse files Browse the repository at this point in the history
* Update dependency @octokit/graphql-schema to v14.49.0

* Generated by GitHub Actions (ts / generate)

https://github.com/int128/hide-comment-action/actions/runs/7647330587

* Empty commit to trigger GitHub Actions

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: update-generated-files-action <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: int128-renovate-merge-bot[bot] <132176788+int128-renovate-merge-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jan 25, 2024
1 parent bb43848 commit 613e5b4
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@graphql-codegen/import-types-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@octokit/graphql-schema": "14.48.0",
"@octokit/graphql-schema": "14.49.0",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.11",
"@types/node": "20.11.6",
Expand Down
89 changes: 89 additions & 0 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13947,6 +13947,8 @@ export type Organization = Actor & AnnouncementBanner & MemberStatusable & Node
isVerified: Scalars['Boolean']['output'];
/** Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity. */
itemShowcase: ProfileItemShowcase;
/** Calculate how much each sponsor has ever paid total to this maintainer via GitHub Sponsors. Does not include sponsorships paid via Patreon. */
lifetimeReceivedSponsorshipValues: SponsorAndLifetimeValueConnection;
/** The organization's public profile location. */
location?: Maybe<Scalars['String']['output']>;
/** The organization's login name. */
Expand Down Expand Up @@ -14137,6 +14139,16 @@ export type OrganizationIsSponsoredByArgs = {
};


/** An account on GitHub, with one or more owners, that has repositories, members and teams. */
export type OrganizationLifetimeReceivedSponsorshipValuesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
orderBy?: InputMaybe<SponsorAndLifetimeValueOrder>;
};


/** An account on GitHub, with one or more owners, that has repositories, members and teams. */
export type OrganizationMannequinsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
Expand Down Expand Up @@ -23523,6 +23535,59 @@ export enum SocialAccountProvider {
/** Entities that can sponsor others via GitHub Sponsors */
export type Sponsor = Organization | User;

/** A GitHub account and the total amount in USD they've paid for sponsorships to a particular maintainer. Does not include payments made via Patreon. */
export type SponsorAndLifetimeValue = {
__typename?: 'SponsorAndLifetimeValue';
/** The amount in cents. */
amountInCents: Scalars['Int']['output'];
/** The amount in USD, formatted as a string. */
formattedAmount: Scalars['String']['output'];
/** The sponsor's GitHub account. */
sponsor: Sponsorable;
/** The maintainer's GitHub account. */
sponsorable: Sponsorable;
};

/** The connection type for SponsorAndLifetimeValue. */
export type SponsorAndLifetimeValueConnection = {
__typename?: 'SponsorAndLifetimeValueConnection';
/** A list of edges. */
edges?: Maybe<Array<Maybe<SponsorAndLifetimeValueEdge>>>;
/** A list of nodes. */
nodes?: Maybe<Array<Maybe<SponsorAndLifetimeValue>>>;
/** Information to aid in pagination. */
pageInfo: PageInfo;
/** Identifies the total count of items in the connection. */
totalCount: Scalars['Int']['output'];
};

/** An edge in a connection. */
export type SponsorAndLifetimeValueEdge = {
__typename?: 'SponsorAndLifetimeValueEdge';
/** A cursor for use in pagination. */
cursor: Scalars['String']['output'];
/** The item at the end of the edge. */
node?: Maybe<SponsorAndLifetimeValue>;
};

/** Ordering options for connections to get sponsor entities and associated USD amounts for GitHub Sponsors. */
export type SponsorAndLifetimeValueOrder = {
/** The ordering direction. */
direction: OrderDirection;
/** The field to order results by. */
field: SponsorAndLifetimeValueOrderField;
};

/** Properties by which sponsor and lifetime value connections can be ordered. */
export enum SponsorAndLifetimeValueOrderField {
/** Order results by how much money the sponsor has paid in total. */
LifetimeValue = 'LIFETIME_VALUE',
/** Order results by the sponsor's login (username). */
SponsorLogin = 'SPONSOR_LOGIN',
/** Order results by the sponsor's relevance to the viewer. */
SponsorRelevance = 'SPONSOR_RELEVANCE'
}

/** The connection type for Sponsor. */
export type SponsorConnection = {
__typename?: 'SponsorConnection';
Expand Down Expand Up @@ -23571,6 +23636,8 @@ export type Sponsorable = {
isSponsoredBy: Scalars['Boolean']['output'];
/** True if the viewer is sponsored by this user/organization. */
isSponsoringViewer: Scalars['Boolean']['output'];
/** Calculate how much each sponsor has ever paid total to this maintainer via GitHub Sponsors. Does not include sponsorships paid via Patreon. */
lifetimeReceivedSponsorshipValues: SponsorAndLifetimeValueConnection;
/** The estimated monthly GitHub Sponsors income for this user/organization in cents (USD). */
monthlyEstimatedSponsorsIncomeInCents: Scalars['Int']['output'];
/** List of users and organizations this entity is sponsoring. */
Expand Down Expand Up @@ -23606,6 +23673,16 @@ export type SponsorableIsSponsoredByArgs = {
};


/** Entities that can sponsor or be sponsored through GitHub Sponsors. */
export type SponsorableLifetimeReceivedSponsorshipValuesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
orderBy?: InputMaybe<SponsorAndLifetimeValueOrder>;
};


/** Entities that can sponsor or be sponsored through GitHub Sponsors. */
export type SponsorableSponsoringArgs = {
after?: InputMaybe<Scalars['String']['input']>;
Expand Down Expand Up @@ -28305,6 +28382,8 @@ export type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & P
issues: IssueConnection;
/** Showcases a selection of repositories and gists that the profile owner has either curated or that have been selected automatically based on popularity. */
itemShowcase: ProfileItemShowcase;
/** Calculate how much each sponsor has ever paid total to this maintainer via GitHub Sponsors. Does not include sponsorships paid via Patreon. */
lifetimeReceivedSponsorshipValues: SponsorAndLifetimeValueConnection;
/** A user-curated list of repositories */
lists: UserListConnection;
/** The user's public profile location. */
Expand Down Expand Up @@ -28546,6 +28625,16 @@ export type UserIssuesArgs = {
};


/** A user is an individual's account on GitHub that owns repositories and can make new content. */
export type UserLifetimeReceivedSponsorshipValuesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
orderBy?: InputMaybe<SponsorAndLifetimeValueOrder>;
};


/** A user is an individual's account on GitHub that owns repositories and can make new content. */
export type UserListsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2079,10 +2079,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"

"@octokit/graphql-schema@14.48.0":
version "14.48.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.48.0.tgz#6e9134afc280fb29e9a673f922d53f7c4f8f8dc4"
integrity sha512-0+jbKiRdnuh/nYTD5qMpxLqsZg8hv+Jhp/Xfxj1D59jUUGjp3uVPcp3wp0mR/3chyaRHitk9UXhCpH3/zP1Iqw==
"@octokit/graphql-schema@14.49.0":
version "14.49.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.49.0.tgz#c2fc25566817a14daf256418bc2234f62f367890"
integrity sha512-GWWLKiFmY/1hl8KtHG+L1cYD4pOz2cZ8YKXkCCRVQ8ebVRN+QapohnTB4ZiBXaube9g8FwYrLzOr+AVwr6yqCQ==
dependencies:
graphql "^16.0.0"
graphql-tag "^2.10.3"
Expand Down

0 comments on commit 613e5b4

Please sign in to comment.