mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-01 01:29:31 +08:00
feat(core): add notification service (#10855)
This commit is contained in:
@@ -3424,6 +3424,15 @@ export type ListUsersQuery = {
|
||||
}>;
|
||||
};
|
||||
|
||||
export type MentionUserMutationVariables = Exact<{
|
||||
input: MentionInput;
|
||||
}>;
|
||||
|
||||
export type MentionUserMutation = {
|
||||
__typename?: 'Mutation';
|
||||
mentionUser: string;
|
||||
};
|
||||
|
||||
export type NotificationCountQueryVariables = Exact<{ [key: string]: never }>;
|
||||
|
||||
export type NotificationCountQuery = {
|
||||
@@ -4434,6 +4443,11 @@ export type Mutations =
|
||||
variables: LeaveWorkspaceMutationVariables;
|
||||
response: LeaveWorkspaceMutation;
|
||||
}
|
||||
| {
|
||||
name: 'mentionUserMutation';
|
||||
variables: MentionUserMutationVariables;
|
||||
response: MentionUserMutation;
|
||||
}
|
||||
| {
|
||||
name: 'publishPageMutation';
|
||||
variables: PublishPageMutationVariables;
|
||||
|
||||
Reference in New Issue
Block a user