mirror of
https://gitdab.com/cadence/out-of-your-element.git
synced 2025-09-10 12:22:50 +02:00
Interactive initial setup
This commit is contained in:
parent
e0bb19bfab
commit
37f3a59d8e
24 changed files with 249 additions and 43 deletions
26
types.d.ts
vendored
26
types.d.ts
vendored
|
@ -31,6 +31,32 @@ export type AppServiceRegistrationConfig = {
|
|||
}
|
||||
}
|
||||
|
||||
export type InitialAppServiceRegistrationConfig = {
|
||||
id: string
|
||||
as_token: string
|
||||
hs_token: string
|
||||
sender_localpart: string
|
||||
namespaces: {
|
||||
users: {
|
||||
exclusive: boolean
|
||||
regex: string
|
||||
}[]
|
||||
aliases: {
|
||||
exclusive: boolean
|
||||
regex: string
|
||||
}[]
|
||||
}
|
||||
protocols: [string]
|
||||
rate_limited: boolean
|
||||
ooye: {
|
||||
namespace_prefix: string
|
||||
max_file_size: number,
|
||||
content_length_workaround: boolean,
|
||||
invite: string[],
|
||||
include_user_id_in_mxid: boolean
|
||||
}
|
||||
}
|
||||
|
||||
export type WebhookCreds = {
|
||||
id: string
|
||||
token: string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue