@@ -230,10 +230,14 @@ export interface IMegolmEncryptedContent {
230
230
export type IEncryptedContent = IOlmEncryptedContent | IMegolmEncryptedContent ;
231
231
232
232
export enum CryptoEvent {
233
+ /** @deprecated Event not fired by the rust crypto */
233
234
DeviceVerificationChanged = "deviceVerificationChanged" ,
234
235
UserTrustStatusChanged = "userTrustStatusChanged" ,
236
+ /** @deprecated Event not fired by the rust crypto */
235
237
UserCrossSigningUpdated = "userCrossSigningUpdated" ,
238
+ /** @deprecated Event not fired by the rust crypto */
236
239
RoomKeyRequest = "crypto.roomKeyRequest" ,
240
+ /** @deprecated Event not fired by the rust crypto */
237
241
RoomKeyRequestCancellation = "crypto.roomKeyRequestCancellation" ,
238
242
KeyBackupStatus = "crypto.keyBackupStatus" ,
239
243
KeyBackupFailed = "crypto.keyBackupFailed" ,
@@ -250,6 +254,7 @@ export enum CryptoEvent {
250
254
*/
251
255
KeyBackupDecryptionKeyCached = "crypto.keyBackupDecryptionKeyCached" ,
252
256
257
+ /** @deprecated Event not fired by the rust crypto */
253
258
KeySignatureUploadFailure = "crypto.keySignatureUploadFailure" ,
254
259
/** @deprecated Use `VerificationRequestReceived`. */
255
260
VerificationRequest = "crypto.verification.request" ,
@@ -261,7 +266,9 @@ export enum CryptoEvent {
261
266
*/
262
267
VerificationRequestReceived = "crypto.verificationRequestReceived" ,
263
268
269
+ /** @deprecated Event not fired by the rust crypto */
264
270
Warning = "crypto.warning" ,
271
+ /** @deprecated Use {@link DevicesUpdated} instead when using rust crypto */
265
272
WillUpdateDevices = "crypto.willUpdateDevices" ,
266
273
DevicesUpdated = "crypto.devicesUpdated" ,
267
274
KeysChanged = "crossSigning.keysChanged" ,
0 commit comments