We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 397f1e1 commit 960abf5Copy full SHA for 960abf5
src/generic/WebhookTransformer.ts
@@ -10,15 +10,6 @@ interface Mentions {
10
user_ids?: string[];
11
room?: boolean;
12
}
13
-
14
-interface RelatesTo {
15
- event_id?: string;
16
- is_falling_back?: boolean;
17
- key?: string;
18
- "m.in_reply_to"?: { event_id?: string };
19
- rel_type?: string;
20
-}
21
22
interface FunctionResultObject {
23
version: string;
24
plain?: string;
@@ -29,6 +20,14 @@ interface FunctionResultObject {
29
mentions?: Mentions;
30
31
+export interface RelatesTo {
+ event_id?: string;
25
+ is_falling_back?: boolean;
26
+ key?: string;
27
+ "m.in_reply_to"?: { event_id?: string };
28
+ rel_type?: string;
+}
+
32
export interface ExecuteResultWebhookResponse {
33
body: string;
34
contentType?: string;
0 commit comments