import { IIssue } from "./issues";
import type { IProjectLite } from "./projects";
export interface IInboxIssue extends IIssue {
issue_inbox: {
duplicate_to: string | null;
id: string;
snoozed_till: Date | null;
source: string;
status: -2 | -1 | 0 | 1 | 2;
}[];
}
export interface IInbox {
project_detail: IProjectLite;
pending_issue_count: number;
created_at: Date;
updated_at: Date;
name: string;
description: string;
is_default: boolean;
created_by: string;
updated_by: string;
project: string;
view_props: { filters: IInboxFilterOptions };
workspace: string;
interface StatePending {
readonly status: -2;
interface StatusReject {
status: -1;
interface StatusSnoozed {
status: 0;
snoozed_till: Date;
interface StatusAccepted {
status: 1;
interface StatusDuplicate {
status: 2;
duplicate_to: string;
export type TInboxStatus = StatusReject | StatusSnoozed | StatusAccepted | StatusDuplicate | StatePending;
export interface IInboxFilterOptions {
priority?: string[] | null;
inbox_status?: number[] | null;
export interface IInboxQueryParams {
priority: string | null;
inbox_status: string | null;