@periskope/types 0.6.281 → 0.6.282

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.
@@ -233,6 +233,7 @@ export type Database = {
233
233
  req: Json
234
234
  request_id: string
235
235
  res: Json | null
236
+ res_size: number | null
236
237
  status: number
237
238
  timestamp: string
238
239
  token_id: string
@@ -243,6 +244,7 @@ export type Database = {
243
244
  req: Json
244
245
  request_id: string
245
246
  res?: Json | null
247
+ res_size?: number | null
246
248
  status: number
247
249
  timestamp: string
248
250
  token_id: string
@@ -253,6 +255,7 @@ export type Database = {
253
255
  req?: Json
254
256
  request_id?: string
255
257
  res?: Json | null
258
+ res_size?: number | null
256
259
  status?: number
257
260
  timestamp?: string
258
261
  token_id?: string
@@ -1177,6 +1180,7 @@ export type Database = {
1177
1180
  contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null
1178
1181
  contact_id: string
1179
1182
  contact_image: string | null
1183
+ contact_lid: string | null
1180
1184
  contact_name: string | null
1181
1185
  contact_type: string | null
1182
1186
  id: Json | null
@@ -1206,6 +1210,7 @@ export type Database = {
1206
1210
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
1207
1211
  contact_id: string
1208
1212
  contact_image?: string | null
1213
+ contact_lid?: string | null
1209
1214
  contact_name?: string | null
1210
1215
  contact_type?: string | null
1211
1216
  id?: Json | null
@@ -1235,6 +1240,7 @@ export type Database = {
1235
1240
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
1236
1241
  contact_id?: string
1237
1242
  contact_image?: string | null
1243
+ contact_lid?: string | null
1238
1244
  contact_name?: string | null
1239
1245
  contact_type?: string | null
1240
1246
  id?: Json | null
@@ -2465,6 +2471,13 @@ export type Database = {
2465
2471
  }
2466
2472
  Returns: Json
2467
2473
  }
2474
+ get_chat_properties_by_chat_ids: {
2475
+ Args: {
2476
+ org_id_input: string
2477
+ chat_id_input?: string[]
2478
+ }
2479
+ Returns: Json
2480
+ }
2468
2481
  get_export_members_data: {
2469
2482
  Args: { org_id_input: string; chat_id_input?: string[] }
2470
2483
  Returns: Json