mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
40 lines
898 B
TypeScript
40 lines
898 B
TypeScript
export interface FE_Integration {
|
|
category: "bot" | "complex-bot" | "bridge" | "widget";
|
|
type: string;
|
|
requirements: FE_IntegrationRequirement[];
|
|
isEncryptionSupported: boolean;
|
|
displayName: string;
|
|
avatarUrl: string;
|
|
description: string;
|
|
isEnabled: boolean;
|
|
isPublic: boolean;
|
|
|
|
// Used by us
|
|
_inRoom: boolean;
|
|
_isUpdating: boolean;
|
|
_isSupported: boolean;
|
|
_notSupportedReason: string;
|
|
}
|
|
|
|
export interface FE_Widget extends FE_Integration {
|
|
options: any;
|
|
}
|
|
|
|
export interface FE_EtherpadWidget extends FE_Widget {
|
|
options: {
|
|
defaultUrl: string;
|
|
};
|
|
}
|
|
|
|
export interface FE_JitsiWidget extends FE_Widget {
|
|
options: {
|
|
jitsiDomain: string;
|
|
scriptUrl: string;
|
|
};
|
|
}
|
|
|
|
export interface FE_IntegrationRequirement {
|
|
condition: "publicRoom" | "canSendEventTypes";
|
|
argument: any;
|
|
expectedValue: any;
|
|
} |