Skip to content

Commit

Permalink
fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
MahtabBukhari committed Jan 3, 2025
1 parent 0f75b38 commit 6c8b2e1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/store/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ export interface PersonOffer {
created: number;
}

export interface Jwt {
jwt: string;
}

export interface QueryParams {
page?: number;
limit?: number;
Expand Down Expand Up @@ -424,6 +428,26 @@ export interface Ticket {
updated_at?: Date;
}

export interface CreateTicketInput {
feature_uuid: string;
phase_uuid: string;
name: string;
description: string;
sequence?: number;
dependency?: string[];
status?: TicketStatus;
}

export interface UpdateTicketInput {
uuid: string;
name?: string;
description?: string;
sequence?: number;
dependency?: string[];
status?: TicketStatus;
version?: number;
}

export interface TicketMessage {
broadcastType: 'pool' | 'direct';
sourceSessionID: string;
Expand Down

0 comments on commit 6c8b2e1

Please sign in to comment.