@periskope/types 0.6.11 → 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 +15 -0
- package/package.json +1 -1
- package/supabase.types.ts +15 -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;
|
|
@@ -493,9 +496,11 @@ export interface Database {
|
|
|
493
496
|
};
|
|
494
497
|
tbl_contacts: {
|
|
495
498
|
Row: {
|
|
499
|
+
business_profile: Json | null;
|
|
496
500
|
contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null;
|
|
497
501
|
contact_id: string;
|
|
498
502
|
contact_image: string | null;
|
|
503
|
+
contact_name: string | null;
|
|
499
504
|
contact_type: string | null;
|
|
500
505
|
id: Json | null;
|
|
501
506
|
is_blocked: boolean | null;
|
|
@@ -513,11 +518,15 @@ export interface Database {
|
|
|
513
518
|
org_id: string;
|
|
514
519
|
pushname: string | null;
|
|
515
520
|
short_name: string | null;
|
|
521
|
+
verified_level: number | null;
|
|
522
|
+
verified_name: string | null;
|
|
516
523
|
};
|
|
517
524
|
Insert: {
|
|
525
|
+
business_profile?: Json | null;
|
|
518
526
|
contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null;
|
|
519
527
|
contact_id: string;
|
|
520
528
|
contact_image?: string | null;
|
|
529
|
+
contact_name?: string | null;
|
|
521
530
|
contact_type?: string | null;
|
|
522
531
|
id?: Json | null;
|
|
523
532
|
is_blocked?: boolean | null;
|
|
@@ -535,11 +544,15 @@ export interface Database {
|
|
|
535
544
|
org_id: string;
|
|
536
545
|
pushname?: string | null;
|
|
537
546
|
short_name?: string | null;
|
|
547
|
+
verified_level?: number | null;
|
|
548
|
+
verified_name?: string | null;
|
|
538
549
|
};
|
|
539
550
|
Update: {
|
|
551
|
+
business_profile?: Json | null;
|
|
540
552
|
contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null;
|
|
541
553
|
contact_id?: string;
|
|
542
554
|
contact_image?: string | null;
|
|
555
|
+
contact_name?: string | null;
|
|
543
556
|
contact_type?: string | null;
|
|
544
557
|
id?: Json | null;
|
|
545
558
|
is_blocked?: boolean | null;
|
|
@@ -557,6 +570,8 @@ export interface Database {
|
|
|
557
570
|
org_id?: string;
|
|
558
571
|
pushname?: string | null;
|
|
559
572
|
short_name?: string | null;
|
|
573
|
+
verified_level?: number | null;
|
|
574
|
+
verified_name?: string | null;
|
|
560
575
|
};
|
|
561
576
|
Relationships: [
|
|
562
577
|
{
|
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
|
|
@@ -492,9 +495,11 @@ export interface Database {
|
|
|
492
495
|
}
|
|
493
496
|
tbl_contacts: {
|
|
494
497
|
Row: {
|
|
498
|
+
business_profile: Json | null
|
|
495
499
|
contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null
|
|
496
500
|
contact_id: string
|
|
497
501
|
contact_image: string | null
|
|
502
|
+
contact_name: string | null
|
|
498
503
|
contact_type: string | null
|
|
499
504
|
id: Json | null
|
|
500
505
|
is_blocked: boolean | null
|
|
@@ -512,11 +517,15 @@ export interface Database {
|
|
|
512
517
|
org_id: string
|
|
513
518
|
pushname: string | null
|
|
514
519
|
short_name: string | null
|
|
520
|
+
verified_level: number | null
|
|
521
|
+
verified_name: string | null
|
|
515
522
|
}
|
|
516
523
|
Insert: {
|
|
524
|
+
business_profile?: Json | null
|
|
517
525
|
contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
|
|
518
526
|
contact_id: string
|
|
519
527
|
contact_image?: string | null
|
|
528
|
+
contact_name?: string | null
|
|
520
529
|
contact_type?: string | null
|
|
521
530
|
id?: Json | null
|
|
522
531
|
is_blocked?: boolean | null
|
|
@@ -534,11 +543,15 @@ export interface Database {
|
|
|
534
543
|
org_id: string
|
|
535
544
|
pushname?: string | null
|
|
536
545
|
short_name?: string | null
|
|
546
|
+
verified_level?: number | null
|
|
547
|
+
verified_name?: string | null
|
|
537
548
|
}
|
|
538
549
|
Update: {
|
|
550
|
+
business_profile?: Json | null
|
|
539
551
|
contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
|
|
540
552
|
contact_id?: string
|
|
541
553
|
contact_image?: string | null
|
|
554
|
+
contact_name?: string | null
|
|
542
555
|
contact_type?: string | null
|
|
543
556
|
id?: Json | null
|
|
544
557
|
is_blocked?: boolean | null
|
|
@@ -556,6 +569,8 @@ export interface Database {
|
|
|
556
569
|
org_id?: string
|
|
557
570
|
pushname?: string | null
|
|
558
571
|
short_name?: string | null
|
|
572
|
+
verified_level?: number | null
|
|
573
|
+
verified_name?: string | null
|
|
559
574
|
}
|
|
560
575
|
Relationships: [
|
|
561
576
|
{
|