@everylanguage/shared-types 1.0.14 → 1.0.15
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/types/database.d.ts +3 -0
package/package.json
CHANGED
package/types/database.d.ts
CHANGED
|
@@ -2795,6 +2795,7 @@ export type Database = {
|
|
|
2795
2795
|
};
|
|
2796
2796
|
users_anon: {
|
|
2797
2797
|
Row: {
|
|
2798
|
+
auth_uid: string | null;
|
|
2798
2799
|
created_at: string | null;
|
|
2799
2800
|
device_id: string;
|
|
2800
2801
|
id: string;
|
|
@@ -2802,6 +2803,7 @@ export type Database = {
|
|
|
2802
2803
|
user_id: string | null;
|
|
2803
2804
|
};
|
|
2804
2805
|
Insert: {
|
|
2806
|
+
auth_uid?: string | null;
|
|
2805
2807
|
created_at?: string | null;
|
|
2806
2808
|
device_id: string;
|
|
2807
2809
|
id?: string;
|
|
@@ -2809,6 +2811,7 @@ export type Database = {
|
|
|
2809
2811
|
user_id?: string | null;
|
|
2810
2812
|
};
|
|
2811
2813
|
Update: {
|
|
2814
|
+
auth_uid?: string | null;
|
|
2812
2815
|
created_at?: string | null;
|
|
2813
2816
|
device_id?: string;
|
|
2814
2817
|
id?: string;
|