Merge branch 'master' of http://82.157.175.59:3000/GenarrativeAI/Genarrative
Some checks failed
CI / verify (push) Has been cancelled
Some checks failed
CI / verify (push) Has been cancelled
This commit is contained in:
@@ -143,6 +143,39 @@ export type CreateProfileRechargeOrderResponse = {
|
||||
center: ProfileRechargeCenterResponse;
|
||||
};
|
||||
|
||||
export type ProfileFeedbackStatus = 'open';
|
||||
|
||||
export type ProfileFeedbackEvidenceItemInput = {
|
||||
fileName: string;
|
||||
contentType: string;
|
||||
sizeBytes: number;
|
||||
dataUrl: string;
|
||||
};
|
||||
|
||||
export type SubmitProfileFeedbackRequest = {
|
||||
description: string;
|
||||
contactPhone?: string | null;
|
||||
evidenceItems: ProfileFeedbackEvidenceItemInput[];
|
||||
};
|
||||
|
||||
export type ProfileFeedbackEvidenceItem = {
|
||||
evidenceId: string;
|
||||
fileName: string;
|
||||
contentType: string;
|
||||
sizeBytes: number;
|
||||
};
|
||||
|
||||
export type ProfileFeedbackSubmission = {
|
||||
feedbackId: string;
|
||||
status: ProfileFeedbackStatus;
|
||||
createdAt: string;
|
||||
evidenceItems: ProfileFeedbackEvidenceItem[];
|
||||
};
|
||||
|
||||
export type SubmitProfileFeedbackResponse = {
|
||||
feedback: ProfileFeedbackSubmission;
|
||||
};
|
||||
|
||||
export type ProfileReferralInviteCenterResponse = {
|
||||
inviteCode: string;
|
||||
inviteLinkPath: string;
|
||||
|
||||
Reference in New Issue
Block a user