@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.
package/src/supabase.types.ts
CHANGED
|
@@ -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
|
|
@@ -1060,6 +1062,8 @@ export type Database = {
|
|
|
1060
1062
|
message_payload?: Json | null
|
|
1061
1063
|
org_id: string
|
|
1062
1064
|
org_phone?: string | null
|
|
1065
|
+
org_phones?: string[] | null
|
|
1066
|
+
parent_broadcast_id?: string | null
|
|
1063
1067
|
performed_at?: string | null
|
|
1064
1068
|
performed_by?: string | null
|
|
1065
1069
|
repeat_config?: Json | null
|
|
@@ -1078,6 +1082,8 @@ export type Database = {
|
|
|
1078
1082
|
message_payload?: Json | null
|
|
1079
1083
|
org_id?: string
|
|
1080
1084
|
org_phone?: string | null
|
|
1085
|
+
org_phones?: string[] | null
|
|
1086
|
+
parent_broadcast_id?: string | null
|
|
1081
1087
|
performed_at?: string | null
|
|
1082
1088
|
performed_by?: string | null
|
|
1083
1089
|
repeat_config?: Json | null
|
|
@@ -2990,6 +2996,42 @@ export type Database = {
|
|
|
2990
2996
|
},
|
|
2991
2997
|
]
|
|
2992
2998
|
}
|
|
2999
|
+
tbl_scheduled_exports: {
|
|
3000
|
+
Row: {
|
|
3001
|
+
config: Json
|
|
3002
|
+
created_at: string
|
|
3003
|
+
filters: Json
|
|
3004
|
+
id: string
|
|
3005
|
+
is_active: boolean
|
|
3006
|
+
last_run_at: string | null
|
|
3007
|
+
next_run_at: string
|
|
3008
|
+
org_id: string
|
|
3009
|
+
updated_at: string
|
|
3010
|
+
}
|
|
3011
|
+
Insert: {
|
|
3012
|
+
config?: Json
|
|
3013
|
+
created_at?: string
|
|
3014
|
+
filters?: Json
|
|
3015
|
+
id?: string
|
|
3016
|
+
is_active?: boolean
|
|
3017
|
+
last_run_at?: string | null
|
|
3018
|
+
next_run_at: string
|
|
3019
|
+
org_id: string
|
|
3020
|
+
updated_at?: string
|
|
3021
|
+
}
|
|
3022
|
+
Update: {
|
|
3023
|
+
config?: Json
|
|
3024
|
+
created_at?: string
|
|
3025
|
+
filters?: Json
|
|
3026
|
+
id?: string
|
|
3027
|
+
is_active?: boolean
|
|
3028
|
+
last_run_at?: string | null
|
|
3029
|
+
next_run_at?: string
|
|
3030
|
+
org_id?: string
|
|
3031
|
+
updated_at?: string
|
|
3032
|
+
}
|
|
3033
|
+
Relationships: []
|
|
3034
|
+
}
|
|
2993
3035
|
tbl_scheduled_logs: {
|
|
2994
3036
|
Row: {
|
|
2995
3037
|
chat_id: string | null
|
|
@@ -3201,6 +3243,8 @@ export type Database = {
|
|
|
3201
3243
|
total_delivered_count: number | null
|
|
3202
3244
|
total_member_count: number | null
|
|
3203
3245
|
total_read_count: number | null
|
|
3246
|
+
is_repeat: boolean | null
|
|
3247
|
+
parent_broadcast_id: string | null
|
|
3204
3248
|
}
|
|
3205
3249
|
Relationships: [
|
|
3206
3250
|
{
|
|
@@ -4302,4 +4346,3 @@ export const Constants = {
|
|
|
4302
4346
|
},
|
|
4303
4347
|
},
|
|
4304
4348
|
} as const
|
|
4305
|
-
|