@dropout-ai/runtime 0.2.10 → 0.2.11

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dropout-ai/runtime",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Invisible Node.js runtime for capturing AI interactions.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -28,10 +28,12 @@ let lastTurnConfirmed = true;
28
28
  let lastPromptHash = null;
29
29
  let lastResponseHash = null;
30
30
 
31
+ const SUPABASE_FUNCTION_URL = "https://hipughmjlwmwjxzyxfzs.supabase.co/functions/v1/capture-sealed";
32
+
31
33
  // --- Runtime Guarantees ---
32
34
  let config = {
33
35
  maxOutputBytes: 32768,
34
- captureEndpoint: 'http://localhost:4000/capture',
36
+ captureEndpoint: SUPABASE_FUNCTION_URL,
35
37
  configEndpoint: 'http://localhost:4000/config',
36
38
  privacyMode: (typeof process !== 'undefined' && process.env.DROPOUT_PRIVACY_MODE) || 'safe'
37
39
  };