There was an error while loading. Please reload this page.
1 parent 0b57432 commit d339dc4Copy full SHA for d339dc4
src/CallHandler.tsx
@@ -103,10 +103,27 @@ enum AudioID {
103
Busy = 'busyAudio',
104
}
105
106
+interface ThirdpartyLookupResponseFields {
107
+ /* eslint-disable camelcase */
108
+
109
+ // im.vector.sip_native
110
+ virtual_mxid: string;
111
+ is_virtual: boolean;
112
113
+ // im.vector.sip_virtual
114
+ native_mxid: string;
115
+ is_native: boolean;
116
117
+ // common
118
+ lookup_success: boolean;
119
120
+ /* eslint-enable camelcase */
121
+}
122
123
interface ThirdpartyLookupResponse {
124
userid: string,
125
protocol: string,
- fields: {[key: string]: any},
126
+ fields: ThirdpartyLookupResponseFields,
127
128
129
// Unlike 'CallType' in js-sdk, this one includes screen sharing
0 commit comments