feat(feedback): add problem reporting flow
This commit is contained in:
@@ -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";
|
||||
Reference in New Issue
Block a user