feat(feedback): add problem reporting flow

This commit is contained in:
2026-07-16 18:30:34 +08:00
parent 4981de9b18
commit 37f45f0736
34 changed files with 1866 additions and 4 deletions
+1
View File
@@ -0,0 +1 @@
export * from "./response";
@@ -0,0 +1,12 @@
import { z } from "zod";
export const FeedbackSubmitResponseSchema = z.object({
feedbackId: z.string().min(1),
});
export type FeedbackSubmitResponseInput = z.input<
typeof FeedbackSubmitResponseSchema
>;
export type FeedbackSubmitResponseData = z.output<
typeof FeedbackSubmitResponseSchema
>;
@@ -0,0 +1 @@
export * from "./feedback_submit_response";