opencode-supabase 0.3.1 → 0.4.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-supabase",
3
- "version": "0.3.1",
3
+ "version": "0.4.0-alpha.0",
4
4
  "type": "module",
5
5
  "description": "OpenCode plugin for Supabase integration with server and TUI components",
6
6
  "license": "Apache-2.0",
@@ -49,4 +49,4 @@
49
49
  "solid-js": "1.9.11",
50
50
  "typescript": "^5"
51
51
  }
52
- }
52
+ }
package/src/shared/api.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export const DEFAULT_SUPABASE_OAUTH_AUTHORIZE_URL = "https://api.supabase.com/v1/oauth/authorize";
2
2
  export const DEFAULT_SUPABASE_API_BASE_URL = "https://api.supabase.com/v1";
3
- export const DEFAULT_SUPABASE_BROKER_URL = "https://iaoxncwzemnfxcdwakzb.supabase.co/functions/v1/opencode-supabase-broker";
4
- export const DEFAULT_SUPABASE_OAUTH_CLIENT_ID = "80c76733-1b96-424b-976b-5c2977c72008";
3
+ export const DEFAULT_SUPABASE_BROKER_URL = "https://mujltteqbakexagllqjg.supabase.co/functions/v1/opencode-supabase-broker";
4
+ export const DEFAULT_SUPABASE_OAUTH_CLIENT_ID = "254ee667-f2c8-4c44-b7ad-e48232dcbd44";
5
5
  export const DEFAULT_SUPABASE_OAUTH_PORT = 14589;
6
6
 
7
7
  import type { FetchLike, SupabaseSharedConfig } from "./types.ts";