@periskope/types 0.6.12 → 0.6.13
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 +3 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -194,6 +194,7 @@ export interface Database {
|
|
|
194
194
|
quoted_message_id: string | null;
|
|
195
195
|
raw_data: Json | null;
|
|
196
196
|
sender_phone: string | null;
|
|
197
|
+
sent_message_id: string | null;
|
|
197
198
|
timestamp: string | null;
|
|
198
199
|
to: string | null;
|
|
199
200
|
token: string | null;
|
|
@@ -236,6 +237,7 @@ export interface Database {
|
|
|
236
237
|
quoted_message_id?: string | null;
|
|
237
238
|
raw_data?: Json | null;
|
|
238
239
|
sender_phone?: string | null;
|
|
240
|
+
sent_message_id?: string | null;
|
|
239
241
|
timestamp?: string | null;
|
|
240
242
|
to?: string | null;
|
|
241
243
|
token?: string | null;
|
|
@@ -278,6 +280,7 @@ export interface Database {
|
|
|
278
280
|
quoted_message_id?: string | null;
|
|
279
281
|
raw_data?: Json | null;
|
|
280
282
|
sender_phone?: string | null;
|
|
283
|
+
sent_message_id?: string | null;
|
|
281
284
|
timestamp?: string | null;
|
|
282
285
|
to?: string | null;
|
|
283
286
|
token?: string | null;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -193,6 +193,7 @@ export interface Database {
|
|
|
193
193
|
quoted_message_id: string | null
|
|
194
194
|
raw_data: Json | null
|
|
195
195
|
sender_phone: string | null
|
|
196
|
+
sent_message_id: string | null
|
|
196
197
|
timestamp: string | null
|
|
197
198
|
to: string | null
|
|
198
199
|
token: string | null
|
|
@@ -235,6 +236,7 @@ export interface Database {
|
|
|
235
236
|
quoted_message_id?: string | null
|
|
236
237
|
raw_data?: Json | null
|
|
237
238
|
sender_phone?: string | null
|
|
239
|
+
sent_message_id?: string | null
|
|
238
240
|
timestamp?: string | null
|
|
239
241
|
to?: string | null
|
|
240
242
|
token?: string | null
|
|
@@ -277,6 +279,7 @@ export interface Database {
|
|
|
277
279
|
quoted_message_id?: string | null
|
|
278
280
|
raw_data?: Json | null
|
|
279
281
|
sender_phone?: string | null
|
|
282
|
+
sent_message_id?: string | null
|
|
280
283
|
timestamp?: string | null
|
|
281
284
|
to?: string | null
|
|
282
285
|
token?: string | null
|