@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.
- package/LIMITATIONS.md +4 -0
- package/STATUS.md +6 -2
- package/dist/{Connection-DF_xKWko.d.ts → Connection-DJbw6dM8.d.ts} +117 -1
- package/dist/db/fallback.d.ts +1 -1
- package/dist/db/postgres/{BasePostgresConnection-NlNmZWv1.d.ts → BasePostgresConnection-xaPv2E6u.d.ts} +14 -1
- package/dist/db/postgres/PostgresConnection.d.ts +10 -1
- package/dist/db/postgres/PostgresConnection.js +105 -19
- package/dist/db/postgres/pglite/PgliteConnection.d.ts +1 -1
- package/dist/db/postgres/pglite/PgliteConnection.js +109 -23
- package/dist/index.d.ts +25 -2
- package/dist/index.js +45 -42
- package/dist/static/.vite/manifest.json +2 -2
- package/dist/static/assets/{main-DexXgo9R.css → main-BITGMylP.css} +4 -0
- package/dist/vite/index.d.ts +23 -0
- package/package.json +1 -1
- /package/dist/static/assets/{main-BsWx0q9l.js → main-DO_xnvTw.js} +0 -0
package/dist/vite/index.d.ts
CHANGED
|
@@ -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.
|
|
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",
|
|
File without changes
|