@supabase/lite 0.4.1-next.1 → 0.4.1-next.2
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/dist/index.d.ts +13 -0
- package/dist/index.js +37 -37
- package/dist/vite/index.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1360,6 +1360,19 @@ declare function createServer(app: App, options?: ServerOptions): hono_hono_base
|
|
|
1360
1360
|
};
|
|
1361
1361
|
};
|
|
1362
1362
|
}, "/auth/v1"> | hono_types.MergeSchemaPath<{
|
|
1363
|
+
"/rpc/:function": {
|
|
1364
|
+
$all: {
|
|
1365
|
+
input: {
|
|
1366
|
+
param: {
|
|
1367
|
+
function: string;
|
|
1368
|
+
};
|
|
1369
|
+
};
|
|
1370
|
+
output: {};
|
|
1371
|
+
outputFormat: string;
|
|
1372
|
+
status: hono_utils_http_status.StatusCode;
|
|
1373
|
+
};
|
|
1374
|
+
};
|
|
1375
|
+
} & {
|
|
1363
1376
|
"/:relation": {
|
|
1364
1377
|
$all: {
|
|
1365
1378
|
input: {
|