@periskope/types 0.6.418 → 0.6.420

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.
@@ -2,6 +2,9 @@ export type Json = {
2
2
  [key: string]: any;
3
3
  } | any;
4
4
  export type Database = {
5
+ __InternalSupabase: {
6
+ PostgrestVersion: "12.2.3 (519615d)";
7
+ };
5
8
  internal: {
6
9
  Tables: {
7
10
  config: {
@@ -867,6 +870,7 @@ export type Database = {
867
870
  has_quoted_msg: boolean | null;
868
871
  has_reaction: boolean | null;
869
872
  id: Json | null;
873
+ interactive: Json | null;
870
874
  invite_v4: Json | null;
871
875
  is_deleted: boolean | null;
872
876
  is_ephemeral: boolean | null;
@@ -896,6 +900,7 @@ export type Database = {
896
900
  timestamp: string | null;
897
901
  to: string | null;
898
902
  token: string | null;
903
+ translated_body: Json | null;
899
904
  unique_id: string | null;
900
905
  updated_at: string | null;
901
906
  vcards: string[] | null;
@@ -921,6 +926,7 @@ export type Database = {
921
926
  has_quoted_msg?: boolean | null;
922
927
  has_reaction?: boolean | null;
923
928
  id?: Json | null;
929
+ interactive?: Json | null;
924
930
  invite_v4?: Json | null;
925
931
  is_deleted?: boolean | null;
926
932
  is_ephemeral?: boolean | null;
@@ -950,6 +956,7 @@ export type Database = {
950
956
  timestamp?: string | null;
951
957
  to?: string | null;
952
958
  token?: string | null;
959
+ translated_body?: Json | null;
953
960
  unique_id?: string | null;
954
961
  updated_at?: string | null;
955
962
  vcards?: string[] | null;
@@ -975,6 +982,7 @@ export type Database = {
975
982
  has_quoted_msg?: boolean | null;
976
983
  has_reaction?: boolean | null;
977
984
  id?: Json | null;
985
+ interactive?: Json | null;
978
986
  invite_v4?: Json | null;
979
987
  is_deleted?: boolean | null;
980
988
  is_ephemeral?: boolean | null;
@@ -1004,6 +1012,7 @@ export type Database = {
1004
1012
  timestamp?: string | null;
1005
1013
  to?: string | null;
1006
1014
  token?: string | null;
1015
+ translated_body?: Json | null;
1007
1016
  unique_id?: string | null;
1008
1017
  updated_at?: string | null;
1009
1018
  vcards?: string[] | null;
@@ -2059,6 +2068,7 @@ export type Database = {
2059
2068
  server_image: string | null;
2060
2069
  server_ip: string | null;
2061
2070
  server_name: string | null;
2071
+ server_port: number | null;
2062
2072
  server_zone: string | null;
2063
2073
  updated_at: string | null;
2064
2074
  wa_state: string | null;
@@ -2083,6 +2093,7 @@ export type Database = {
2083
2093
  server_image?: string | null;
2084
2094
  server_ip?: string | null;
2085
2095
  server_name?: string | null;
2096
+ server_port?: number | null;
2086
2097
  server_zone?: string | null;
2087
2098
  updated_at?: string | null;
2088
2099
  wa_state?: string | null;
@@ -2107,6 +2118,7 @@ export type Database = {
2107
2118
  server_image?: string | null;
2108
2119
  server_ip?: string | null;
2109
2120
  server_name?: string | null;
2121
+ server_port?: number | null;
2110
2122
  server_zone?: string | null;
2111
2123
  updated_at?: string | null;
2112
2124
  wa_state?: string | null;
@@ -2147,12 +2159,13 @@ export type Database = {
2147
2159
  Row: {
2148
2160
  assignee: string | null;
2149
2161
  associated_object_metadata: Json | null;
2162
+ chat_id: string | null;
2150
2163
  completed_metadata: Json | null;
2151
2164
  created_at: string;
2152
2165
  created_by: string;
2153
2166
  due_date: string | null;
2154
2167
  last_updated_at: string;
2155
- last_updated_by: string;
2168
+ last_updated_by: string | null;
2156
2169
  notes: string | null;
2157
2170
  org_id: string;
2158
2171
  priority: number;
@@ -2166,12 +2179,13 @@ export type Database = {
2166
2179
  Insert: {
2167
2180
  assignee?: string | null;
2168
2181
  associated_object_metadata?: Json | null;
2182
+ chat_id?: string | null;
2169
2183
  completed_metadata?: Json | null;
2170
2184
  created_at?: string;
2171
2185
  created_by?: string;
2172
2186
  due_date?: string | null;
2173
2187
  last_updated_at?: string;
2174
- last_updated_by: string;
2188
+ last_updated_by?: string | null;
2175
2189
  notes?: string | null;
2176
2190
  org_id: string;
2177
2191
  priority?: number;
@@ -2185,12 +2199,13 @@ export type Database = {
2185
2199
  Update: {
2186
2200
  assignee?: string | null;
2187
2201
  associated_object_metadata?: Json | null;
2202
+ chat_id?: string | null;
2188
2203
  completed_metadata?: Json | null;
2189
2204
  created_at?: string;
2190
2205
  created_by?: string;
2191
2206
  due_date?: string | null;
2192
2207
  last_updated_at?: string;
2193
- last_updated_by?: string;
2208
+ last_updated_by?: string | null;
2194
2209
  notes?: string | null;
2195
2210
  org_id?: string;
2196
2211
  priority?: number;
@@ -2968,7 +2983,7 @@ export type Database = {
2968
2983
  Args: {
2969
2984
  chat_id_input: string;
2970
2985
  org_id_input: string;
2971
- org_phone_input: string;
2986
+ org_phone_input?: string;
2972
2987
  };
2973
2988
  Returns: Json;
2974
2989
  };
@@ -3345,6 +3360,7 @@ export type Database = {
3345
3360
  has_quoted_msg: boolean | null;
3346
3361
  has_reaction: boolean | null;
3347
3362
  id: Json | null;
3363
+ interactive: Json | null;
3348
3364
  invite_v4: Json | null;
3349
3365
  is_deleted: boolean | null;
3350
3366
  is_ephemeral: boolean | null;
@@ -3374,6 +3390,7 @@ export type Database = {
3374
3390
  timestamp: string | null;
3375
3391
  to: string | null;
3376
3392
  token: string | null;
3393
+ translated_body: Json | null;
3377
3394
  unique_id: string | null;
3378
3395
  updated_at: string | null;
3379
3396
  vcards: string[] | null;