1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-07-31 15:24:23 +03:00

Update matrix-rust-sdk-crypto-wasm to v14.0.1. (#4710)

* Bump rust sdk to 14.0.0

* Remove duplicate type declarations

These now match the types in the underlying library, so can be removed.

* bump to 14.0.1

* Use new `OutgoingRequest` type from wasm library

* fix types

* update lockfile
This commit is contained in:
Richard van der Hoff
2025-02-22 09:07:29 +00:00
committed by GitHub
parent e49a0a5013
commit 8ab9025282
9 changed files with 17 additions and 53 deletions

View File

@ -16,8 +16,9 @@ limitations under the License.
import { type Mocked } from "jest-mock";
import * as RustSdkCryptoJs from "@matrix-org/matrix-sdk-crypto-wasm";
import { type OutgoingRequest } from "@matrix-org/matrix-sdk-crypto-wasm";
import { type OutgoingRequest, type OutgoingRequestProcessor } from "../../../src/rust-crypto/OutgoingRequestProcessor";
import { type OutgoingRequestProcessor } from "../../../src/rust-crypto/OutgoingRequestProcessor";
import { OutgoingRequestsManager } from "../../../src/rust-crypto/OutgoingRequestsManager";
import { defer, type IDeferred } from "../../../src/utils";
import { logger } from "../../../src/logger";
@ -72,7 +73,7 @@ describe("OutgoingRequestsManager", () => {
const firstOutgoingRequestDefer = defer<OutgoingRequest[]>();
olmMachine.outgoingRequests
.mockImplementationOnce(async (): Promise<OutgoingRequest[]> => {
.mockImplementationOnce(async () => {
return firstOutgoingRequestDefer.promise;
})
.mockImplementationOnce(async () => {