@periskope/types 0.6.14 → 0.6.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/dist/supabase.types.d.ts +3 -0
- package/package.json +1 -1
- package/supabase.types.ts +3 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -709,6 +709,7 @@ export interface Database {
|
|
|
709
709
|
phone_image: string | null;
|
|
710
710
|
phone_name: string | null;
|
|
711
711
|
qr_code: string | null;
|
|
712
|
+
server_ip: string | null;
|
|
712
713
|
updated_at: string;
|
|
713
714
|
wa_state: string | null;
|
|
714
715
|
};
|
|
@@ -721,6 +722,7 @@ export interface Database {
|
|
|
721
722
|
phone_image?: string | null;
|
|
722
723
|
phone_name?: string | null;
|
|
723
724
|
qr_code?: string | null;
|
|
725
|
+
server_ip?: string | null;
|
|
724
726
|
updated_at?: string;
|
|
725
727
|
wa_state?: string | null;
|
|
726
728
|
};
|
|
@@ -733,6 +735,7 @@ export interface Database {
|
|
|
733
735
|
phone_image?: string | null;
|
|
734
736
|
phone_name?: string | null;
|
|
735
737
|
qr_code?: string | null;
|
|
738
|
+
server_ip?: string | null;
|
|
736
739
|
updated_at?: string;
|
|
737
740
|
wa_state?: string | null;
|
|
738
741
|
};
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -708,6 +708,7 @@ export interface Database {
|
|
|
708
708
|
phone_image: string | null
|
|
709
709
|
phone_name: string | null
|
|
710
710
|
qr_code: string | null
|
|
711
|
+
server_ip: string | null
|
|
711
712
|
updated_at: string
|
|
712
713
|
wa_state: string | null
|
|
713
714
|
}
|
|
@@ -720,6 +721,7 @@ export interface Database {
|
|
|
720
721
|
phone_image?: string | null
|
|
721
722
|
phone_name?: string | null
|
|
722
723
|
qr_code?: string | null
|
|
724
|
+
server_ip?: string | null
|
|
723
725
|
updated_at?: string
|
|
724
726
|
wa_state?: string | null
|
|
725
727
|
}
|
|
@@ -732,6 +734,7 @@ export interface Database {
|
|
|
732
734
|
phone_image?: string | null
|
|
733
735
|
phone_name?: string | null
|
|
734
736
|
qr_code?: string | null
|
|
737
|
+
server_ip?: string | null
|
|
735
738
|
updated_at?: string
|
|
736
739
|
wa_state?: string | null
|
|
737
740
|
}
|