store room name changes to nick in db

This commit is contained in:
Cadence Ember
2023-08-26 18:58:41 +12:00
parent 88eb8c2290
commit df651241a5
2 changed files with 21 additions and 1 deletions

11
types.d.ts vendored
View File

@@ -70,7 +70,12 @@ export namespace Event {
msgtype: "m.text" | "m.emote"
body: string
format?: "org.matrix.custom.html"
formatted_body?: string
formatted_body?: string,
"m.relates_to"?: {
"m.in_reply_to": {
event_id: string
}
}
}
export type M_Room_Member = {
@@ -84,6 +89,10 @@ export namespace Event {
url?: string
}
export type M_Room_Name = {
name?: string
}
export type M_Reaction = {
"m.relates_to": {
rel_type: "m.annotation"