feat(schemas): add new API schema definitions for invitation, deployment, and issue management
- 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
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { GitService } from './GitService';
|
||||
import type { Status } from './Status';
|
||||
import type { Visibility } from './Visibility';
|
||||
export type ApiResponse_Repo = {
|
||||
data: {
|
||||
archived_at?: string | null;
|
||||
created_at: string;
|
||||
default_branch: string;
|
||||
deleted_at?: string | null;
|
||||
description?: string | null;
|
||||
forked_from_repo_id?: string | null;
|
||||
git_service: GitService;
|
||||
id: string;
|
||||
is_fork: boolean;
|
||||
name: string;
|
||||
owner_id: string;
|
||||
primary_storage_node_id: string;
|
||||
status: Status;
|
||||
storage_node_ids: Array<string>;
|
||||
storage_path: string;
|
||||
updated_at: string;
|
||||
visibility: Visibility;
|
||||
workspace_id: string;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user