defde2bca9
- Add AcceptInvitationParams and AcceptInvitationRequest schemas - Add AddDeployKeyParams, AddDomainParams, AddGpgKeyParams, AddMemberParams, AddReplyParams, AddRepoMemberParams, and AddSshKeyParams schemas - Add ApiEmptyResponse and ApiErrorResponse schemas - Add ApiResponse schemas for BranchMergeCheck, BranchProtectionRule, CaptchaResponse, ContextMe, CreateInvitationResponse, EmailResponse, Enable2FAResponse, Get2FAStatusResponse - Add ApiResponse schemas for Issue, IssueAssignee, IssueComment, IssueEvent, IssueLabel, IssueLabelRelation, IssueMilestone, IssuePrRelation, IssueReaction, IssueRepoRelation, IssueSubscriber, and IssueTemplate - Add ApiResponse schemas for Option_BranchProtectionRule, PrAssignee, PrCheckRun, PrCommit, PrEvent, PrFile, and PrLabel
34 lines
784 B
TypeScript
34 lines
784 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { State } from './State';
|
|
export type ApiResponse_PullRequest = {
|
|
data: {
|
|
author_id: string;
|
|
base_commit_sha?: string | null;
|
|
body?: string | null;
|
|
closed_at?: string | null;
|
|
closed_by?: string | null;
|
|
created_at: string;
|
|
deleted_at?: string | null;
|
|
draft: boolean;
|
|
head_commit_sha: string;
|
|
id: string;
|
|
locked: boolean;
|
|
merge_commit_sha?: string | null;
|
|
merged_at?: string | null;
|
|
merged_by?: string | null;
|
|
number: number;
|
|
repo_id: string;
|
|
source_branch: string;
|
|
source_repo_id: string;
|
|
state: State;
|
|
target_branch: string;
|
|
target_repo_id: string;
|
|
title: string;
|
|
updated_at: string;
|
|
};
|
|
};
|
|
|