@periskope/types 0.6.10 → 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.
@@ -173,6 +173,7 @@ export interface Database {
173
173
  has_reaction: boolean | null;
174
174
  id: Json | null;
175
175
  invite_v4: Json | null;
176
+ is_deleted: boolean | null;
176
177
  is_ephemeral: boolean | null;
177
178
  is_forwarded: boolean | null;
178
179
  is_gif: boolean | null;
@@ -214,6 +215,7 @@ export interface Database {
214
215
  has_reaction?: boolean | null;
215
216
  id?: Json | null;
216
217
  invite_v4?: Json | null;
218
+ is_deleted?: boolean | null;
217
219
  is_ephemeral?: boolean | null;
218
220
  is_forwarded?: boolean | null;
219
221
  is_gif?: boolean | null;
@@ -255,6 +257,7 @@ export interface Database {
255
257
  has_reaction?: boolean | null;
256
258
  id?: Json | null;
257
259
  invite_v4?: Json | null;
260
+ is_deleted?: boolean | null;
258
261
  is_ephemeral?: boolean | null;
259
262
  is_forwarded?: boolean | null;
260
263
  is_gif?: boolean | null;
@@ -490,9 +493,11 @@ export interface Database {
490
493
  };
491
494
  tbl_contacts: {
492
495
  Row: {
496
+ business_profile: Json | null;
493
497
  contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null;
494
498
  contact_id: string;
495
499
  contact_image: string | null;
500
+ contact_name: string | null;
496
501
  contact_type: string | null;
497
502
  id: Json | null;
498
503
  is_blocked: boolean | null;
@@ -510,11 +515,15 @@ export interface Database {
510
515
  org_id: string;
511
516
  pushname: string | null;
512
517
  short_name: string | null;
518
+ verified_level: number | null;
519
+ verified_name: string | null;
513
520
  };
514
521
  Insert: {
522
+ business_profile?: Json | null;
515
523
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null;
516
524
  contact_id: string;
517
525
  contact_image?: string | null;
526
+ contact_name?: string | null;
518
527
  contact_type?: string | null;
519
528
  id?: Json | null;
520
529
  is_blocked?: boolean | null;
@@ -532,11 +541,15 @@ export interface Database {
532
541
  org_id: string;
533
542
  pushname?: string | null;
534
543
  short_name?: string | null;
544
+ verified_level?: number | null;
545
+ verified_name?: string | null;
535
546
  };
536
547
  Update: {
548
+ business_profile?: Json | null;
537
549
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null;
538
550
  contact_id?: string;
539
551
  contact_image?: string | null;
552
+ contact_name?: string | null;
540
553
  contact_type?: string | null;
541
554
  id?: Json | null;
542
555
  is_blocked?: boolean | null;
@@ -554,6 +567,8 @@ export interface Database {
554
567
  org_id?: string;
555
568
  pushname?: string | null;
556
569
  short_name?: string | null;
570
+ verified_level?: number | null;
571
+ verified_name?: string | null;
557
572
  };
558
573
  Relationships: [
559
574
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.10",
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
@@ -172,6 +172,7 @@ export interface Database {
172
172
  has_reaction: boolean | null
173
173
  id: Json | null
174
174
  invite_v4: Json | null
175
+ is_deleted: boolean | null
175
176
  is_ephemeral: boolean | null
176
177
  is_forwarded: boolean | null
177
178
  is_gif: boolean | null
@@ -213,6 +214,7 @@ export interface Database {
213
214
  has_reaction?: boolean | null
214
215
  id?: Json | null
215
216
  invite_v4?: Json | null
217
+ is_deleted?: boolean | null
216
218
  is_ephemeral?: boolean | null
217
219
  is_forwarded?: boolean | null
218
220
  is_gif?: boolean | null
@@ -254,6 +256,7 @@ export interface Database {
254
256
  has_reaction?: boolean | null
255
257
  id?: Json | null
256
258
  invite_v4?: Json | null
259
+ is_deleted?: boolean | null
257
260
  is_ephemeral?: boolean | null
258
261
  is_forwarded?: boolean | null
259
262
  is_gif?: boolean | null
@@ -489,9 +492,11 @@ export interface Database {
489
492
  }
490
493
  tbl_contacts: {
491
494
  Row: {
495
+ business_profile: Json | null
492
496
  contact_color: Database["public"]["Enums"]["enum_chat_colors"] | null
493
497
  contact_id: string
494
498
  contact_image: string | null
499
+ contact_name: string | null
495
500
  contact_type: string | null
496
501
  id: Json | null
497
502
  is_blocked: boolean | null
@@ -509,11 +514,15 @@ export interface Database {
509
514
  org_id: string
510
515
  pushname: string | null
511
516
  short_name: string | null
517
+ verified_level: number | null
518
+ verified_name: string | null
512
519
  }
513
520
  Insert: {
521
+ business_profile?: Json | null
514
522
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
515
523
  contact_id: string
516
524
  contact_image?: string | null
525
+ contact_name?: string | null
517
526
  contact_type?: string | null
518
527
  id?: Json | null
519
528
  is_blocked?: boolean | null
@@ -531,11 +540,15 @@ export interface Database {
531
540
  org_id: string
532
541
  pushname?: string | null
533
542
  short_name?: string | null
543
+ verified_level?: number | null
544
+ verified_name?: string | null
534
545
  }
535
546
  Update: {
547
+ business_profile?: Json | null
536
548
  contact_color?: Database["public"]["Enums"]["enum_chat_colors"] | null
537
549
  contact_id?: string
538
550
  contact_image?: string | null
551
+ contact_name?: string | null
539
552
  contact_type?: string | null
540
553
  id?: Json | null
541
554
  is_blocked?: boolean | null
@@ -553,6 +566,8 @@ export interface Database {
553
566
  org_id?: string
554
567
  pushname?: string | null
555
568
  short_name?: string | null
569
+ verified_level?: number | null
570
+ verified_name?: string | null
556
571
  }
557
572
  Relationships: [
558
573
  {