Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @octokit/graphql-schema to v14.30.0 #722

Merged
merged 3 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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": "2.2.6",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@octokit/graphql-schema": "14.29.0",
"@octokit/graphql-schema": "14.30.0",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.4",
"@types/node": "16.18.50",
Expand Down
13 changes: 13 additions & 0 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2844,6 +2844,17 @@ export type ConnectedEvent = Node & {
subject: ReferencedSubject;
};

/** The Contributing Guidelines for a repository. */
export type ContributingGuidelines = {
__typename?: 'ContributingGuidelines';
/** The body of the Contributing Guidelines. */
body?: Maybe<Scalars['String']['output']>;
/** The HTTP path for the Contributing Guidelines. */
resourcePath?: Maybe<Scalars['URI']['output']>;
/** The HTTP URL for the Contributing Guidelines. */
url?: Maybe<Scalars['URI']['output']>;
};

/** Represents a contribution a user made on GitHub, such as opening an issue. */
export type Contribution = {
/**
Expand Down Expand Up @@ -20361,6 +20372,8 @@ export type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent &
commitComments: CommitCommentConnection;
/** Returns a list of contact links associated to the repository */
contactLinks?: Maybe<Array<RepositoryContactLink>>;
/** Returns the contributing guidelines for this repository. */
contributingGuidelines?: Maybe<ContributingGuidelines>;
/** Identifies the date and time when the object was created. */
createdAt: Scalars['DateTime']['output'];
/** Identifies the primary key from the database. */
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2048,10 +2048,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"

"@octokit/graphql-schema@14.29.0":
version "14.29.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.29.0.tgz#b42b0e9dbb69a4dcb05bda7375f9bdece1ed229f"
integrity sha512-FhNHcOTPhB7SeBLmbWHJ8OyA6LE8fD1S5oxFShQWxHq69WTrnpVmU8j9iNOh+NzsnZBNPfdJ7uOzGlTYL/3QzA==
"@octokit/graphql-schema@14.30.0":
version "14.30.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.30.0.tgz#1dea20cd38142d7f18f5fb009384cc9593cef957"
integrity sha512-AQ+uuREsxEgdMS1sF7RLn0aYhfRPOkitcBLfv3mL7f0DgfP/HUh+Ew2t1ZlVi0i72LHbTnQMFgvJ1rP6jZ/GhA==
dependencies:
graphql "^16.0.0"
graphql-tag "^2.10.3"
Expand Down