@supabase/lite 0.4.1-next.1 → 0.4.1-next.3

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.
@@ -1868,6 +1868,19 @@ declare function createServer(app: App, options?: ServerOptions): hono_hono_base
1868
1868
  };
1869
1869
  };
1870
1870
  }, "/auth/v1"> | hono_types.MergeSchemaPath<{
1871
+ "/rpc/:function": {
1872
+ $all: {
1873
+ input: {
1874
+ param: {
1875
+ function: string;
1876
+ };
1877
+ };
1878
+ output: {};
1879
+ outputFormat: string;
1880
+ status: hono_utils_http_status.StatusCode;
1881
+ };
1882
+ };
1883
+ } & {
1871
1884
  "/:relation": {
1872
1885
  $all: {
1873
1886
  input: {
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@supabase/lite",
3
- "version": "0.4.1-next.1",
3
+ "version": "0.4.1-next.3",
4
4
  "description": "Lightweight TypeScript-native Supabase implementation on SQLite (alpha). PostgREST + GoTrue compatible — use @supabase/supabase-js as-is.",
5
+ "license": "Apache-2.0",
5
6
  "type": "module",
6
7
  "bin": {
7
8
  "lite": "./dist/cli/index.js"
@@ -63,6 +64,7 @@
63
64
  },
64
65
  "files": [
65
66
  "dist",
67
+ "LICENSE",
66
68
  "README.md",
67
69
  "STATUS.md",
68
70
  "UPGRADE.md",