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
24 lines
537 B
TypeScript
24 lines
537 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { KeyType } from './KeyType';
|
|
export type ApiResponse_RepoDeployKey = {
|
|
data: {
|
|
created_at: string;
|
|
created_by: string;
|
|
expires_at?: string | null;
|
|
fingerprint_sha256: string;
|
|
id: string;
|
|
key_type: KeyType;
|
|
last_used_at?: string | null;
|
|
public_key: string;
|
|
read_only: boolean;
|
|
repo_id: string;
|
|
revoked_at?: string | null;
|
|
title: string;
|
|
updated_at: string;
|
|
};
|
|
};
|
|
|