Add terminal feedback workflow

This commit is contained in:
2569718930@qq.com
2026-06-01 21:10:37 +08:00
parent f1e577ea8a
commit 8fc9f3ae1a
20 changed files with 1258 additions and 2 deletions
+20
View File
@@ -136,6 +136,26 @@ export type PaymentsPayload = {
total?: number;
};
export type UserFeedbackEntry = {
id: number;
category?: string;
message?: string;
source?: string;
status?: string;
contact?: string;
user_id?: string;
user_email?: string;
context?: Record<string, unknown>;
created_at?: string;
updated_at?: string;
};
export type UserFeedbackPayload = {
feedback?: UserFeedbackEntry[];
total?: number;
status_counts?: Record<string, number>;
};
export type BillingRiskIssue = {
category?: string;
severity?: "high" | "medium" | "low" | string;