@periskope/types 0.6.107 → 0.6.109
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 +7 -0
- package/package.json +1 -1
- package/supabase.types.ts +7 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -346,6 +346,7 @@ export type Database = {
|
|
|
346
346
|
duration: string | null;
|
|
347
347
|
flag_metadata: Json | null;
|
|
348
348
|
flag_response_time: number | null;
|
|
349
|
+
flag_status: boolean | null;
|
|
349
350
|
forwarding_score: number | null;
|
|
350
351
|
from: string | null;
|
|
351
352
|
from_me: boolean | null;
|
|
@@ -397,6 +398,7 @@ export type Database = {
|
|
|
397
398
|
duration?: string | null;
|
|
398
399
|
flag_metadata?: Json | null;
|
|
399
400
|
flag_response_time?: number | null;
|
|
401
|
+
flag_status?: boolean | null;
|
|
400
402
|
forwarding_score?: number | null;
|
|
401
403
|
from?: string | null;
|
|
402
404
|
from_me?: boolean | null;
|
|
@@ -448,6 +450,7 @@ export type Database = {
|
|
|
448
450
|
duration?: string | null;
|
|
449
451
|
flag_metadata?: Json | null;
|
|
450
452
|
flag_response_time?: number | null;
|
|
453
|
+
flag_status?: boolean | null;
|
|
451
454
|
forwarding_score?: number | null;
|
|
452
455
|
from?: string | null;
|
|
453
456
|
from_me?: boolean | null;
|
|
@@ -587,6 +590,7 @@ export type Database = {
|
|
|
587
590
|
};
|
|
588
591
|
tbl_chat_properties: {
|
|
589
592
|
Row: {
|
|
593
|
+
assigned_to: string | null;
|
|
590
594
|
chat_id: string;
|
|
591
595
|
custom_properties: Json | null;
|
|
592
596
|
flag_count: number;
|
|
@@ -595,6 +599,7 @@ export type Database = {
|
|
|
595
599
|
org_id: string;
|
|
596
600
|
};
|
|
597
601
|
Insert: {
|
|
602
|
+
assigned_to?: string | null;
|
|
598
603
|
chat_id: string;
|
|
599
604
|
custom_properties?: Json | null;
|
|
600
605
|
flag_count?: number;
|
|
@@ -603,6 +608,7 @@ export type Database = {
|
|
|
603
608
|
org_id: string;
|
|
604
609
|
};
|
|
605
610
|
Update: {
|
|
611
|
+
assigned_to?: string | null;
|
|
606
612
|
chat_id?: string;
|
|
607
613
|
custom_properties?: Json | null;
|
|
608
614
|
flag_count?: number;
|
|
@@ -1531,6 +1537,7 @@ export type Database = {
|
|
|
1531
1537
|
};
|
|
1532
1538
|
view_chats: {
|
|
1533
1539
|
Row: {
|
|
1540
|
+
assigned_to: string | null;
|
|
1534
1541
|
chat_access: Json | null;
|
|
1535
1542
|
chat_id: string | null;
|
|
1536
1543
|
chat_image: string | null;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -351,6 +351,7 @@ export type Database = {
|
|
|
351
351
|
duration: string | null;
|
|
352
352
|
flag_metadata: Json | null;
|
|
353
353
|
flag_response_time: number | null;
|
|
354
|
+
flag_status: boolean | null;
|
|
354
355
|
forwarding_score: number | null;
|
|
355
356
|
from: string | null;
|
|
356
357
|
from_me: boolean | null;
|
|
@@ -402,6 +403,7 @@ export type Database = {
|
|
|
402
403
|
duration?: string | null;
|
|
403
404
|
flag_metadata?: Json | null;
|
|
404
405
|
flag_response_time?: number | null;
|
|
406
|
+
flag_status?: boolean | null;
|
|
405
407
|
forwarding_score?: number | null;
|
|
406
408
|
from?: string | null;
|
|
407
409
|
from_me?: boolean | null;
|
|
@@ -453,6 +455,7 @@ export type Database = {
|
|
|
453
455
|
duration?: string | null;
|
|
454
456
|
flag_metadata?: Json | null;
|
|
455
457
|
flag_response_time?: number | null;
|
|
458
|
+
flag_status?: boolean | null;
|
|
456
459
|
forwarding_score?: number | null;
|
|
457
460
|
from?: string | null;
|
|
458
461
|
from_me?: boolean | null;
|
|
@@ -592,6 +595,7 @@ export type Database = {
|
|
|
592
595
|
};
|
|
593
596
|
tbl_chat_properties: {
|
|
594
597
|
Row: {
|
|
598
|
+
assigned_to: string | null;
|
|
595
599
|
chat_id: string;
|
|
596
600
|
custom_properties: Json | null;
|
|
597
601
|
flag_count: number;
|
|
@@ -600,6 +604,7 @@ export type Database = {
|
|
|
600
604
|
org_id: string;
|
|
601
605
|
};
|
|
602
606
|
Insert: {
|
|
607
|
+
assigned_to?: string | null;
|
|
603
608
|
chat_id: string;
|
|
604
609
|
custom_properties?: Json | null;
|
|
605
610
|
flag_count?: number;
|
|
@@ -608,6 +613,7 @@ export type Database = {
|
|
|
608
613
|
org_id: string;
|
|
609
614
|
};
|
|
610
615
|
Update: {
|
|
616
|
+
assigned_to?: string | null;
|
|
611
617
|
chat_id?: string;
|
|
612
618
|
custom_properties?: Json | null;
|
|
613
619
|
flag_count?: number;
|
|
@@ -1548,6 +1554,7 @@ export type Database = {
|
|
|
1548
1554
|
};
|
|
1549
1555
|
view_chats: {
|
|
1550
1556
|
Row: {
|
|
1557
|
+
assigned_to: string | null;
|
|
1551
1558
|
chat_access: Json | null;
|
|
1552
1559
|
chat_id: string | null;
|
|
1553
1560
|
chat_image: string | null;
|