@periskope/types 0.6.22 → 0.6.24
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 +6 -0
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
- package/supabase.types.ts +1133 -1127
- package/types.ts +1 -1
package/dist/supabase.types.d.ts
CHANGED
|
@@ -145,6 +145,7 @@ export interface Database {
|
|
|
145
145
|
broadcast: boolean | null;
|
|
146
146
|
broadcast_id: string | null;
|
|
147
147
|
chat_id: string | null;
|
|
148
|
+
delivery_info: Json | null;
|
|
148
149
|
device_type: string | null;
|
|
149
150
|
duration: string | null;
|
|
150
151
|
forwarding_score: number | null;
|
|
@@ -180,6 +181,7 @@ export interface Database {
|
|
|
180
181
|
timestamp: string | null;
|
|
181
182
|
to: string | null;
|
|
182
183
|
token: string | null;
|
|
184
|
+
updated_at: string | null;
|
|
183
185
|
vcards: string[] | null;
|
|
184
186
|
};
|
|
185
187
|
Insert: {
|
|
@@ -189,6 +191,7 @@ export interface Database {
|
|
|
189
191
|
broadcast?: boolean | null;
|
|
190
192
|
broadcast_id?: string | null;
|
|
191
193
|
chat_id?: string | null;
|
|
194
|
+
delivery_info?: Json | null;
|
|
192
195
|
device_type?: string | null;
|
|
193
196
|
duration?: string | null;
|
|
194
197
|
forwarding_score?: number | null;
|
|
@@ -224,6 +227,7 @@ export interface Database {
|
|
|
224
227
|
timestamp?: string | null;
|
|
225
228
|
to?: string | null;
|
|
226
229
|
token?: string | null;
|
|
230
|
+
updated_at?: string | null;
|
|
227
231
|
vcards?: string[] | null;
|
|
228
232
|
};
|
|
229
233
|
Update: {
|
|
@@ -233,6 +237,7 @@ export interface Database {
|
|
|
233
237
|
broadcast?: boolean | null;
|
|
234
238
|
broadcast_id?: string | null;
|
|
235
239
|
chat_id?: string | null;
|
|
240
|
+
delivery_info?: Json | null;
|
|
236
241
|
device_type?: string | null;
|
|
237
242
|
duration?: string | null;
|
|
238
243
|
forwarding_score?: number | null;
|
|
@@ -268,6 +273,7 @@ export interface Database {
|
|
|
268
273
|
timestamp?: string | null;
|
|
269
274
|
to?: string | null;
|
|
270
275
|
token?: string | null;
|
|
276
|
+
updated_at?: string | null;
|
|
271
277
|
vcards?: string[] | null;
|
|
272
278
|
};
|
|
273
279
|
Relationships: [
|
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Merge, OverrideProperties } from 'type-fest';
|
|
2
|
-
import { Chat, MessageTypes } from 'whatsapp-web.js';
|
|
2
|
+
import { Chat, Location, MessageTypes } from 'whatsapp-web.js';
|
|
3
3
|
import { Tables } from './supabase.types';
|
|
4
4
|
export type WhatsappChat = Chat & {
|
|
5
5
|
groupMetadata?: any;
|