Skip to content

Commit

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

* Generated by GitHub Actions (ts / generate)

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

* 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 c8773e1 commit 52c57cb
Show file tree
Hide file tree
Showing 3 changed files with 188 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.20.0",
"@octokit/graphql-schema": "15.21.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.

182 changes: 182 additions & 0 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4055,6 +4055,31 @@ export type CreateProjectV2Payload = {
projectV2?: Maybe<ProjectV2>;
};

/** Autogenerated input type of CreateProjectV2StatusUpdate */
export type CreateProjectV2StatusUpdateInput = {
/** The body of the status update. */
body?: InputMaybe<Scalars['String']['input']>;
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** The ID of the Project to create the status update in. */
projectId: Scalars['ID']['input'];
/** The start date of the status update. */
startDate?: InputMaybe<Scalars['Date']['input']>;
/** The status of the status update. */
status?: InputMaybe<ProjectV2StatusUpdateStatus>;
/** The target date of the status update. */
targetDate?: InputMaybe<Scalars['Date']['input']>;
};

/** Autogenerated return type of CreateProjectV2StatusUpdate. */
export type CreateProjectV2StatusUpdatePayload = {
__typename?: 'CreateProjectV2StatusUpdatePayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The status update updated in the project. */
statusUpdate?: Maybe<ProjectV2StatusUpdate>;
};

/** Autogenerated input type of CreatePullRequest */
export type CreatePullRequestInput = {
/**
Expand Down Expand Up @@ -5093,6 +5118,25 @@ export type DeleteProjectV2Payload = {
projectV2?: Maybe<ProjectV2>;
};

/** Autogenerated input type of DeleteProjectV2StatusUpdate */
export type DeleteProjectV2StatusUpdateInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** The ID of the status update to be removed. */
statusUpdateId: Scalars['ID']['input'];
};

/** Autogenerated return type of DeleteProjectV2StatusUpdate. */
export type DeleteProjectV2StatusUpdatePayload = {
__typename?: 'DeleteProjectV2StatusUpdatePayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The ID of the deleted status update. */
deletedStatusUpdateId?: Maybe<Scalars['ID']['output']>;
/** The project the deleted status update was in. */
projectV2?: Maybe<ProjectV2>;
};

/** Autogenerated input type of DeleteProjectV2Workflow */
export type DeleteProjectV2WorkflowInput = {
/** A unique identifier for the client performing the mutation. */
Expand Down Expand Up @@ -11554,6 +11598,8 @@ export type Mutation = {
createProjectV2?: Maybe<CreateProjectV2Payload>;
/** Create a new project field. */
createProjectV2Field?: Maybe<CreateProjectV2FieldPayload>;
/** Creates a status update within a Project. */
createProjectV2StatusUpdate?: Maybe<CreateProjectV2StatusUpdatePayload>;
/** Create a new pull request */
createPullRequest?: Maybe<CreatePullRequestPayload>;
/** Create a new Git Ref. */
Expand Down Expand Up @@ -11615,6 +11661,8 @@ export type Mutation = {
deleteProjectV2Field?: Maybe<DeleteProjectV2FieldPayload>;
/** Deletes an item from a Project. */
deleteProjectV2Item?: Maybe<DeleteProjectV2ItemPayload>;
/** Deletes a project status update. */
deleteProjectV2StatusUpdate?: Maybe<DeleteProjectV2StatusUpdatePayload>;
/** Deletes a project workflow. */
deleteProjectV2Workflow?: Maybe<DeleteProjectV2WorkflowPayload>;
/** Deletes a pull request review. */
Expand Down Expand Up @@ -11886,6 +11934,8 @@ export type Mutation = {
updateProjectV2ItemFieldValue?: Maybe<UpdateProjectV2ItemFieldValuePayload>;
/** This mutation updates the position of the item in the project, where the position represents the priority of an item. */
updateProjectV2ItemPosition?: Maybe<UpdateProjectV2ItemPositionPayload>;
/** Updates a status update within a Project. */
updateProjectV2StatusUpdate?: Maybe<UpdateProjectV2StatusUpdatePayload>;
/** Update a pull request */
updatePullRequest?: Maybe<UpdatePullRequestPayload>;
/** Merge or Rebase HEAD from upstream branch into pull request branch */
Expand Down Expand Up @@ -12306,6 +12356,12 @@ export type MutationCreateProjectV2FieldArgs = {
};


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


/** The root query for implementing GraphQL mutations. */
export type MutationCreatePullRequestArgs = {
input: CreatePullRequestInput;
Expand Down Expand Up @@ -12480,6 +12536,12 @@ export type MutationDeleteProjectV2ItemArgs = {
};


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


/** The root query for implementing GraphQL mutations. */
export type MutationDeleteProjectV2WorkflowArgs = {
input: DeleteProjectV2WorkflowInput;
Expand Down Expand Up @@ -13260,6 +13322,12 @@ export type MutationUpdateProjectV2ItemPositionArgs = {
};


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


/** The root query for implementing GraphQL mutations. */
export type MutationUpdatePullRequestArgs = {
input: UpdatePullRequestInput;
Expand Down Expand Up @@ -17103,6 +17171,8 @@ export type ProjectV2 = Closable & Node & Updatable & {
resourcePath: Scalars['URI']['output'];
/** The project's short description. */
shortDescription?: Maybe<Scalars['String']['output']>;
/** List of the status updates in the project. */
statusUpdates: ProjectV2StatusUpdateConnection;
/** The teams the project is linked to. */
teams: TeamConnection;
/** Returns true if this project is a template. */
Expand Down Expand Up @@ -17166,6 +17236,16 @@ export type ProjectV2RepositoriesArgs = {
};


/** New projects that manage issues, pull requests and drafts using tables and boards. */
export type ProjectV2StatusUpdatesArgs = {
after?: InputMaybe<Scalars['String']['input']>;
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
orderBy?: InputMaybe<ProjectV2StatusOrder>;
};


/** New projects that manage issues, pull requests and drafts using tables and boards. */
export type ProjectV2TeamsArgs = {
after?: InputMaybe<Scalars['String']['input']>;
Expand Down Expand Up @@ -18064,6 +18144,83 @@ export enum ProjectV2State {
Open = 'OPEN'
}

/** Ways in which project v2 status updates can be ordered. */
export type ProjectV2StatusOrder = {
/** The direction in which to order nodes. */
direction: OrderDirection;
/** The field by which to order nodes. */
field: ProjectV2StatusUpdateOrderField;
};

/** A status update within a project. */
export type ProjectV2StatusUpdate = Node & {
__typename?: 'ProjectV2StatusUpdate';
/** The body of the status update. */
body?: Maybe<Scalars['String']['output']>;
/** The body of the status update rendered to HTML. */
bodyHTML?: Maybe<Scalars['HTML']['output']>;
/** Identifies the date and time when the object was created. */
createdAt: Scalars['DateTime']['output'];
/** The actor who created the status update. */
creator?: Maybe<Actor>;
/** Identifies the primary key from the database. */
databaseId?: Maybe<Scalars['Int']['output']>;
/** The Node ID of the ProjectV2StatusUpdate object */
id: Scalars['ID']['output'];
/** The project that contains this status update. */
project: ProjectV2;
/** The start date of the status update. */
startDate?: Maybe<Scalars['Date']['output']>;
/** The status of the status update. */
status?: Maybe<ProjectV2StatusUpdateStatus>;
/** The target date of the status update. */
targetDate?: Maybe<Scalars['Date']['output']>;
/** Identifies the date and time when the object was last updated. */
updatedAt: Scalars['DateTime']['output'];
};

/** The connection type for ProjectV2StatusUpdate. */
export type ProjectV2StatusUpdateConnection = {
__typename?: 'ProjectV2StatusUpdateConnection';
/** A list of edges. */
edges?: Maybe<Array<Maybe<ProjectV2StatusUpdateEdge>>>;
/** A list of nodes. */
nodes?: Maybe<Array<Maybe<ProjectV2StatusUpdate>>>;
/** 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 ProjectV2StatusUpdateEdge = {
__typename?: 'ProjectV2StatusUpdateEdge';
/** A cursor for use in pagination. */
cursor: Scalars['String']['output'];
/** The item at the end of the edge. */
node?: Maybe<ProjectV2StatusUpdate>;
};

/** Properties by which project v2 status updates can be ordered. */
export enum ProjectV2StatusUpdateOrderField {
/** Allows chronological ordering of project v2 status updates. */
CreatedAt = 'CREATED_AT'
}

/** The possible statuses of a project v2. */
export enum ProjectV2StatusUpdateStatus {
/** A project v2 that is at risk and encountering some challenges. */
AtRisk = 'AT_RISK',
/** A project v2 that is complete. */
Complete = 'COMPLETE',
/** A project v2 that is inactive. */
Inactive = 'INACTIVE',
/** A project v2 that is off track and needs attention. */
OffTrack = 'OFF_TRACK',
/** A project v2 that is on track with no risks. */
OnTrack = 'ON_TRACK'
}

/** A view within a ProjectV2. */
export type ProjectV2View = Node & {
__typename?: 'ProjectV2View';
Expand Down Expand Up @@ -29595,6 +29752,31 @@ export type UpdateProjectV2Payload = {
projectV2?: Maybe<ProjectV2>;
};

/** Autogenerated input type of UpdateProjectV2StatusUpdate */
export type UpdateProjectV2StatusUpdateInput = {
/** The body of the status update. */
body?: InputMaybe<Scalars['String']['input']>;
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** The start date of the status update. */
startDate?: InputMaybe<Scalars['Date']['input']>;
/** The status of the status update. */
status?: InputMaybe<ProjectV2StatusUpdateStatus>;
/** The ID of the status update to be updated. */
statusUpdateId: Scalars['ID']['input'];
/** The target date of the status update. */
targetDate?: InputMaybe<Scalars['Date']['input']>;
};

/** Autogenerated return type of UpdateProjectV2StatusUpdate. */
export type UpdateProjectV2StatusUpdatePayload = {
__typename?: 'UpdateProjectV2StatusUpdatePayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The status update updated in the project. */
statusUpdate?: Maybe<ProjectV2StatusUpdate>;
};

/** Autogenerated input type of UpdatePullRequestBranch */
export type UpdatePullRequestBranchInput = {
/** A unique identifier for the client performing the mutation. */
Expand Down

0 comments on commit 52c57cb

Please sign in to comment.