@@ -1,4 +1,5 @@
import {
+ ApprovlaViewable,
EUpDown,
IAuditScoreLog,
IAuditScoreRemark,
@@ -179,3 +180,11 @@ export namespace PostApprovlaValidAuditScore {
errMatterIds: string[];
};
}
+
+export namespace GetApprovalViewable {
+ export type Params = {
+ userID?: string;
+ };
+ export type Response = Record<ApprovlaViewable, boolean>;
+}
@@ -12,3 +12,9 @@ export interface IApprovalStatus {
executorID: string;
members: [executorMember];
+export enum ApprovlaViewable {
+ ApprovalProgress = 'approvalProgress',
+ ApprovalBrief = 'approvalBrief',
+ ApprovalLog = 'approvalLog',