2021-11-18 10:08:12 +00:00
|
|
|
type ConverseJSTheme = 'peertube' | 'default' | 'concord'
|
2021-06-02 17:54:04 +00:00
|
|
|
|
2023-08-01 15:01:09 +00:00
|
|
|
interface InitConverseJSParams {
|
|
|
|
isRemoteChat: boolean
|
|
|
|
localAnonymousJID: string
|
|
|
|
remoteAnonymousJID: string | null
|
|
|
|
remoteAnonymousXMPPServer: boolean
|
|
|
|
remoteAuthenticatedXMPPServer: boolean
|
2023-08-01 16:42:24 +00:00
|
|
|
staticBaseUrl: string
|
2023-08-01 15:01:09 +00:00
|
|
|
assetsPath: string
|
|
|
|
room: string
|
|
|
|
localBoshServiceUrl: string | null
|
|
|
|
localWebsocketServiceUrl: string | null
|
|
|
|
remoteBoshServiceUrl: string | null
|
|
|
|
remoteWebsocketServiceUrl: string | null
|
|
|
|
authenticationUrl: string
|
|
|
|
autoViewerMode: boolean
|
|
|
|
forceReadonly: boolean | 'noscroll'
|
|
|
|
theme: ConverseJSTheme
|
|
|
|
transparent: boolean
|
|
|
|
}
|
|
|
|
|
2021-06-11 23:16:57 +00:00
|
|
|
interface ProsodyListRoomsResultError {
|
|
|
|
ok: false
|
|
|
|
error: string
|
|
|
|
}
|
|
|
|
|
2021-08-05 16:25:27 +00:00
|
|
|
interface ProsodyListRoomsResultRoom {
|
|
|
|
jid: string
|
|
|
|
localpart: string
|
|
|
|
name: string
|
|
|
|
lang: string
|
|
|
|
description: string
|
|
|
|
lasttimestamp?: number
|
|
|
|
channel?: {
|
|
|
|
id: number
|
|
|
|
name: string
|
|
|
|
displayName: string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-11 23:16:57 +00:00
|
|
|
interface ProsodyListRoomsResultSuccess {
|
|
|
|
ok: true
|
2021-08-05 16:25:27 +00:00
|
|
|
rooms: ProsodyListRoomsResultRoom[]
|
2021-06-11 23:16:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ProsodyListRoomsResult = ProsodyListRoomsResultError | ProsodyListRoomsResultSuccess
|
|
|
|
|
2022-12-07 17:36:16 +00:00
|
|
|
export type {
|
2021-11-18 10:08:12 +00:00
|
|
|
ConverseJSTheme,
|
2023-08-01 15:01:09 +00:00
|
|
|
InitConverseJSParams,
|
2021-08-05 16:25:27 +00:00
|
|
|
ProsodyListRoomsResult,
|
|
|
|
ProsodyListRoomsResultRoom
|
2021-06-02 17:54:04 +00:00
|
|
|
}
|