@periskope/types 0.6.449 → 0.6.451

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.
@@ -0,0 +1 @@
1
+ 2025-07-29T13:18:35.926605Z WARN daemon_server: turborepo_lib::commands::daemon: daemon already running
@@ -893,6 +893,60 @@ export type Database = {
893
893
  }
894
894
  ];
895
895
  };
896
+ tbl_broadcast_chatlist: {
897
+ Row: {
898
+ chat_ids: string[];
899
+ created_at: string;
900
+ created_by: string | null;
901
+ message_payload: Json | null;
902
+ org_id: string;
903
+ org_phone: string | null;
904
+ template_id: string;
905
+ template_name: string;
906
+ updated_at: string | null;
907
+ variables: Json | null;
908
+ };
909
+ Insert: {
910
+ chat_ids?: string[];
911
+ created_at?: string;
912
+ created_by?: string | null;
913
+ message_payload?: Json | null;
914
+ org_id: string;
915
+ org_phone?: string | null;
916
+ template_id?: string;
917
+ template_name: string;
918
+ updated_at?: string | null;
919
+ variables?: Json | null;
920
+ };
921
+ Update: {
922
+ chat_ids?: string[];
923
+ created_at?: string;
924
+ created_by?: string | null;
925
+ message_payload?: Json | null;
926
+ org_id?: string;
927
+ org_phone?: string | null;
928
+ template_id?: string;
929
+ template_name?: string;
930
+ updated_at?: string | null;
931
+ variables?: Json | null;
932
+ };
933
+ Relationships: [
934
+ {
935
+ foreignKeyName: "tbl_broadcast_chatlist_org_id_fkey";
936
+ columns: ["org_id"];
937
+ isOneToOne: false;
938
+ referencedRelation: "tbl_org";
939
+ referencedColumns: ["org_id"];
940
+ },
941
+ {
942
+ foreignKeyName: "tbl_broadcast_chatlist_org_id_fkey";
943
+ columns: ["org_id"];
944
+ isOneToOne: false;
945
+ referencedRelation: "view_org";
946
+ referencedColumns: ["org_id"];
947
+ }
948
+ ];
949
+ };
896
950
  tbl_broadcast_logs: {
897
951
  Row: {
898
952
  broadcast_id: string;
@@ -984,11 +1038,13 @@ export type Database = {
984
1038
  chat_ids: string[] | null;
985
1039
  created_at: string;
986
1040
  delay: number | null;
1041
+ is_repeat: boolean | null;
987
1042
  message_payload: Json | null;
988
1043
  org_id: string;
989
1044
  org_phone: string | null;
990
1045
  performed_at: string | null;
991
1046
  performed_by: string | null;
1047
+ repeat_config: Json | null;
992
1048
  scheduled_at: string | null;
993
1049
  variables: Json | null;
994
1050
  };
@@ -998,11 +1054,13 @@ export type Database = {
998
1054
  chat_ids?: string[] | null;
999
1055
  created_at?: string;
1000
1056
  delay?: number | null;
1057
+ is_repeat?: boolean | null;
1001
1058
  message_payload?: Json | null;
1002
1059
  org_id: string;
1003
1060
  org_phone?: string | null;
1004
1061
  performed_at?: string | null;
1005
1062
  performed_by?: string | null;
1063
+ repeat_config?: Json | null;
1006
1064
  scheduled_at?: string | null;
1007
1065
  variables?: Json | null;
1008
1066
  };
@@ -1012,11 +1070,13 @@ export type Database = {
1012
1070
  chat_ids?: string[] | null;
1013
1071
  created_at?: string;
1014
1072
  delay?: number | null;
1073
+ is_repeat?: boolean | null;
1015
1074
  message_payload?: Json | null;
1016
1075
  org_id?: string;
1017
1076
  org_phone?: string | null;
1018
1077
  performed_at?: string | null;
1019
1078
  performed_by?: string | null;
1079
+ repeat_config?: Json | null;
1020
1080
  scheduled_at?: string | null;
1021
1081
  variables?: Json | null;
1022
1082
  };