export interface PullRequestCommentChangeLogUpdate { readonly field: "notification" | "description" | "assignee"; readonly newValue: string | null; readonly originalValue: string | null; } export interface PullRequestCommentChangeLogNotificationPullRequestCreate { readonly field: "notification"; readonly newValue: "pullRequestCreate"; readonly originalValue: null; }