@periskope/types 0.6.38 → 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.
@@ -992,7 +992,9 @@ export interface Database {
992
992
  };
993
993
  get_dashboard_statistics: {
994
994
  Args: {
995
- org_id_input?: string;
995
+ org_id_input: string;
996
+ type_input?: string;
997
+ interval_input?: unknown;
996
998
  };
997
999
  Returns: Json;
998
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.38",
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
@@ -995,7 +995,9 @@ export interface Database {
995
995
  }
996
996
  get_dashboard_statistics: {
997
997
  Args: {
998
- org_id_input?: string
998
+ org_id_input: string
999
+ type_input?: string
1000
+ interval_input?: unknown
999
1001
  }
1000
1002
  Returns: Json
1001
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<