Replace typescript compiler with native tsgo compiler

This commit is contained in:
Jamie
2026-03-18 11:26:18 -07:00
committed by GitHub
parent 5e6af4708b
commit c90ca2b4e0
207 changed files with 1819 additions and 1270 deletions

View File

@@ -35,9 +35,11 @@ export async function getCallLinkAuthCredentialPresentation(
}
const userId = Aci.fromUuid(ourAci);
const callLinkSecretParams = CallLinkSecretParams.deriveFromRootKey(
callLinkRootKey.bytes
);
// @ts-expect-error needs ringrtc update
const rootKeyBytes: Uint8Array<ArrayBuffer> = callLinkRootKey.bytes;
const callLinkSecretParams =
CallLinkSecretParams.deriveFromRootKey(rootKeyBytes);
const presentation = credential.present(
userId,
credentials.today.redemptionTime / durations.SECOND,