@periskope/types 0.6.76 → 0.6.77
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/dist/supabase.types.d.ts +3 -0
- package/package.json +1 -1
- package/supabase.types.ts +1929 -1926
- package/types.ts +1 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -106,6 +106,7 @@ export type Database = {
|
|
|
106
106
|
tbl_broadcast_messages: {
|
|
107
107
|
Row: {
|
|
108
108
|
broadcast_id: string;
|
|
109
|
+
broadcast_status: string | null;
|
|
109
110
|
chat_ids: string[] | null;
|
|
110
111
|
created_at: string;
|
|
111
112
|
message_payload: Json | null;
|
|
@@ -116,6 +117,7 @@ export type Database = {
|
|
|
116
117
|
};
|
|
117
118
|
Insert: {
|
|
118
119
|
broadcast_id?: string;
|
|
120
|
+
broadcast_status?: string | null;
|
|
119
121
|
chat_ids?: string[] | null;
|
|
120
122
|
created_at?: string;
|
|
121
123
|
message_payload?: Json | null;
|
|
@@ -126,6 +128,7 @@ export type Database = {
|
|
|
126
128
|
};
|
|
127
129
|
Update: {
|
|
128
130
|
broadcast_id?: string;
|
|
131
|
+
broadcast_status?: string | null;
|
|
129
132
|
chat_ids?: string[] | null;
|
|
130
133
|
created_at?: string;
|
|
131
134
|
message_payload?: Json | null;
|