@periskope/types 0.6.458 → 0.6.460
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/.turbo/daemon/2a480df21ee2b3e0-turbo.log.2025-07-29 +1 -0
- package/.turbo/daemon/2a480df21ee2b3e0-turbo.log.2025-11-10 +0 -0
- package/dist/supabase.types.d.ts +3 -9
- package/dist/supabase.types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/supabase.types.ts +3 -9
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2025-07-29T13:18:35.926605Z WARN daemon_server: turborepo_lib::commands::daemon: daemon already running
|
|
File without changes
|
package/dist/supabase.types.d.ts
CHANGED
|
@@ -899,36 +899,27 @@ export type Database = {
|
|
|
899
899
|
created_at: string;
|
|
900
900
|
updated_at: string | null;
|
|
901
901
|
created_by: string | null;
|
|
902
|
-
message_payload: Json | null;
|
|
903
902
|
org_id: string;
|
|
904
|
-
org_phone: string | null;
|
|
905
903
|
template_id: string;
|
|
906
904
|
template_name: string;
|
|
907
|
-
variables: Json | null;
|
|
908
905
|
};
|
|
909
906
|
Insert: {
|
|
910
907
|
chat_ids?: string[];
|
|
911
908
|
created_at?: string;
|
|
912
909
|
updated_at?: string | null;
|
|
913
910
|
created_by?: string | null;
|
|
914
|
-
message_payload?: Json | null;
|
|
915
911
|
org_id: string;
|
|
916
|
-
org_phone?: string | null;
|
|
917
912
|
template_id?: string;
|
|
918
913
|
template_name: string;
|
|
919
|
-
variables?: Json | null;
|
|
920
914
|
};
|
|
921
915
|
Update: {
|
|
922
916
|
chat_ids?: string[];
|
|
923
917
|
created_at?: string;
|
|
924
918
|
updated_at?: string | null;
|
|
925
919
|
created_by?: string | null;
|
|
926
|
-
message_payload?: Json | null;
|
|
927
920
|
org_id?: string;
|
|
928
|
-
org_phone?: string | null;
|
|
929
921
|
template_id?: string;
|
|
930
922
|
template_name?: string;
|
|
931
|
-
variables?: Json | null;
|
|
932
923
|
};
|
|
933
924
|
Relationships: [
|
|
934
925
|
{
|
|
@@ -969,6 +960,7 @@ export type Database = {
|
|
|
969
960
|
org_phone: string | null;
|
|
970
961
|
read_count: number | null;
|
|
971
962
|
remarks: string | null;
|
|
963
|
+
poll_results: Json | null;
|
|
972
964
|
};
|
|
973
965
|
Insert: {
|
|
974
966
|
broadcast_id: string;
|
|
@@ -984,6 +976,7 @@ export type Database = {
|
|
|
984
976
|
org_phone?: string | null;
|
|
985
977
|
read_count?: number | null;
|
|
986
978
|
remarks?: string | null;
|
|
979
|
+
poll_results?: Json | null;
|
|
987
980
|
};
|
|
988
981
|
Update: {
|
|
989
982
|
broadcast_id?: string;
|
|
@@ -999,6 +992,7 @@ export type Database = {
|
|
|
999
992
|
org_phone?: string | null;
|
|
1000
993
|
read_count?: number | null;
|
|
1001
994
|
remarks?: string | null;
|
|
995
|
+
poll_results?: Json | null;
|
|
1002
996
|
};
|
|
1003
997
|
Relationships: [
|
|
1004
998
|
{
|