mirror of
https://github.com/docmost/docmost.git
synced 2026-05-07 14:43:06 +08:00
bd68e47e03
* feat: page verification workflow * feat: refactor page-verification * sync * fix type * fix * fix * notification icon * use full word * accept .license file * - update templates - update migration and notification * fix copy * update audit labels * sync * add space name
116 lines
2.3 KiB
TypeScript
116 lines
2.3 KiB
TypeScript
import { MentionNode } from '../../../common/helpers/prosemirror/utils';
|
|
|
|
export interface IPageBacklinkJob {
|
|
pageId: string;
|
|
workspaceId: string;
|
|
mentions: MentionNode[];
|
|
internalLinkSlugIds?: string[];
|
|
}
|
|
|
|
export interface IAddPageWatchersJob {
|
|
userIds: string[];
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
}
|
|
|
|
export interface IStripeSeatsSyncJob {
|
|
workspaceId: string;
|
|
}
|
|
|
|
export interface IPageHistoryJob {
|
|
pageId: string;
|
|
}
|
|
|
|
export interface INotificationCreateJob {
|
|
userId: string;
|
|
workspaceId: string;
|
|
type: string;
|
|
actorId?: string;
|
|
pageId?: string;
|
|
spaceId?: string;
|
|
commentId?: string;
|
|
data?: Record<string, unknown>;
|
|
}
|
|
|
|
export interface ICommentNotificationJob {
|
|
commentId: string;
|
|
parentCommentId?: string;
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorId: string;
|
|
mentionedUserIds: string[];
|
|
notifyWatchers: boolean;
|
|
}
|
|
|
|
export interface ICommentResolvedNotificationJob {
|
|
commentId: string;
|
|
commentCreatorId: string;
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorId: string;
|
|
}
|
|
|
|
export interface IPageMentionNotificationJob {
|
|
userMentions: { userId: string; mentionId: string; creatorId: string }[];
|
|
oldMentionedUserIds: string[];
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
}
|
|
|
|
export interface IPageUpdateNotificationJob {
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorIds: string[];
|
|
}
|
|
|
|
export interface IPermissionGrantedNotificationJob {
|
|
userIds: string[];
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorId: string;
|
|
role: string;
|
|
}
|
|
|
|
export interface IVerificationExpiringNotificationJob {
|
|
verificationId: string;
|
|
}
|
|
|
|
export interface IVerificationExpiredNotificationJob {
|
|
verificationId: string;
|
|
}
|
|
|
|
export interface IVerificationReconcileJob {
|
|
// no payload
|
|
}
|
|
|
|
export interface IPageVerifiedNotificationJob {
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorId: string;
|
|
verifierIds: string[];
|
|
}
|
|
|
|
export interface IApprovalRequestedNotificationJob {
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorId: string;
|
|
verifierIds: string[];
|
|
}
|
|
|
|
export interface IApprovalRejectedNotificationJob {
|
|
pageId: string;
|
|
spaceId: string;
|
|
workspaceId: string;
|
|
actorId: string;
|
|
requestedById: string;
|
|
comment?: string;
|
|
}
|