@periskope/types 0.6.9 → 0.6.10
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
|
@@ -189,6 +189,7 @@ export interface Database {
|
|
|
189
189
|
org_id: string;
|
|
190
190
|
org_phone: string;
|
|
191
191
|
performed_by: string | null;
|
|
192
|
+
prev_body: string | null;
|
|
192
193
|
quoted_message_id: string | null;
|
|
193
194
|
raw_data: Json | null;
|
|
194
195
|
sender_phone: string | null;
|
|
@@ -229,6 +230,7 @@ export interface Database {
|
|
|
229
230
|
org_id: string;
|
|
230
231
|
org_phone: string;
|
|
231
232
|
performed_by?: string | null;
|
|
233
|
+
prev_body?: string | null;
|
|
232
234
|
quoted_message_id?: string | null;
|
|
233
235
|
raw_data?: Json | null;
|
|
234
236
|
sender_phone?: string | null;
|
|
@@ -269,6 +271,7 @@ export interface Database {
|
|
|
269
271
|
org_id?: string;
|
|
270
272
|
org_phone?: string;
|
|
271
273
|
performed_by?: string | null;
|
|
274
|
+
prev_body?: string | null;
|
|
272
275
|
quoted_message_id?: string | null;
|
|
273
276
|
raw_data?: Json | null;
|
|
274
277
|
sender_phone?: string | null;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -188,6 +188,7 @@ export interface Database {
|
|
|
188
188
|
org_id: string
|
|
189
189
|
org_phone: string
|
|
190
190
|
performed_by: string | null
|
|
191
|
+
prev_body: string | null
|
|
191
192
|
quoted_message_id: string | null
|
|
192
193
|
raw_data: Json | null
|
|
193
194
|
sender_phone: string | null
|
|
@@ -228,6 +229,7 @@ export interface Database {
|
|
|
228
229
|
org_id: string
|
|
229
230
|
org_phone: string
|
|
230
231
|
performed_by?: string | null
|
|
232
|
+
prev_body?: string | null
|
|
231
233
|
quoted_message_id?: string | null
|
|
232
234
|
raw_data?: Json | null
|
|
233
235
|
sender_phone?: string | null
|
|
@@ -268,6 +270,7 @@ export interface Database {
|
|
|
268
270
|
org_id?: string
|
|
269
271
|
org_phone?: string
|
|
270
272
|
performed_by?: string | null
|
|
273
|
+
prev_body?: string | null
|
|
271
274
|
quoted_message_id?: string | null
|
|
272
275
|
raw_data?: Json | null
|
|
273
276
|
sender_phone?: string | null
|