@periskope/types 0.6.434 → 0.6.437

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.
@@ -2952,6 +2952,48 @@ export type Database = {
2952
2952
  }
2953
2953
  ];
2954
2954
  };
2955
+ tbl_team_messages: {
2956
+ Row: {
2957
+ ack: string | null;
2958
+ body: string | null;
2959
+ is_deleted: boolean | null;
2960
+ media: Json | null;
2961
+ mentioned_ids: string[] | null;
2962
+ message_id: string;
2963
+ message_type: string | null;
2964
+ org_id: string;
2965
+ performed_by: string;
2966
+ quoted_message_id: string | null;
2967
+ timestamp: string;
2968
+ };
2969
+ Insert: {
2970
+ ack?: string | null;
2971
+ body?: string | null;
2972
+ is_deleted?: boolean | null;
2973
+ media?: Json | null;
2974
+ mentioned_ids?: string[] | null;
2975
+ message_id: string;
2976
+ message_type?: string | null;
2977
+ org_id: string;
2978
+ performed_by: string;
2979
+ quoted_message_id?: string | null;
2980
+ timestamp?: string;
2981
+ };
2982
+ Update: {
2983
+ ack?: string | null;
2984
+ body?: string | null;
2985
+ is_deleted?: boolean | null;
2986
+ media?: Json | null;
2987
+ mentioned_ids?: string[] | null;
2988
+ message_id?: string;
2989
+ message_type?: string | null;
2990
+ org_id?: string;
2991
+ performed_by?: string;
2992
+ quoted_message_id?: string | null;
2993
+ timestamp?: string;
2994
+ };
2995
+ Relationships: [];
2996
+ };
2955
2997
  tbl_ticket_audit_logs: {
2956
2998
  Row: {
2957
2999
  action: string | null;