@periskope/types 0.6.28 → 0.6.29
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 +18 -0
- package/package.json +1 -1
- package/supabase.types.ts +1257 -1239
package/dist/supabase.types.d.ts
CHANGED
|
@@ -518,6 +518,7 @@ export interface Database {
|
|
|
518
518
|
pinned: boolean | null;
|
|
519
519
|
timestamp: string | null;
|
|
520
520
|
unread_count: number | null;
|
|
521
|
+
updated_at: string;
|
|
521
522
|
};
|
|
522
523
|
Insert: {
|
|
523
524
|
archived?: boolean | null;
|
|
@@ -537,6 +538,7 @@ export interface Database {
|
|
|
537
538
|
pinned?: boolean | null;
|
|
538
539
|
timestamp?: string | null;
|
|
539
540
|
unread_count?: number | null;
|
|
541
|
+
updated_at?: string;
|
|
540
542
|
};
|
|
541
543
|
Update: {
|
|
542
544
|
archived?: boolean | null;
|
|
@@ -556,6 +558,7 @@ export interface Database {
|
|
|
556
558
|
pinned?: boolean | null;
|
|
557
559
|
timestamp?: string | null;
|
|
558
560
|
unread_count?: number | null;
|
|
561
|
+
updated_at?: string;
|
|
559
562
|
};
|
|
560
563
|
Relationships: [
|
|
561
564
|
{
|
|
@@ -591,6 +594,7 @@ export interface Database {
|
|
|
591
594
|
org_id: string;
|
|
592
595
|
pushname: string | null;
|
|
593
596
|
short_name: string | null;
|
|
597
|
+
updated_at: string | null;
|
|
594
598
|
verified_level: number | null;
|
|
595
599
|
verified_name: string | null;
|
|
596
600
|
};
|
|
@@ -617,6 +621,7 @@ export interface Database {
|
|
|
617
621
|
org_id: string;
|
|
618
622
|
pushname?: string | null;
|
|
619
623
|
short_name?: string | null;
|
|
624
|
+
updated_at?: string | null;
|
|
620
625
|
verified_level?: number | null;
|
|
621
626
|
verified_name?: string | null;
|
|
622
627
|
};
|
|
@@ -643,6 +648,7 @@ export interface Database {
|
|
|
643
648
|
org_id?: string;
|
|
644
649
|
pushname?: string | null;
|
|
645
650
|
short_name?: string | null;
|
|
651
|
+
updated_at?: string | null;
|
|
646
652
|
verified_level?: number | null;
|
|
647
653
|
verified_name?: string | null;
|
|
648
654
|
};
|
|
@@ -661,6 +667,7 @@ export interface Database {
|
|
|
661
667
|
created_at: string;
|
|
662
668
|
org_id: string;
|
|
663
669
|
org_image: string | null;
|
|
670
|
+
org_metadata: Json | null;
|
|
664
671
|
org_name: string | null;
|
|
665
672
|
support_link: string | null;
|
|
666
673
|
};
|
|
@@ -668,6 +675,7 @@ export interface Database {
|
|
|
668
675
|
created_at?: string;
|
|
669
676
|
org_id?: string;
|
|
670
677
|
org_image?: string | null;
|
|
678
|
+
org_metadata?: Json | null;
|
|
671
679
|
org_name?: string | null;
|
|
672
680
|
support_link?: string | null;
|
|
673
681
|
};
|
|
@@ -675,6 +683,7 @@ export interface Database {
|
|
|
675
683
|
created_at?: string;
|
|
676
684
|
org_id?: string;
|
|
677
685
|
org_image?: string | null;
|
|
686
|
+
org_metadata?: Json | null;
|
|
678
687
|
org_name?: string | null;
|
|
679
688
|
support_link?: string | null;
|
|
680
689
|
};
|
|
@@ -874,6 +883,7 @@ export interface Database {
|
|
|
874
883
|
pinned: boolean | null;
|
|
875
884
|
timestamp: string | null;
|
|
876
885
|
unread_count: number | null;
|
|
886
|
+
updated_at: string | null;
|
|
877
887
|
};
|
|
878
888
|
Relationships: [
|
|
879
889
|
{
|
|
@@ -910,12 +920,20 @@ export interface Database {
|
|
|
910
920
|
Args: {
|
|
911
921
|
chat_id_input?: string[];
|
|
912
922
|
with_metadata?: boolean;
|
|
923
|
+
last_updated_at_input?: string;
|
|
913
924
|
};
|
|
914
925
|
Returns: Json;
|
|
915
926
|
};
|
|
916
927
|
get_contacts: {
|
|
917
928
|
Args: {
|
|
918
929
|
contact_ids_input?: string[];
|
|
930
|
+
last_updated_at_input?: string;
|
|
931
|
+
};
|
|
932
|
+
Returns: Json;
|
|
933
|
+
};
|
|
934
|
+
get_dashboard_statistics: {
|
|
935
|
+
Args: {
|
|
936
|
+
org_id_input?: string;
|
|
919
937
|
};
|
|
920
938
|
Returns: Json;
|
|
921
939
|
};
|