@periskope/types 0.6.9 → 0.6.11

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.
@@ -173,6 +173,7 @@ export interface Database {
173
173
  has_reaction: boolean | null;
174
174
  id: Json | null;
175
175
  invite_v4: Json | null;
176
+ is_deleted: boolean | null;
176
177
  is_ephemeral: boolean | null;
177
178
  is_forwarded: boolean | null;
178
179
  is_gif: boolean | null;
@@ -189,6 +190,7 @@ export interface Database {
189
190
  org_id: string;
190
191
  org_phone: string;
191
192
  performed_by: string | null;
193
+ prev_body: string | null;
192
194
  quoted_message_id: string | null;
193
195
  raw_data: Json | null;
194
196
  sender_phone: string | null;
@@ -213,6 +215,7 @@ export interface Database {
213
215
  has_reaction?: boolean | null;
214
216
  id?: Json | null;
215
217
  invite_v4?: Json | null;
218
+ is_deleted?: boolean | null;
216
219
  is_ephemeral?: boolean | null;
217
220
  is_forwarded?: boolean | null;
218
221
  is_gif?: boolean | null;
@@ -229,6 +232,7 @@ export interface Database {
229
232
  org_id: string;
230
233
  org_phone: string;
231
234
  performed_by?: string | null;
235
+ prev_body?: string | null;
232
236
  quoted_message_id?: string | null;
233
237
  raw_data?: Json | null;
234
238
  sender_phone?: string | null;
@@ -253,6 +257,7 @@ export interface Database {
253
257
  has_reaction?: boolean | null;
254
258
  id?: Json | null;
255
259
  invite_v4?: Json | null;
260
+ is_deleted?: boolean | null;
256
261
  is_ephemeral?: boolean | null;
257
262
  is_forwarded?: boolean | null;
258
263
  is_gif?: boolean | null;
@@ -269,6 +274,7 @@ export interface Database {
269
274
  org_id?: string;
270
275
  org_phone?: string;
271
276
  performed_by?: string | null;
277
+ prev_body?: string | null;
272
278
  quoted_message_id?: string | null;
273
279
  raw_data?: Json | null;
274
280
  sender_phone?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.9",
3
+ "version": "0.6.11",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -172,6 +172,7 @@ export interface Database {
172
172
  has_reaction: boolean | null
173
173
  id: Json | null
174
174
  invite_v4: Json | null
175
+ is_deleted: boolean | null
175
176
  is_ephemeral: boolean | null
176
177
  is_forwarded: boolean | null
177
178
  is_gif: boolean | null
@@ -188,6 +189,7 @@ export interface Database {
188
189
  org_id: string
189
190
  org_phone: string
190
191
  performed_by: string | null
192
+ prev_body: string | null
191
193
  quoted_message_id: string | null
192
194
  raw_data: Json | null
193
195
  sender_phone: string | null
@@ -212,6 +214,7 @@ export interface Database {
212
214
  has_reaction?: boolean | null
213
215
  id?: Json | null
214
216
  invite_v4?: Json | null
217
+ is_deleted?: boolean | null
215
218
  is_ephemeral?: boolean | null
216
219
  is_forwarded?: boolean | null
217
220
  is_gif?: boolean | null
@@ -228,6 +231,7 @@ export interface Database {
228
231
  org_id: string
229
232
  org_phone: string
230
233
  performed_by?: string | null
234
+ prev_body?: string | null
231
235
  quoted_message_id?: string | null
232
236
  raw_data?: Json | null
233
237
  sender_phone?: string | null
@@ -252,6 +256,7 @@ export interface Database {
252
256
  has_reaction?: boolean | null
253
257
  id?: Json | null
254
258
  invite_v4?: Json | null
259
+ is_deleted?: boolean | null
255
260
  is_ephemeral?: boolean | null
256
261
  is_forwarded?: boolean | null
257
262
  is_gif?: boolean | null
@@ -268,6 +273,7 @@ export interface Database {
268
273
  org_id?: string
269
274
  org_phone?: string
270
275
  performed_by?: string | null
276
+ prev_body?: string | null
271
277
  quoted_message_id?: string | null
272
278
  raw_data?: Json | null
273
279
  sender_phone?: string | null