@periskope/types 0.6.13 → 0.6.15

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.
@@ -162,6 +162,7 @@ export interface Database {
162
162
  author: string | null;
163
163
  body: string | null;
164
164
  broadcast: boolean | null;
165
+ broadcast_id: string | null;
165
166
  chat_id: string | null;
166
167
  device_type: string | null;
167
168
  duration: string | null;
@@ -205,6 +206,7 @@ export interface Database {
205
206
  author?: string | null;
206
207
  body?: string | null;
207
208
  broadcast?: boolean | null;
209
+ broadcast_id?: string | null;
208
210
  chat_id?: string | null;
209
211
  device_type?: string | null;
210
212
  duration?: string | null;
@@ -248,6 +250,7 @@ export interface Database {
248
250
  author?: string | null;
249
251
  body?: string | null;
250
252
  broadcast?: boolean | null;
253
+ broadcast_id?: string | null;
251
254
  chat_id?: string | null;
252
255
  device_type?: string | null;
253
256
  duration?: string | null;
@@ -706,6 +709,7 @@ export interface Database {
706
709
  phone_image: string | null;
707
710
  phone_name: string | null;
708
711
  qr_code: string | null;
712
+ server_ip: string | null;
709
713
  updated_at: string;
710
714
  wa_state: string | null;
711
715
  };
@@ -718,6 +722,7 @@ export interface Database {
718
722
  phone_image?: string | null;
719
723
  phone_name?: string | null;
720
724
  qr_code?: string | null;
725
+ server_ip?: string | null;
721
726
  updated_at?: string;
722
727
  wa_state?: string | null;
723
728
  };
@@ -730,6 +735,7 @@ export interface Database {
730
735
  phone_image?: string | null;
731
736
  phone_name?: string | null;
732
737
  qr_code?: string | null;
738
+ server_ip?: string | null;
733
739
  updated_at?: string;
734
740
  wa_state?: string | null;
735
741
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.13",
3
+ "version": "0.6.15",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -161,6 +161,7 @@ export interface Database {
161
161
  author: string | null
162
162
  body: string | null
163
163
  broadcast: boolean | null
164
+ broadcast_id: string | null
164
165
  chat_id: string | null
165
166
  device_type: string | null
166
167
  duration: string | null
@@ -204,6 +205,7 @@ export interface Database {
204
205
  author?: string | null
205
206
  body?: string | null
206
207
  broadcast?: boolean | null
208
+ broadcast_id?: string | null
207
209
  chat_id?: string | null
208
210
  device_type?: string | null
209
211
  duration?: string | null
@@ -247,6 +249,7 @@ export interface Database {
247
249
  author?: string | null
248
250
  body?: string | null
249
251
  broadcast?: boolean | null
252
+ broadcast_id?: string | null
250
253
  chat_id?: string | null
251
254
  device_type?: string | null
252
255
  duration?: string | null
@@ -705,6 +708,7 @@ export interface Database {
705
708
  phone_image: string | null
706
709
  phone_name: string | null
707
710
  qr_code: string | null
711
+ server_ip: string | null
708
712
  updated_at: string
709
713
  wa_state: string | null
710
714
  }
@@ -717,6 +721,7 @@ export interface Database {
717
721
  phone_image?: string | null
718
722
  phone_name?: string | null
719
723
  qr_code?: string | null
724
+ server_ip?: string | null
720
725
  updated_at?: string
721
726
  wa_state?: string | null
722
727
  }
@@ -729,6 +734,7 @@ export interface Database {
729
734
  phone_image?: string | null
730
735
  phone_name?: string | null
731
736
  qr_code?: string | null
737
+ server_ip?: string | null
732
738
  updated_at?: string
733
739
  wa_state?: string | null
734
740
  }