@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.76",
3
+ "version": "0.6.77",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",