@periskope/types 0.6.158 → 0.6.159

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.
package/supabase.types.ts CHANGED
@@ -749,7 +749,6 @@ export type Database = {
749
749
  latest_message_timestamp: string | null
750
750
  org_id: string
751
751
  unread_count: Json | null
752
- unread_count_map: Json | null
753
752
  updated_at: string | null
754
753
  }
755
754
  Insert: {
@@ -768,7 +767,6 @@ export type Database = {
768
767
  latest_message_timestamp?: string | null
769
768
  org_id: string
770
769
  unread_count?: Json | null
771
- unread_count_map?: Json | null
772
770
  updated_at?: string | null
773
771
  }
774
772
  Update: {
@@ -787,7 +785,6 @@ export type Database = {
787
785
  latest_message_timestamp?: string | null
788
786
  org_id?: string
789
787
  unread_count?: Json | null
790
- unread_count_map?: Json | null
791
788
  updated_at?: string | null
792
789
  }
793
790
  Relationships: []
@@ -958,6 +955,7 @@ export type Database = {
958
955
  is_read_only: boolean | null
959
956
  latest_message: Json | null
960
957
  member_count: number | null
958
+ member_unread_count: Json | null
961
959
  mute_expiration: number | null
962
960
  name: string | null
963
961
  org_id: string
@@ -984,6 +982,7 @@ export type Database = {
984
982
  is_read_only?: boolean | null
985
983
  latest_message?: Json | null
986
984
  member_count?: number | null
985
+ member_unread_count?: Json | null
987
986
  mute_expiration?: number | null
988
987
  name?: string | null
989
988
  org_id: string
@@ -1010,6 +1009,7 @@ export type Database = {
1010
1009
  is_read_only?: boolean | null
1011
1010
  latest_message?: Json | null
1012
1011
  member_count?: number | null
1012
+ member_unread_count?: Json | null
1013
1013
  mute_expiration?: number | null
1014
1014
  name?: string | null
1015
1015
  org_id?: string
@@ -2060,10 +2060,7 @@ export type Database = {
2060
2060
  Args: {
2061
2061
  org_id_input: string
2062
2062
  }
2063
- Returns: {
2064
- feature: string
2065
- enabled: boolean
2066
- }[]
2063
+ Returns: Json
2067
2064
  }
2068
2065
  get_integration_data: {
2069
2066
  Args: {
@@ -2342,6 +2339,7 @@ export type Database = {
2342
2339
  owner_id: string | null
2343
2340
  path_tokens: string[] | null
2344
2341
  updated_at: string | null
2342
+ user_metadata: Json | null
2345
2343
  version: string | null
2346
2344
  }
2347
2345
  Insert: {
@@ -2355,6 +2353,7 @@ export type Database = {
2355
2353
  owner_id?: string | null
2356
2354
  path_tokens?: string[] | null
2357
2355
  updated_at?: string | null
2356
+ user_metadata?: Json | null
2358
2357
  version?: string | null
2359
2358
  }
2360
2359
  Update: {
@@ -2368,6 +2367,7 @@ export type Database = {
2368
2367
  owner_id?: string | null
2369
2368
  path_tokens?: string[] | null
2370
2369
  updated_at?: string | null
2370
+ user_metadata?: Json | null
2371
2371
  version?: string | null
2372
2372
  }
2373
2373
  Relationships: [
@@ -2389,6 +2389,7 @@ export type Database = {
2389
2389
  key: string
2390
2390
  owner_id: string | null
2391
2391
  upload_signature: string
2392
+ user_metadata: Json | null
2392
2393
  version: string
2393
2394
  }
2394
2395
  Insert: {
@@ -2399,6 +2400,7 @@ export type Database = {
2399
2400
  key: string
2400
2401
  owner_id?: string | null
2401
2402
  upload_signature: string
2403
+ user_metadata?: Json | null
2402
2404
  version: string
2403
2405
  }
2404
2406
  Update: {
@@ -2409,6 +2411,7 @@ export type Database = {
2409
2411
  key?: string
2410
2412
  owner_id?: string | null
2411
2413
  upload_signature?: string
2414
+ user_metadata?: Json | null
2412
2415
  version?: string
2413
2416
  }
2414
2417
  Relationships: [
@@ -2545,6 +2548,10 @@ export type Database = {
2545
2548
  updated_at: string
2546
2549
  }[]
2547
2550
  }
2551
+ operation: {
2552
+ Args: Record<PropertyKey, never>
2553
+ Returns: string
2554
+ }
2548
2555
  search: {
2549
2556
  Args: {
2550
2557
  prefix: string