@periskope/types 0.6.280 → 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
@@ -1548,6 +1554,7 @@ export type Database = {
1548
1554
  }
1549
1555
  tbl_org: {
1550
1556
  Row: {
1557
+ ai_settings: Json | null
1551
1558
  created_at: string
1552
1559
  is_deleted: boolean
1553
1560
  is_platform: boolean | null
@@ -1564,6 +1571,7 @@ export type Database = {
1564
1571
  support_link: string | null
1565
1572
  }
1566
1573
  Insert: {
1574
+ ai_settings?: Json | null
1567
1575
  created_at?: string
1568
1576
  is_deleted?: boolean
1569
1577
  is_platform?: boolean | null
@@ -1580,6 +1588,7 @@ export type Database = {
1580
1588
  support_link?: string | null
1581
1589
  }
1582
1590
  Update: {
1591
+ ai_settings?: Json | null
1583
1592
  created_at?: string
1584
1593
  is_deleted?: boolean
1585
1594
  is_platform?: boolean | null
@@ -2260,6 +2269,7 @@ export type Database = {
2260
2269
  view_org: {
2261
2270
  Row: {
2262
2271
  access_scopes: Json | null
2272
+ ai_settings: Json | null
2263
2273
  created_at: string | null
2264
2274
  is_enterprise: boolean | null
2265
2275
  is_free_trial: boolean | null
@@ -2285,6 +2295,7 @@ export type Database = {
2285
2295
  }
2286
2296
  Insert: {
2287
2297
  access_scopes?: never
2298
+ ai_settings?: Json | null
2288
2299
  created_at?: string | null
2289
2300
  is_enterprise?: never
2290
2301
  is_free_trial?: never
@@ -2310,6 +2321,7 @@ export type Database = {
2310
2321
  }
2311
2322
  Update: {
2312
2323
  access_scopes?: never
2324
+ ai_settings?: Json | null
2313
2325
  created_at?: string | null
2314
2326
  is_enterprise?: never
2315
2327
  is_free_trial?: never
@@ -2459,6 +2471,13 @@ export type Database = {
2459
2471
  }
2460
2472
  Returns: Json
2461
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
+ }
2462
2481
  get_export_members_data: {
2463
2482
  Args: { org_id_input: string; chat_id_input?: string[] }
2464
2483
  Returns: Json
@@ -2566,6 +2585,7 @@ export type Database = {
2566
2585
  org_id_input?: string
2567
2586
  chat_id_input?: string
2568
2587
  unique_message_id_input?: string
2588
+ with_attached_messages?: boolean
2569
2589
  }
2570
2590
  Returns: Json
2571
2591
  }