@hobenakicoffee/libraries 6.18.0 → 6.19.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/package.json +1 -1
- package/src/types/supabase.ts +24 -0
package/package.json
CHANGED
package/src/types/supabase.ts
CHANGED
|
@@ -3285,6 +3285,30 @@ export type Database = {
|
|
|
3285
3285
|
},
|
|
3286
3286
|
];
|
|
3287
3287
|
};
|
|
3288
|
+
wishlist_signups: {
|
|
3289
|
+
Row: {
|
|
3290
|
+
created_at: string;
|
|
3291
|
+
email: string;
|
|
3292
|
+
id: number;
|
|
3293
|
+
ip_address: string | null;
|
|
3294
|
+
user_agent: string | null;
|
|
3295
|
+
};
|
|
3296
|
+
Insert: {
|
|
3297
|
+
created_at?: string;
|
|
3298
|
+
email: string;
|
|
3299
|
+
id?: never;
|
|
3300
|
+
ip_address?: string | null;
|
|
3301
|
+
user_agent?: string | null;
|
|
3302
|
+
};
|
|
3303
|
+
Update: {
|
|
3304
|
+
created_at?: string;
|
|
3305
|
+
email?: string;
|
|
3306
|
+
id?: never;
|
|
3307
|
+
ip_address?: string | null;
|
|
3308
|
+
user_agent?: string | null;
|
|
3309
|
+
};
|
|
3310
|
+
Relationships: [];
|
|
3311
|
+
};
|
|
3288
3312
|
withdrawal_requests: {
|
|
3289
3313
|
Row: {
|
|
3290
3314
|
admin_note: string | null;
|