@periskope/types 0.6.138 → 0.6.139

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.
@@ -830,6 +830,7 @@ export type Database = {
830
830
  group_metadata: Json | null;
831
831
  id: Json | null;
832
832
  invite_link: string | null;
833
+ is_exited: boolean | null;
833
834
  is_group: boolean | null;
834
835
  is_muted: boolean | null;
835
836
  is_read_only: boolean | null;
@@ -854,6 +855,7 @@ export type Database = {
854
855
  group_metadata?: Json | null;
855
856
  id?: Json | null;
856
857
  invite_link?: string | null;
858
+ is_exited?: boolean | null;
857
859
  is_group?: boolean | null;
858
860
  is_muted?: boolean | null;
859
861
  is_read_only?: boolean | null;
@@ -878,6 +880,7 @@ export type Database = {
878
880
  group_metadata?: Json | null;
879
881
  id?: Json | null;
880
882
  invite_link?: string | null;
883
+ is_exited?: boolean | null;
881
884
  is_group?: boolean | null;
882
885
  is_muted?: boolean | null;
883
886
  is_read_only?: boolean | null;
@@ -1674,6 +1677,7 @@ export type Database = {
1674
1677
  info_admins_only: boolean | null;
1675
1678
  invite_link: string | null;
1676
1679
  is_archived: boolean | null;
1680
+ is_exited: boolean | null;
1677
1681
  is_muted: boolean | null;
1678
1682
  label_ids: Json | null;
1679
1683
  last_read_timestamp: string | null;
package/dist/types.d.ts CHANGED
@@ -156,7 +156,7 @@ export type MessageType = Merge<OverrideProperties<Tables<'tbl_chat_messages'>,
156
156
  }>;
157
157
  export type MessageFlagType = {
158
158
  status: boolean;
159
- response_type?: 'message' | 'reaction' | 'ticket';
159
+ response_type?: 'message' | 'reaction' | 'ticket' | 'manual';
160
160
  response_id?: string;
161
161
  response_timestamp?: string;
162
162
  response_email?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.138",
3
+ "version": "0.6.139",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -839,6 +839,7 @@ export type Database = {
839
839
  group_metadata: Json | null
840
840
  id: Json | null
841
841
  invite_link: string | null
842
+ is_exited: boolean | null
842
843
  is_group: boolean | null
843
844
  is_muted: boolean | null
844
845
  is_read_only: boolean | null
@@ -863,6 +864,7 @@ export type Database = {
863
864
  group_metadata?: Json | null
864
865
  id?: Json | null
865
866
  invite_link?: string | null
867
+ is_exited?: boolean | null
866
868
  is_group?: boolean | null
867
869
  is_muted?: boolean | null
868
870
  is_read_only?: boolean | null
@@ -887,6 +889,7 @@ export type Database = {
887
889
  group_metadata?: Json | null
888
890
  id?: Json | null
889
891
  invite_link?: string | null
892
+ is_exited?: boolean | null
890
893
  is_group?: boolean | null
891
894
  is_muted?: boolean | null
892
895
  is_read_only?: boolean | null
@@ -1685,6 +1688,7 @@ export type Database = {
1685
1688
  info_admins_only: boolean | null
1686
1689
  invite_link: string | null
1687
1690
  is_archived: boolean | null
1691
+ is_exited: boolean | null
1688
1692
  is_muted: boolean | null
1689
1693
  label_ids: Json | null
1690
1694
  last_read_timestamp: string | null
package/types.ts CHANGED
@@ -188,7 +188,7 @@ export type MessageType = Merge<
188
188
 
189
189
  export type MessageFlagType = {
190
190
  status: boolean;
191
- response_type?: 'message' | 'reaction' | 'ticket';
191
+ response_type?: 'message' | 'reaction' | 'ticket' | 'manual';
192
192
  response_id?: string;
193
193
  response_timestamp?: string;
194
194
  response_email?: string;