@freehour/supabase-langchain 1.3.7 → 1.3.8

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
@@ -3,7 +3,7 @@
3
3
  "private": false,
4
4
  "displayName": "Supabase-Langchain",
5
5
  "description": "Integration package for using LangChain with Supabase",
6
- "version": "1.3.7",
6
+ "version": "1.3.8",
7
7
  "type": "module",
8
8
  "repository": {
9
9
  "type": "git",
@@ -42,7 +42,7 @@ $function$
42
42
  ;
43
43
 
44
44
  CREATE OR REPLACE FUNCTION langchain.get_outdated_embeddings(bucket text)
45
- RETURNS TABLE(file_id uuid, bucket_id uuid, path_tokens text[])
45
+ RETURNS TABLE(file_id uuid, bucket_id text, path_tokens text[])
46
46
  LANGUAGE plpgsql
47
47
  SET search_path TO ''
48
48
  AS $function$
@@ -57,7 +57,7 @@ $$ LANGUAGE plpgsql;
57
57
  CREATE OR REPLACE FUNCTION langchain.get_outdated_embeddings(bucket text)
58
58
  RETURNS TABLE (
59
59
  file_id uuid,
60
- bucket_id uuid,
60
+ bucket_id text,
61
61
  path_tokens text[]
62
62
  )
63
63
  SET search_path = ''