Skip to content

Commit

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

* Generated by GitHub Actions (ts / generate)

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

* 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 Jun 21, 2024
1 parent 51c8ed3 commit 60fab26
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@graphql-codegen/import-types-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.7",
"@graphql-codegen/typescript-operations": "4.2.1",
"@octokit/graphql-schema": "15.21.0",
"@octokit/graphql-schema": "15.22.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/node": "20.14.7",
Expand Down
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3431,6 +3431,25 @@ export type ConvertProjectCardNoteToIssuePayload = {
projectCard?: Maybe<ProjectCard>;
};

/** Autogenerated input type of ConvertProjectV2DraftIssueItemToIssue */
export type ConvertProjectV2DraftIssueItemToIssueInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** The ID of the draft issue ProjectV2Item to convert. */
itemId: Scalars['ID']['input'];
/** The ID of the repository to create the issue in. */
repositoryId: Scalars['ID']['input'];
};

/** Autogenerated return type of ConvertProjectV2DraftIssueItemToIssue. */
export type ConvertProjectV2DraftIssueItemToIssuePayload = {
__typename?: 'ConvertProjectV2DraftIssueItemToIssuePayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The updated project item. */
item?: Maybe<ProjectV2Item>;
};

/** Autogenerated input type of ConvertPullRequestToDraft */
export type ConvertPullRequestToDraftInput = {
/** A unique identifier for the client performing the mutation. */
Expand Down Expand Up @@ -11508,6 +11527,8 @@ export type Mutation = {
closePullRequest?: Maybe<ClosePullRequestPayload>;
/** Convert a project note card to one associated with a newly created issue. */
convertProjectCardNoteToIssue?: Maybe<ConvertProjectCardNoteToIssuePayload>;
/** Converts a projectV2 draft issue item to an issue. */
convertProjectV2DraftIssueItemToIssue?: Maybe<ConvertProjectV2DraftIssueItemToIssuePayload>;
/** Converts a pull request to draft */
convertPullRequestToDraft?: Maybe<ConvertPullRequestToDraftPayload>;
/** Copy a project. */
Expand Down Expand Up @@ -12236,6 +12257,12 @@ export type MutationConvertProjectCardNoteToIssueArgs = {
};


/** The root query for implementing GraphQL mutations. */
export type MutationConvertProjectV2DraftIssueItemToIssueArgs = {
input: ConvertProjectV2DraftIssueItemToIssueInput;
};


/** The root query for implementing GraphQL mutations. */
export type MutationConvertPullRequestToDraftArgs = {
input: ConvertPullRequestToDraftInput;
Expand Down

0 comments on commit 60fab26

Please sign in to comment.