@periskope/types 0.6.11 → 0.6.12

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.
@@ -493,9 +493,11 @@ export interface Database {
493
493
  };
494
494
  tbl_contacts: {
495
495
  Row: {
496
+ business_profile: Json | null;
496
497
  contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null;
497
498
  contact_id: string;
498
499
  contact_image: string | null;
500
+ contact_name: string | null;
499
501
  contact_type: string | null;
500
502
  id: Json | null;
501
503
  is_blocked: boolean | null;
@@ -513,11 +515,15 @@ export interface Database {
513
515
  org_id: string;
514
516
  pushname: string | null;
515
517
  short_name: string | null;
518
+ verified_level: number | null;
519
+ verified_name: string | null;
516
520
  };
517
521
  Insert: {
522
+ business_profile?: Json | null;
518
523
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null;
519
524
  contact_id: string;
520
525
  contact_image?: string | null;
526
+ contact_name?: string | null;
521
527
  contact_type?: string | null;
522
528
  id?: Json | null;
523
529
  is_blocked?: boolean | null;
@@ -535,11 +541,15 @@ export interface Database {
535
541
  org_id: string;
536
542
  pushname?: string | null;
537
543
  short_name?: string | null;
544
+ verified_level?: number | null;
545
+ verified_name?: string | null;
538
546
  };
539
547
  Update: {
548
+ business_profile?: Json | null;
540
549
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null;
541
550
  contact_id?: string;
542
551
  contact_image?: string | null;
552
+ contact_name?: string | null;
543
553
  contact_type?: string | null;
544
554
  id?: Json | null;
545
555
  is_blocked?: boolean | null;
@@ -557,6 +567,8 @@ export interface Database {
557
567
  org_id?: string;
558
568
  pushname?: string | null;
559
569
  short_name?: string | null;
570
+ verified_level?: number | null;
571
+ verified_name?: string | null;
560
572
  };
561
573
  Relationships: [
562
574
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -492,9 +492,11 @@ export interface Database {
492
492
  }
493
493
  tbl_contacts: {
494
494
  Row: {
495
+ business_profile: Json | null
495
496
  contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null
496
497
  contact_id: string
497
498
  contact_image: string | null
499
+ contact_name: string | null
498
500
  contact_type: string | null
499
501
  id: Json | null
500
502
  is_blocked: boolean | null
@@ -512,11 +514,15 @@ export interface Database {
512
514
  org_id: string
513
515
  pushname: string | null
514
516
  short_name: string | null
517
+ verified_level: number | null
518
+ verified_name: string | null
515
519
  }
516
520
  Insert: {
521
+ business_profile?: Json | null
517
522
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
518
523
  contact_id: string
519
524
  contact_image?: string | null
525
+ contact_name?: string | null
520
526
  contact_type?: string | null
521
527
  id?: Json | null
522
528
  is_blocked?: boolean | null
@@ -534,11 +540,15 @@ export interface Database {
534
540
  org_id: string
535
541
  pushname?: string | null
536
542
  short_name?: string | null
543
+ verified_level?: number | null
544
+ verified_name?: string | null
537
545
  }
538
546
  Update: {
547
+ business_profile?: Json | null
539
548
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
540
549
  contact_id?: string
541
550
  contact_image?: string | null
551
+ contact_name?: string | null
542
552
  contact_type?: string | null
543
553
  id?: Json | null
544
554
  is_blocked?: boolean | null
@@ -556,6 +566,8 @@ export interface Database {
556
566
  org_id?: string
557
567
  pushname?: string | null
558
568
  short_name?: string | null
569
+ verified_level?: number | null
570
+ verified_name?: string | null
559
571
  }
560
572
  Relationships: [
561
573
  {