@supabase/lite 0.4.1-next.4 → 0.5.1-next.1

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.
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "dev/vite/main.tsx": {
3
- "file": "assets/main-BsWx0q9l.js",
3
+ "file": "assets/main-DO_xnvTw.js",
4
4
  "name": "main",
5
5
  "src": "dev/vite/main.tsx",
6
6
  "isEntry": true,
7
7
  "css": [
8
- "assets/main-DexXgo9R.css"
8
+ "assets/main-BITGMylP.css"
9
9
  ]
10
10
  }
11
11
  }
@@ -753,6 +753,10 @@
753
753
  display: table;
754
754
  }
755
755
 
756
+ .table-row {
757
+ display: table-row;
758
+ }
759
+
756
760
  .aspect-square {
757
761
  aspect-ratio: 1;
758
762
  }
@@ -2841,6 +2841,7 @@ declare function createServer(app: App, options?: ServerOptions): hono_hono_base
2841
2841
  } | null;
2842
2842
  is_identity: boolean;
2843
2843
  pg_type?: string | undefined;
2844
+ udt_schema?: string | undefined;
2844
2845
  is_generated?: boolean | undefined;
2845
2846
  }[];
2846
2847
  indexes: {
@@ -2910,10 +2911,32 @@ declare function createServer(app: App, options?: ServerOptions): hono_hono_base
2910
2911
  sql: string;
2911
2912
  schema: string;
2912
2913
  }[];
2914
+ functions?: {
2915
+ schema: string;
2916
+ name: string;
2917
+ arg_names: string[];
2918
+ arg_types: string[];
2919
+ arg_defaults: number;
2920
+ has_variadic: boolean;
2921
+ volatility: string;
2922
+ return_type: string;
2923
+ return_is_setof: boolean;
2924
+ return_rows?: number | undefined;
2925
+ return_typtype: string;
2926
+ return_base_type?: string | undefined;
2927
+ has_out_args: boolean;
2928
+ }[] | undefined;
2929
+ partitions?: {
2930
+ name: string;
2931
+ schema: string;
2932
+ parent: string;
2933
+ }[] | undefined;
2913
2934
  database_name: string;
2914
2935
  version: string;
2915
2936
  ddl_dialect?: "postgres" | "sqlite" | undefined;
2916
2937
  schema_separator?: string | undefined;
2938
+ default_schema?: string | undefined;
2939
+ timezones?: readonly string[] | undefined;
2917
2940
  };
2918
2941
  outputFormat: "json";
2919
2942
  status: hono_utils_http_status.ContentfulStatusCode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/lite",
3
- "version": "0.4.1-next.4",
3
+ "version": "0.5.1-next.1",
4
4
  "description": "Lightweight TypeScript-native Supabase implementation on SQLite (alpha). PostgREST + GoTrue compatible — use @supabase/supabase-js as-is.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",