@periskope/types 0.6.15 → 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.
- package/dist/supabase.types.d.ts +3 -0
- package/package.json +1 -1
- package/supabase.types.ts +3 -0
package/dist/supabase.types.d.ts
CHANGED
|
@@ -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
|
};
|
package/package.json
CHANGED
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
|
}
|