@periskope/types 0.6.37 → 0.6.39
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 +4 -1
- package/dist/types.d.ts +5 -0
- package/package.json +1 -1
- package/supabase.types.ts +4 -1
- package/types.ts +1 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -843,6 +843,7 @@ export interface Database {
|
|
|
843
843
|
Row: {
|
|
844
844
|
broadcast_id: string | null;
|
|
845
845
|
completed_at: string | null;
|
|
846
|
+
created_at: string | null;
|
|
846
847
|
delivered_member_count: number | null;
|
|
847
848
|
delivery_percentage: number | null;
|
|
848
849
|
failed_chats: number | null;
|
|
@@ -991,7 +992,9 @@ export interface Database {
|
|
|
991
992
|
};
|
|
992
993
|
get_dashboard_statistics: {
|
|
993
994
|
Args: {
|
|
994
|
-
org_id_input
|
|
995
|
+
org_id_input: string;
|
|
996
|
+
type_input?: string;
|
|
997
|
+
interval_input?: unknown;
|
|
995
998
|
};
|
|
996
999
|
Returns: Json;
|
|
997
1000
|
};
|
package/dist/types.d.ts
CHANGED
|
@@ -27,6 +27,11 @@ export type MediaType = {
|
|
|
27
27
|
path: string;
|
|
28
28
|
mimetype?: string;
|
|
29
29
|
filename?: string;
|
|
30
|
+
dimensions?: {
|
|
31
|
+
width: number;
|
|
32
|
+
height: number;
|
|
33
|
+
ar: number;
|
|
34
|
+
};
|
|
30
35
|
};
|
|
31
36
|
export type MessageType = OverrideProperties<Tables<'tbl_chat_messages'>, {
|
|
32
37
|
message_type: MessageTypes;
|
package/package.json
CHANGED
package/supabase.types.ts
CHANGED
|
@@ -846,6 +846,7 @@ export interface Database {
|
|
|
846
846
|
Row: {
|
|
847
847
|
broadcast_id: string | null
|
|
848
848
|
completed_at: string | null
|
|
849
|
+
created_at: string | null
|
|
849
850
|
delivered_member_count: number | null
|
|
850
851
|
delivery_percentage: number | null
|
|
851
852
|
failed_chats: number | null
|
|
@@ -994,7 +995,9 @@ export interface Database {
|
|
|
994
995
|
}
|
|
995
996
|
get_dashboard_statistics: {
|
|
996
997
|
Args: {
|
|
997
|
-
org_id_input
|
|
998
|
+
org_id_input: string
|
|
999
|
+
type_input?: string
|
|
1000
|
+
interval_input?: unknown
|
|
998
1001
|
}
|
|
999
1002
|
Returns: Json
|
|
1000
1003
|
}
|