@periskope/types 0.6.14 → 0.6.16

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.
@@ -354,6 +354,7 @@ export interface Database {
354
354
  is_admin: boolean | null;
355
355
  is_super_admin: boolean | null;
356
356
  org_id: string;
357
+ org_phone: string;
357
358
  };
358
359
  Insert: {
359
360
  chat_id: string;
@@ -362,6 +363,7 @@ export interface Database {
362
363
  is_admin?: boolean | null;
363
364
  is_super_admin?: boolean | null;
364
365
  org_id: string;
366
+ org_phone: string;
365
367
  };
366
368
  Update: {
367
369
  chat_id?: string;
@@ -370,6 +372,7 @@ export interface Database {
370
372
  is_admin?: boolean | null;
371
373
  is_super_admin?: boolean | null;
372
374
  org_id?: string;
375
+ org_phone?: string;
373
376
  };
374
377
  Relationships: [];
375
378
  };
@@ -709,6 +712,7 @@ export interface Database {
709
712
  phone_image: string | null;
710
713
  phone_name: string | null;
711
714
  qr_code: string | null;
715
+ server_ip: string | null;
712
716
  updated_at: string;
713
717
  wa_state: string | null;
714
718
  };
@@ -721,6 +725,7 @@ export interface Database {
721
725
  phone_image?: string | null;
722
726
  phone_name?: string | null;
723
727
  qr_code?: string | null;
728
+ server_ip?: string | null;
724
729
  updated_at?: string;
725
730
  wa_state?: string | null;
726
731
  };
@@ -733,6 +738,7 @@ export interface Database {
733
738
  phone_image?: string | null;
734
739
  phone_name?: string | null;
735
740
  qr_code?: string | null;
741
+ server_ip?: string | null;
736
742
  updated_at?: string;
737
743
  wa_state?: string | null;
738
744
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.14",
3
+ "version": "0.6.16",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -353,6 +353,7 @@ export interface Database {
353
353
  is_admin: boolean | null
354
354
  is_super_admin: boolean | null
355
355
  org_id: string
356
+ org_phone: string
356
357
  }
357
358
  Insert: {
358
359
  chat_id: string
@@ -361,6 +362,7 @@ export interface Database {
361
362
  is_admin?: boolean | null
362
363
  is_super_admin?: boolean | null
363
364
  org_id: string
365
+ org_phone: string
364
366
  }
365
367
  Update: {
366
368
  chat_id?: string
@@ -369,6 +371,7 @@ export interface Database {
369
371
  is_admin?: boolean | null
370
372
  is_super_admin?: boolean | null
371
373
  org_id?: string
374
+ org_phone?: string
372
375
  }
373
376
  Relationships: []
374
377
  }
@@ -708,6 +711,7 @@ export interface Database {
708
711
  phone_image: string | null
709
712
  phone_name: string | null
710
713
  qr_code: string | null
714
+ server_ip: string | null
711
715
  updated_at: string
712
716
  wa_state: string | null
713
717
  }
@@ -720,6 +724,7 @@ export interface Database {
720
724
  phone_image?: string | null
721
725
  phone_name?: string | null
722
726
  qr_code?: string | null
727
+ server_ip?: string | null
723
728
  updated_at?: string
724
729
  wa_state?: string | null
725
730
  }
@@ -732,6 +737,7 @@ export interface Database {
732
737
  phone_image?: string | null
733
738
  phone_name?: string | null
734
739
  qr_code?: string | null
740
+ server_ip?: string | null
735
741
  updated_at?: string
736
742
  wa_state?: string | null
737
743
  }