register -> invite -> join -> send flow

This commit is contained in:
Cadence Ember 2023-05-09 00:58:46 +12:00
commit 1e7e66dc31
11 changed files with 150 additions and 34 deletions

5
types.d.ts vendored
View file

@ -4,6 +4,7 @@ export type AppServiceRegistrationConfig = {
hs_token: string
url: string
sender_localpart: string
namespace_prefix: string
protocols: [string]
rate_limited: boolean
}
@ -43,6 +44,10 @@ namespace R {
room_id: string
}
export type RoomJoined = {
room_id: string
}
export type FileUploaded = {
content_uri: string
}