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
27 lines
632 B
TypeScript
27 lines
632 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { Role } from './Role';
|
|
import type { Status } from './Status';
|
|
import type { Visibility } from './Visibility';
|
|
export type ApiResponse_User = {
|
|
data: {
|
|
avatar_url?: string | null;
|
|
bio?: string | null;
|
|
created_at: string;
|
|
deleted_at?: string | null;
|
|
display_name?: string | null;
|
|
id: string;
|
|
is_active: boolean;
|
|
is_bot: boolean;
|
|
last_login_at?: string | null;
|
|
role: Role;
|
|
status: Status;
|
|
updated_at: string;
|
|
username: string;
|
|
visibility: Visibility;
|
|
};
|
|
};
|
|
|