diff --git a/schema.d.ts b/schema.d.ts index 0c1e7c90a..65483268c 100644 --- a/schema.d.ts +++ b/schema.d.ts @@ -7141,6 +7141,7 @@ export interface PullRequestReviewDismissedEvent { due_on: string; closed_at: string | null; } | null; + draft: boolean; commits_url: string; review_comments_url: string; review_comment_url: string; @@ -7233,6 +7234,7 @@ export interface PullRequestReviewDismissedEvent { | "MEMBER" | "NONE" | "OWNER"; + active_lock_reason: "resolved" | "off-topic" | "too heated" | "spam" | null; }; repository: Repository; installation?: Installation; @@ -7323,6 +7325,7 @@ export interface PullRequestReviewEditedEvent { due_on: string; closed_at: string | null; } | null; + draft: boolean; commits_url: string; review_comments_url: string; review_comment_url: string; @@ -7415,6 +7418,7 @@ export interface PullRequestReviewEditedEvent { | "MEMBER" | "NONE" | "OWNER"; + active_lock_reason: "resolved" | "off-topic" | "too heated" | "spam" | null; }; repository: Repository; installation?: Installation;