mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
126 lines
2.5 KiB
TypeScript
126 lines
2.5 KiB
TypeScript
import type { IState, IUser, IProject } from "./";
|
|
|
|
export interface IssueResponse {
|
|
next_cursor: string;
|
|
prev_cursor: string;
|
|
next_page_results: boolean;
|
|
prev_page_results: boolean;
|
|
count: number;
|
|
total_pages: number;
|
|
extra_stats: null;
|
|
results: IIssue[];
|
|
}
|
|
|
|
export interface IIssue {
|
|
id: string;
|
|
state_detail: IState;
|
|
label_details: any[];
|
|
assignee_details: IUser[];
|
|
assignees_list: string[];
|
|
blocked_by_issue_details: any[];
|
|
blocked_issues: BlockeIssue[];
|
|
blocker_issues: BlockeIssue[];
|
|
blockers_list: string[];
|
|
blocked_list: string[];
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
name: string;
|
|
description: string;
|
|
priority: string | null;
|
|
start_date: null;
|
|
target_date: string | null;
|
|
sequence_id: number;
|
|
attachments: any[];
|
|
created_by: string;
|
|
updated_by: string;
|
|
project: string;
|
|
project_detail: IProject;
|
|
workspace: string;
|
|
parent: string | null;
|
|
parent_detail: IProject | null;
|
|
state: string;
|
|
assignees: any[] | null;
|
|
labels: any[];
|
|
labels_list: string[];
|
|
blockers: any[];
|
|
blocked_issue_details: any[];
|
|
sprints: string | null;
|
|
}
|
|
|
|
export interface BlockeIssue {
|
|
id: string;
|
|
blocked_issue_detail?: BlockeIssueDetail;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
created_by: string;
|
|
updated_by: string;
|
|
project: string;
|
|
workspace: string;
|
|
block: string;
|
|
blocked_by: string;
|
|
blocker_issue_detail?: BlockeIssueDetail;
|
|
}
|
|
|
|
export interface BlockeIssueDetail {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
priority: null;
|
|
start_date: null;
|
|
target_date: null;
|
|
}
|
|
|
|
export interface IIssueComment {
|
|
id: string;
|
|
actor: string;
|
|
actor_detail: IUser;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
comment: string;
|
|
attachments: any[];
|
|
created_by: string;
|
|
updated_by: string;
|
|
project: string;
|
|
workspace: string;
|
|
issue: string;
|
|
}
|
|
export type IssuePriorities = {
|
|
id: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
uuid: string;
|
|
properties: Properties;
|
|
created_by: number;
|
|
updated_by: number;
|
|
user: string;
|
|
};
|
|
|
|
export type Properties = {
|
|
key: boolean;
|
|
name: boolean;
|
|
parent: boolean;
|
|
project: boolean;
|
|
state: boolean;
|
|
assignee: boolean;
|
|
description: boolean;
|
|
priority: boolean;
|
|
start_date: boolean;
|
|
target_date: boolean;
|
|
sequence_id: boolean;
|
|
attachments: boolean;
|
|
children: boolean;
|
|
cycle: boolean;
|
|
};
|
|
|
|
export interface IIssueLabels {
|
|
id: string;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
name: string;
|
|
description: string;
|
|
created_by: string;
|
|
updated_by: string;
|
|
project: string;
|
|
workspace: string;
|
|
}
|