@periskope/types 0.6.32 → 0.6.33

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.
@@ -395,7 +395,7 @@ export interface Database {
395
395
  ack: number | null;
396
396
  chat_id: string | null;
397
397
  id: Json | null;
398
- message_id: string | null;
398
+ message_id: string;
399
399
  msg_id: Json | null;
400
400
  org_id: string;
401
401
  org_phone: string;
@@ -404,7 +404,7 @@ export interface Database {
404
404
  reaction: string | null;
405
405
  reaction_id: string;
406
406
  read: boolean | null;
407
- sender_id: string | null;
407
+ sender_id: string;
408
408
  timestamp: string | null;
409
409
  unique_id: string | null;
410
410
  };
@@ -412,7 +412,7 @@ export interface Database {
412
412
  ack?: number | null;
413
413
  chat_id?: string | null;
414
414
  id?: Json | null;
415
- message_id?: string | null;
415
+ message_id: string;
416
416
  msg_id?: Json | null;
417
417
  org_id: string;
418
418
  org_phone: string;
@@ -421,7 +421,7 @@ export interface Database {
421
421
  reaction?: string | null;
422
422
  reaction_id: string;
423
423
  read?: boolean | null;
424
- sender_id?: string | null;
424
+ sender_id: string;
425
425
  timestamp?: string | null;
426
426
  unique_id?: string | null;
427
427
  };
@@ -429,7 +429,7 @@ export interface Database {
429
429
  ack?: number | null;
430
430
  chat_id?: string | null;
431
431
  id?: Json | null;
432
- message_id?: string | null;
432
+ message_id?: string;
433
433
  msg_id?: Json | null;
434
434
  org_id?: string;
435
435
  org_phone?: string;
@@ -438,7 +438,7 @@ export interface Database {
438
438
  reaction?: string | null;
439
439
  reaction_id?: string;
440
440
  read?: boolean | null;
441
- sender_id?: string | null;
441
+ sender_id?: string;
442
442
  timestamp?: string | null;
443
443
  unique_id?: string | null;
444
444
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.32",
3
+ "version": "0.6.33",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -394,7 +394,7 @@ export interface Database {
394
394
  ack: number | null
395
395
  chat_id: string | null
396
396
  id: Json | null
397
- message_id: string | null
397
+ message_id: string
398
398
  msg_id: Json | null
399
399
  org_id: string
400
400
  org_phone: string
@@ -403,7 +403,7 @@ export interface Database {
403
403
  reaction: string | null
404
404
  reaction_id: string
405
405
  read: boolean | null
406
- sender_id: string | null
406
+ sender_id: string
407
407
  timestamp: string | null
408
408
  unique_id: string | null
409
409
  }
@@ -411,7 +411,7 @@ export interface Database {
411
411
  ack?: number | null
412
412
  chat_id?: string | null
413
413
  id?: Json | null
414
- message_id?: string | null
414
+ message_id: string
415
415
  msg_id?: Json | null
416
416
  org_id: string
417
417
  org_phone: string
@@ -420,7 +420,7 @@ export interface Database {
420
420
  reaction?: string | null
421
421
  reaction_id: string
422
422
  read?: boolean | null
423
- sender_id?: string | null
423
+ sender_id: string
424
424
  timestamp?: string | null
425
425
  unique_id?: string | null
426
426
  }
@@ -428,7 +428,7 @@ export interface Database {
428
428
  ack?: number | null
429
429
  chat_id?: string | null
430
430
  id?: Json | null
431
- message_id?: string | null
431
+ message_id?: string
432
432
  msg_id?: Json | null
433
433
  org_id?: string
434
434
  org_phone?: string
@@ -437,7 +437,7 @@ export interface Database {
437
437
  reaction?: string | null
438
438
  reaction_id?: string
439
439
  read?: boolean | null
440
- sender_id?: string | null
440
+ sender_id?: string
441
441
  timestamp?: string | null
442
442
  unique_id?: string | null
443
443
  }