@simonarcher/fika-types 1.0.93 → 1.1.0
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 +2 -0
- package/dist/index.js +4 -0
- package/dist/supabase-helpers.d.ts +178 -0
- package/dist/supabase-helpers.js +15 -0
- package/dist/supabase.d.ts +3914 -0
- package/dist/supabase.js +22 -0
- package/package.json +1 -1
package/dist/supabase.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Supabase Database Types
|
|
4
|
+
*
|
|
5
|
+
* Auto-generated from Supabase schema using `mcp__supabase__generate_typescript_types`
|
|
6
|
+
* Generated: 2026-01-18
|
|
7
|
+
* Project: FIKA - Dev (oteybpkhtggfxoqlcast)
|
|
8
|
+
*
|
|
9
|
+
* Usage:
|
|
10
|
+
* import { Database } from '@fika/schema/supabase';
|
|
11
|
+
* import { createClient } from '@supabase/supabase-js';
|
|
12
|
+
* const supabase = createClient<Database>(url, key);
|
|
13
|
+
*
|
|
14
|
+
* To regenerate: Run the Supabase MCP generate_typescript_types tool
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.Constants = void 0;
|
|
18
|
+
exports.Constants = {
|
|
19
|
+
public: {
|
|
20
|
+
Enums: {},
|
|
21
|
+
},
|
|
22
|
+
};
|