[deploy] add ticket sla, pipeline, automations, kb
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 36s

This commit is contained in:
Pascal Prießnitz
2025-12-03 13:24:25 +01:00
parent ecb348efd0
commit 5bf42f4610
12 changed files with 561 additions and 123 deletions

View File

@@ -21,11 +21,18 @@ export interface TicketRecord {
guildId: string;
topic?: string;
priority?: 'low' | 'normal' | 'high';
status: 'open' | 'in-progress' | 'closed';
status: TicketStatus;
claimedBy?: string;
transcript?: string;
firstClaimAt?: Date | null;
firstResponseAt?: Date | null;
kbSuggestionSentAt?: Date | null;
createdAt?: Date;
updatedAt?: Date;
}
export type TicketStatus = 'neu' | 'in_bearbeitung' | 'warten_auf_user' | 'erledigt' | 'open' | 'in-progress' | 'closed';
export interface ForumUser {
discordId: string;
forumUserId: string;