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.14.0 #938

Merged
merged 3 commits into from
Apr 29, 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.6",
"@graphql-codegen/typescript-operations": "4.2.0",
"@octokit/graphql-schema": "15.13.0",
"@octokit/graphql-schema": "15.14.0",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/node": "20.12.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.

7 changes: 6 additions & 1 deletion src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23286,6 +23286,8 @@ export type RepositoryRulesetBypassActor = Node & {
actor?: Maybe<BypassActor>;
/** The mode for the bypass actor */
bypassMode?: Maybe<RepositoryRulesetBypassActorBypassMode>;
/** This actor represents the ability for a deploy key to bypass */
deployKey: Scalars['Boolean']['output'];
/** The Node ID of the RepositoryRulesetBypassActor object */
id: Scalars['ID']['output'];
/** This actor represents the ability for an organization owner to bypass */
Expand Down Expand Up @@ -23330,13 +23332,16 @@ export type RepositoryRulesetBypassActorEdge = {

/**
* Specifies the attributes for a new or updated ruleset bypass actor. Only one of
* `actor_id`, `repository_role_database_id`, or `organization_admin` should be specified.
* `actor_id`, `repository_role_database_id`, `organization_admin`, or `deploy_key`
* should be specified.
*/
export type RepositoryRulesetBypassActorInput = {
/** For Team and Integration bypasses, the Team or Integration ID */
actorId?: InputMaybe<Scalars['ID']['input']>;
/** The bypass mode for this actor. */
bypassMode: RepositoryRulesetBypassActorBypassMode;
/** For deploy key bypasses, true. Can only use ALWAYS as the bypass mode */
deployKey?: InputMaybe<Scalars['Boolean']['input']>;
/** For organization owner bypasses, true */
organizationAdmin?: InputMaybe<Scalars['Boolean']['input']>;
/** For role bypasses, the role database ID */
Expand Down
Loading