@periskope/types 0.6.452 → 0.6.453

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.
@@ -1042,6 +1042,7 @@ export type Database = {
1042
1042
  message_payload: Json | null;
1043
1043
  org_id: string;
1044
1044
  org_phone: string | null;
1045
+ org_phones: string[] | null;
1045
1046
  parent_broadcast_id: string | null;
1046
1047
  performed_at: string | null;
1047
1048
  performed_by: string | null;
@@ -1059,6 +1060,7 @@ export type Database = {
1059
1060
  message_payload?: Json | null;
1060
1061
  org_id: string;
1061
1062
  org_phone?: string | null;
1063
+ org_phones?: string[] | null;
1062
1064
  parent_broadcast_id?: string | null;
1063
1065
  performed_at?: string | null;
1064
1066
  performed_by?: string | null;
@@ -1076,6 +1078,7 @@ export type Database = {
1076
1078
  message_payload?: Json | null;
1077
1079
  org_id?: string;
1078
1080
  org_phone?: string | null;
1081
+ org_phones?: string[] | null;
1079
1082
  parent_broadcast_id?: string | null;
1080
1083
  performed_at?: string | null;
1081
1084
  performed_by?: string | null;
@@ -2985,6 +2988,42 @@ export type Database = {
2985
2988
  }
2986
2989
  ];
2987
2990
  };
2991
+ tbl_scheduled_exports: {
2992
+ Row: {
2993
+ config: Json;
2994
+ created_at: string;
2995
+ filters: Json;
2996
+ id: string;
2997
+ is_active: boolean;
2998
+ last_run_at: string | null;
2999
+ next_run_at: string;
3000
+ org_id: string;
3001
+ updated_at: string;
3002
+ };
3003
+ Insert: {
3004
+ config?: Json;
3005
+ created_at?: string;
3006
+ filters?: Json;
3007
+ id?: string;
3008
+ is_active?: boolean;
3009
+ last_run_at?: string | null;
3010
+ next_run_at: string;
3011
+ org_id: string;
3012
+ updated_at?: string;
3013
+ };
3014
+ Update: {
3015
+ config?: Json;
3016
+ created_at?: string;
3017
+ filters?: Json;
3018
+ id?: string;
3019
+ is_active?: boolean;
3020
+ last_run_at?: string | null;
3021
+ next_run_at?: string;
3022
+ org_id?: string;
3023
+ updated_at?: string;
3024
+ };
3025
+ Relationships: [];
3026
+ };
2988
3027
  tbl_scheduled_logs: {
2989
3028
  Row: {
2990
3029
  chat_id: string | null;