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 v15.25.0 #1007

Merged
merged 3 commits into from
Jul 8, 2024
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 @@ -18,7 +18,7 @@
"@graphql-codegen/import-types-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.9",
"@graphql-codegen/typescript-operations": "4.2.3",
"@octokit/graphql-schema": "15.24.0",
"@octokit/graphql-schema": "15.25.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/node": "20.14.10",
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.

17 changes: 17 additions & 0 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9436,6 +9436,7 @@ export type IssueProjectsV2Args = {
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};
Expand Down Expand Up @@ -15460,6 +15461,7 @@ export type OrganizationProjectsV2Args = {
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};
Expand Down Expand Up @@ -17996,10 +17998,21 @@ export type ProjectV2OwnerProjectsV2Args = {
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};

/** The possible roles of a collaborator on a project. */
export enum ProjectV2PermissionLevel {
/** The collaborator can view, edit, and maange the settings of the project */
Admin = 'ADMIN',
/** The collaborator can view the project */
Read = 'READ',
/** The collaborator can view and edit the project */
Write = 'WRITE'
}

/** Recent projects for the owner. */
export type ProjectV2Recent = {
/** Recent projects that this user has modified in the context of the owner. */
Expand Down Expand Up @@ -18932,6 +18945,7 @@ export type PullRequestProjectsV2Args = {
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};
Expand Down Expand Up @@ -22888,6 +22902,7 @@ export type RepositoryProjectsV2Args = {
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};
Expand Down Expand Up @@ -27296,6 +27311,7 @@ export type TeamProjectsV2Args = {
filterBy?: InputMaybe<ProjectV2Filters>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};
Expand Down Expand Up @@ -30695,6 +30711,7 @@ export type UserProjectsV2Args = {
before?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
last?: InputMaybe<Scalars['Int']['input']>;
minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
orderBy?: InputMaybe<ProjectV2Order>;
query?: InputMaybe<Scalars['String']['input']>;
};
Expand Down
Loading