@periskope/types 0.6.451 → 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,8 @@ 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;
1046
+ parent_broadcast_id: string | null;
1045
1047
  performed_at: string | null;
1046
1048
  performed_by: string | null;
1047
1049
  repeat_config: Json | null;
@@ -1058,6 +1060,8 @@ export type Database = {
1058
1060
  message_payload?: Json | null;
1059
1061
  org_id: string;
1060
1062
  org_phone?: string | null;
1063
+ org_phones?: string[] | null;
1064
+ parent_broadcast_id?: string | null;
1061
1065
  performed_at?: string | null;
1062
1066
  performed_by?: string | null;
1063
1067
  repeat_config?: Json | null;
@@ -1074,6 +1078,8 @@ export type Database = {
1074
1078
  message_payload?: Json | null;
1075
1079
  org_id?: string;
1076
1080
  org_phone?: string | null;
1081
+ org_phones?: string[] | null;
1082
+ parent_broadcast_id?: string | null;
1077
1083
  performed_at?: string | null;
1078
1084
  performed_by?: string | null;
1079
1085
  repeat_config?: Json | null;
@@ -2982,6 +2988,42 @@ export type Database = {
2982
2988
  }
2983
2989
  ];
2984
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
+ };
2985
3027
  tbl_scheduled_logs: {
2986
3028
  Row: {
2987
3029
  chat_id: string | null;
@@ -3191,6 +3233,8 @@ export type Database = {
3191
3233
  total_delivered_count: number | null;
3192
3234
  total_member_count: number | null;
3193
3235
  total_read_count: number | null;
3236
+ is_repeat: boolean | null;
3237
+ parent_broadcast_id: string | null;
3194
3238
  };
3195
3239
  Relationships: [
3196
3240
  {