@periskope/types 0.6.54 → 0.6.58

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.
@@ -479,7 +479,7 @@ export interface Database {
479
479
  is_deleted?: boolean;
480
480
  label_ids?: Json | null;
481
481
  last_updated_at?: string;
482
- org_id: string;
482
+ org_id?: string;
483
483
  priority?: number | null;
484
484
  quoted_message_id: string;
485
485
  raised_by?: string | null;
package/dist/types.d.ts CHANGED
@@ -66,6 +66,7 @@ export type MediaType = {
66
66
  ar: number;
67
67
  };
68
68
  size?: number;
69
+ thumbnail?: string;
69
70
  };
70
71
  export type MessageType = OverrideProperties<Tables<'tbl_chat_messages'>, {
71
72
  message_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.54",
3
+ "version": "0.6.58",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -478,7 +478,7 @@ export interface Database {
478
478
  is_deleted?: boolean
479
479
  label_ids?: Json | null
480
480
  last_updated_at?: string
481
- org_id: string
481
+ org_id?: string
482
482
  priority?: number | null
483
483
  quoted_message_id: string
484
484
  raised_by?: string | null
package/types.ts CHANGED
@@ -92,6 +92,7 @@ export type MediaType = {
92
92
  filename?: string;
93
93
  dimensions?: { width: number; height: number; ar: number };
94
94
  size?: number;
95
+ thumbnail?: string;
95
96
  };
96
97
 
97
98
  export type MessageType = OverrideProperties<