66 lines
1.1 KiB
TypeScript
66 lines
1.1 KiB
TypeScript
export type AppServiceRegistrationConfig = {
|
|
id: string
|
|
as_token: string
|
|
hs_token: string
|
|
url: string
|
|
sender_localpart: string
|
|
namespace_prefix: string
|
|
protocols: [string]
|
|
rate_limited: boolean
|
|
}
|
|
|
|
namespace Event {
|
|
export type BaseStateEvent = {
|
|
type: string
|
|
room_id: string
|
|
sender: string
|
|
content: any
|
|
state_key: string
|
|
origin_server_ts: number
|
|
unsigned: any
|
|
event_id: string
|
|
user_id: string
|
|
age: number
|
|
replaces_state: string
|
|
prev_content?: any
|
|
}
|
|
|
|
export type M_Room_Message = {
|
|
msgtype: "m.text"
|
|
body: string
|
|
formatted_body?: "org.matrix.custom.html"
|
|
format?: string
|
|
}
|
|
|
|
export type M_Room_Member = {
|
|
membership: string
|
|
display_name?: string
|
|
avatar_url?: string
|
|
}
|
|
}
|
|
|
|
namespace R {
|
|
export type RoomCreated = {
|
|
room_id: string
|
|
}
|
|
|
|
export type RoomJoined = {
|
|
room_id: string
|
|
}
|
|
|
|
export type FileUploaded = {
|
|
content_uri: string
|
|
}
|
|
|
|
export type Registered = {
|
|
/** "@localpart:domain.tld" */
|
|
user_id: string
|
|
home_server: string
|
|
access_token: string
|
|
device_id: string
|
|
}
|
|
|
|
export type EventSent = {
|
|
event_id: string
|
|
}
|
|
}
|