@@ -9379,6 +9379,7 @@ export type IssueProjectsV2Args = {
93799379 before?: InputMaybe<Scalars['String']['input']>;
93809380 first?: InputMaybe<Scalars['Int']['input']>;
93819381 last?: InputMaybe<Scalars['Int']['input']>;
9382+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
93829383 orderBy?: InputMaybe<ProjectV2Order>;
93839384 query?: InputMaybe<Scalars['String']['input']>;
93849385};
@@ -15364,6 +15365,7 @@ export type OrganizationProjectsV2Args = {
1536415365 before?: InputMaybe<Scalars['String']['input']>;
1536515366 first?: InputMaybe<Scalars['Int']['input']>;
1536615367 last?: InputMaybe<Scalars['Int']['input']>;
15368+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
1536715369 orderBy?: InputMaybe<ProjectV2Order>;
1536815370 query?: InputMaybe<Scalars['String']['input']>;
1536915371};
@@ -17856,10 +17858,20 @@ export type ProjectV2OwnerProjectsV2Args = {
1785617858 before?: InputMaybe<Scalars['String']['input']>;
1785717859 first?: InputMaybe<Scalars['Int']['input']>;
1785817860 last?: InputMaybe<Scalars['Int']['input']>;
17861+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
1785917862 orderBy?: InputMaybe<ProjectV2Order>;
1786017863 query?: InputMaybe<Scalars['String']['input']>;
1786117864};
1786217865
17866+ /** The possible roles of a collaborator on a project. */
17867+ export type ProjectV2PermissionLevel =
17868+ /** The collaborator can view, edit, and maange the settings of the project */
17869+ | 'ADMIN'
17870+ /** The collaborator can view the project */
17871+ | 'READ'
17872+ /** The collaborator can view and edit the project */
17873+ | 'WRITE';
17874+
1786317875/** Recent projects for the owner. */
1786417876export type ProjectV2Recent = {
1786517877 /** Recent projects that this user has modified in the context of the owner. */
@@ -18784,6 +18796,7 @@ export type PullRequestProjectsV2Args = {
1878418796 before?: InputMaybe<Scalars['String']['input']>;
1878518797 first?: InputMaybe<Scalars['Int']['input']>;
1878618798 last?: InputMaybe<Scalars['Int']['input']>;
18799+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
1878718800 orderBy?: InputMaybe<ProjectV2Order>;
1878818801 query?: InputMaybe<Scalars['String']['input']>;
1878918802};
@@ -22717,6 +22730,7 @@ export type RepositoryProjectsV2Args = {
2271722730 before?: InputMaybe<Scalars['String']['input']>;
2271822731 first?: InputMaybe<Scalars['Int']['input']>;
2271922732 last?: InputMaybe<Scalars['Int']['input']>;
22733+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
2272022734 orderBy?: InputMaybe<ProjectV2Order>;
2272122735 query?: InputMaybe<Scalars['String']['input']>;
2272222736};
@@ -27073,6 +27087,7 @@ export type TeamProjectsV2Args = {
2707327087 filterBy?: InputMaybe<ProjectV2Filters>;
2707427088 first?: InputMaybe<Scalars['Int']['input']>;
2707527089 last?: InputMaybe<Scalars['Int']['input']>;
27090+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
2707627091 orderBy?: InputMaybe<ProjectV2Order>;
2707727092 query?: InputMaybe<Scalars['String']['input']>;
2707827093};
@@ -30445,6 +30460,7 @@ export type UserProjectsV2Args = {
3044530460 before?: InputMaybe<Scalars['String']['input']>;
3044630461 first?: InputMaybe<Scalars['Int']['input']>;
3044730462 last?: InputMaybe<Scalars['Int']['input']>;
30463+ minPermissionLevel?: InputMaybe<ProjectV2PermissionLevel>;
3044830464 orderBy?: InputMaybe<ProjectV2Order>;
3044930465 query?: InputMaybe<Scalars['String']['input']>;
3045030466};
0 commit comments