Workspaces refactor #86

Merged
norm merged 189 commits from refactor/workspaces into main 2022-08-28 14:46:45 +00:00
3 changed files with 12 additions and 3 deletions
Showing only changes of commit f278390012 - Show all commits

View file

@ -1 +1,2 @@
- Notificationsの型を修正
- MessagingMessageの型を修正

View file

@ -2275,10 +2275,14 @@ type Notification_2 = {
userId: User['id'];
} | {
type: 'groupInvited';
invitation: UserGroup;
user: User;
userId: User['id'];
} | {
type: 'app';
header?: string | null;
body: string;
icon: string;
icon?: string | null;
});
// @public (undocumented)

View file

@ -150,11 +150,15 @@ export type Notification = {
user: User;
userId: User['id'];
} | {
type: 'groupInvited'; // TODO
type: 'groupInvited';
invitation: UserGroup;
user: User;
userId: User['id'];
} | {
type: 'app';
header?: string | null;
body: string;
icon: string;
icon?: string | null;
});
export type MessagingMessage = {