From ae5193493a446f33b3159e4c15dcc5a778ec8e90 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Sun, 17 Jan 2021 18:23:29 -0500 Subject: [PATCH] build: generate types --- schema.d.ts | 4 ++++ 1 file changed, 4 insertions(+) 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;