@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.
@@ -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?: string;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.37",
3
+ "version": "0.6.39",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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?: string
998
+ org_id_input: string
999
+ type_input?: string
1000
+ interval_input?: unknown
998
1001
  }
999
1002
  Returns: Json
1000
1003
  }
package/types.ts CHANGED
@@ -44,6 +44,7 @@ export type MediaType = {
44
44
  path: string;
45
45
  mimetype?: string;
46
46
  filename?: string;
47
+ dimensions?: { width: number; height: number; ar: number };
47
48
  };
48
49
 
49
50
  export type MessageType = OverrideProperties<