From 2a169a7613fe500fd136d394fa081dcf93b686d8 Mon Sep 17 00:00:00 2001 From: ByteAtATime Date: Thu, 27 Nov 2025 17:19:52 -0800 Subject: [PATCH] fix: actually expose oauth api --- renderer/src/api/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renderer/src/api/index.ts b/renderer/src/api/index.ts index 4324ea8..e6b4f75 100644 --- a/renderer/src/api/index.ts +++ b/renderer/src/api/index.ts @@ -7,6 +7,7 @@ import { LaunchType, environment, getPreferenceValues } from "./environment"; import { useNavigation } from "./navigation"; import { Icon } from "./icons"; import * as protocol from "../protocol"; +import { PCKEClient, RedirectMethod } from "./oauth"; const openExtensionPreferences = () => protocol.openExtensionPreferences(); const openCommandPreferences = () => protocol.openCommandPreferences(); @@ -29,6 +30,10 @@ const raycastApi = { Icon, openExtensionPreferences, openCommandPreferences, + OAuth: { + PCKEClient, + RedirectMethod, + }, Color: { Blue: "raycast-blue", Green: "raycast-green",