@periskope/types 0.6.449 → 0.6.450
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/.turbo/daemon/2a480df21ee2b3e0-turbo.log.2025-07-29 +1 -0
- package/.turbo/daemon/2a480df21ee2b3e0-turbo.log.2025-11-10 +0 -0
- package/dist/supabase.types.d.ts +46 -13
- package/dist/supabase.types.d.ts.map +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/supabase.types.ts +46 -13
- package/src/types.ts +3 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
2025-07-29T13:18:35.926605Z WARN daemon_server: turborepo_lib::commands::daemon: daemon already running
|
|
File without changes
|
package/dist/supabase.types.d.ts
CHANGED
|
@@ -883,12 +883,50 @@ export type Database = {
|
|
|
883
883
|
isOneToOne: false;
|
|
884
884
|
referencedRelation: "view_org";
|
|
885
885
|
referencedColumns: ["org_id"];
|
|
886
|
+
}
|
|
887
|
+
];
|
|
888
|
+
};
|
|
889
|
+
tbl_broadcast_chatlist: {
|
|
890
|
+
Row: {
|
|
891
|
+
chat_ids: string[];
|
|
892
|
+
created_at: string;
|
|
893
|
+
created_by: string | null;
|
|
894
|
+
org_id: string;
|
|
895
|
+
template_id: string;
|
|
896
|
+
template_name: string;
|
|
897
|
+
updated_at: string | null;
|
|
898
|
+
};
|
|
899
|
+
Insert: {
|
|
900
|
+
chat_ids?: string[];
|
|
901
|
+
created_at?: string;
|
|
902
|
+
created_by?: string | null;
|
|
903
|
+
org_id: string;
|
|
904
|
+
template_id?: string;
|
|
905
|
+
template_name: string;
|
|
906
|
+
updated_at?: string | null;
|
|
907
|
+
};
|
|
908
|
+
Update: {
|
|
909
|
+
chat_ids?: string[];
|
|
910
|
+
created_at?: string;
|
|
911
|
+
created_by?: string | null;
|
|
912
|
+
org_id?: string;
|
|
913
|
+
template_id?: string;
|
|
914
|
+
template_name?: string;
|
|
915
|
+
updated_at?: string | null;
|
|
916
|
+
};
|
|
917
|
+
Relationships: [
|
|
918
|
+
{
|
|
919
|
+
foreignKeyName: "tbl_broadcast_chatlist_org_id_fkey";
|
|
920
|
+
columns: ["org_id"];
|
|
921
|
+
isOneToOne: false;
|
|
922
|
+
referencedRelation: "tbl_org";
|
|
923
|
+
referencedColumns: ["org_id"];
|
|
886
924
|
},
|
|
887
925
|
{
|
|
888
|
-
foreignKeyName: "
|
|
926
|
+
foreignKeyName: "tbl_broadcast_chatlist_org_id_fkey";
|
|
889
927
|
columns: ["org_id"];
|
|
890
928
|
isOneToOne: false;
|
|
891
|
-
referencedRelation: "
|
|
929
|
+
referencedRelation: "view_org";
|
|
892
930
|
referencedColumns: ["org_id"];
|
|
893
931
|
}
|
|
894
932
|
];
|
|
@@ -984,11 +1022,13 @@ export type Database = {
|
|
|
984
1022
|
chat_ids: string[] | null;
|
|
985
1023
|
created_at: string;
|
|
986
1024
|
delay: number | null;
|
|
1025
|
+
is_repeat: boolean | null;
|
|
987
1026
|
message_payload: Json | null;
|
|
988
1027
|
org_id: string;
|
|
989
1028
|
org_phone: string | null;
|
|
990
1029
|
performed_at: string | null;
|
|
991
1030
|
performed_by: string | null;
|
|
1031
|
+
repeat_config: Json | null;
|
|
992
1032
|
scheduled_at: string | null;
|
|
993
1033
|
variables: Json | null;
|
|
994
1034
|
};
|
|
@@ -998,11 +1038,13 @@ export type Database = {
|
|
|
998
1038
|
chat_ids?: string[] | null;
|
|
999
1039
|
created_at?: string;
|
|
1000
1040
|
delay?: number | null;
|
|
1041
|
+
is_repeat?: boolean | null;
|
|
1001
1042
|
message_payload?: Json | null;
|
|
1002
1043
|
org_id: string;
|
|
1003
1044
|
org_phone?: string | null;
|
|
1004
1045
|
performed_at?: string | null;
|
|
1005
1046
|
performed_by?: string | null;
|
|
1047
|
+
repeat_config?: Json | null;
|
|
1006
1048
|
scheduled_at?: string | null;
|
|
1007
1049
|
variables?: Json | null;
|
|
1008
1050
|
};
|
|
@@ -1012,11 +1054,13 @@ export type Database = {
|
|
|
1012
1054
|
chat_ids?: string[] | null;
|
|
1013
1055
|
created_at?: string;
|
|
1014
1056
|
delay?: number | null;
|
|
1057
|
+
is_repeat?: boolean | null;
|
|
1015
1058
|
message_payload?: Json | null;
|
|
1016
1059
|
org_id?: string;
|
|
1017
1060
|
org_phone?: string | null;
|
|
1018
1061
|
performed_at?: string | null;
|
|
1019
1062
|
performed_by?: string | null;
|
|
1063
|
+
repeat_config?: Json | null;
|
|
1020
1064
|
scheduled_at?: string | null;
|
|
1021
1065
|
variables?: Json | null;
|
|
1022
1066
|
};
|
|
@@ -3540,15 +3584,6 @@ export type Database = {
|
|
|
3540
3584
|
};
|
|
3541
3585
|
Returns: Json;
|
|
3542
3586
|
};
|
|
3543
|
-
get_chats_by_id: {
|
|
3544
|
-
Args: {
|
|
3545
|
-
chat_id_input: string[];
|
|
3546
|
-
chat_org_phones_input?: string[];
|
|
3547
|
-
email_input?: string;
|
|
3548
|
-
org_id_input: string;
|
|
3549
|
-
};
|
|
3550
|
-
Returns: Json;
|
|
3551
|
-
};
|
|
3552
3587
|
get_chats_info: {
|
|
3553
3588
|
Args: {
|
|
3554
3589
|
chat_id_input: string;
|
|
@@ -3593,7 +3628,6 @@ export type Database = {
|
|
|
3593
3628
|
get_export_members_data: {
|
|
3594
3629
|
Args: {
|
|
3595
3630
|
chat_id_input?: string[];
|
|
3596
|
-
limit_input?: number;
|
|
3597
3631
|
offset_input?: number;
|
|
3598
3632
|
org_id_input: string;
|
|
3599
3633
|
};
|
|
@@ -3899,7 +3933,6 @@ export type Database = {
|
|
|
3899
3933
|
update_custom_properties: {
|
|
3900
3934
|
Args: {
|
|
3901
3935
|
org_id_input: string;
|
|
3902
|
-
replace_properties?: boolean;
|
|
3903
3936
|
row_properties_map: Json;
|
|
3904
3937
|
};
|
|
3905
3938
|
Returns: undefined;
|