@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.
package/src/supabase.types.ts
CHANGED
|
@@ -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
|
|
@@ -1061,6 +1062,7 @@ export type Database = {
|
|
|
1061
1062
|
message_payload?: Json | null
|
|
1062
1063
|
org_id: string
|
|
1063
1064
|
org_phone?: string | null
|
|
1065
|
+
org_phones?: string[] | null
|
|
1064
1066
|
parent_broadcast_id?: string | null
|
|
1065
1067
|
performed_at?: string | null
|
|
1066
1068
|
performed_by?: string | null
|
|
@@ -1080,6 +1082,7 @@ export type Database = {
|
|
|
1080
1082
|
message_payload?: Json | null
|
|
1081
1083
|
org_id?: string
|
|
1082
1084
|
org_phone?: string | null
|
|
1085
|
+
org_phones?: string[] | null
|
|
1083
1086
|
parent_broadcast_id?: string | null
|
|
1084
1087
|
performed_at?: string | null
|
|
1085
1088
|
performed_by?: string | null
|
|
@@ -2993,6 +2996,42 @@ export type Database = {
|
|
|
2993
2996
|
},
|
|
2994
2997
|
]
|
|
2995
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
|
+
}
|
|
2996
3035
|
tbl_scheduled_logs: {
|
|
2997
3036
|
Row: {
|
|
2998
3037
|
chat_id: string | null
|
|
@@ -4307,4 +4346,3 @@ export const Constants = {
|
|
|
4307
4346
|
},
|
|
4308
4347
|
},
|
|
4309
4348
|
} as const
|
|
4310
|
-
|