@periskope/types 0.6.468 → 0.6.471

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.
@@ -2390,6 +2390,7 @@ export type Database = {
2390
2390
  integration_type: string;
2391
2391
  metadata: Json;
2392
2392
  org_id: string;
2393
+ payload: Json | null;
2393
2394
  response: Json | null;
2394
2395
  success: boolean;
2395
2396
  type: string;
@@ -2401,6 +2402,7 @@ export type Database = {
2401
2402
  integration_type: string;
2402
2403
  metadata?: Json;
2403
2404
  org_id: string;
2405
+ payload?: Json | null;
2404
2406
  response?: Json | null;
2405
2407
  success?: boolean;
2406
2408
  type: string;
@@ -2412,6 +2414,7 @@ export type Database = {
2412
2414
  integration_type?: string;
2413
2415
  metadata?: Json;
2414
2416
  org_id?: string;
2417
+ payload?: Json | null;
2415
2418
  response?: Json | null;
2416
2419
  success?: boolean;
2417
2420
  type?: string;
@@ -3551,6 +3554,70 @@ export type Database = {
3551
3554
  };
3552
3555
  Relationships: [];
3553
3556
  };
3557
+ tbl_webhook_logs: {
3558
+ Row: {
3559
+ created_at: string;
3560
+ event_type: string;
3561
+ hook_id: string;
3562
+ hook_name: string | null;
3563
+ integration_type: string;
3564
+ metadata: Json;
3565
+ org_id: string;
3566
+ payload: Json | null;
3567
+ response: Json;
3568
+ success: boolean;
3569
+ trace_id: string;
3570
+ };
3571
+ Insert: {
3572
+ created_at?: string;
3573
+ event_type: string;
3574
+ hook_id: string;
3575
+ hook_name?: string | null;
3576
+ integration_type: string;
3577
+ metadata?: Json;
3578
+ org_id: string;
3579
+ payload?: Json | null;
3580
+ response?: Json;
3581
+ success?: boolean;
3582
+ trace_id: string;
3583
+ };
3584
+ Update: {
3585
+ created_at?: string;
3586
+ event_type?: string;
3587
+ hook_id?: string;
3588
+ hook_name?: string | null;
3589
+ integration_type?: string;
3590
+ metadata?: Json;
3591
+ org_id?: string;
3592
+ payload?: Json | null;
3593
+ response?: Json;
3594
+ success?: boolean;
3595
+ trace_id?: string;
3596
+ };
3597
+ Relationships: [
3598
+ {
3599
+ foreignKeyName: "tbl_webhook_logs_org_id_fkey";
3600
+ columns: ["org_id"];
3601
+ isOneToOne: false;
3602
+ referencedRelation: "tbl_org";
3603
+ referencedColumns: ["org_id"];
3604
+ },
3605
+ {
3606
+ foreignKeyName: "tbl_webhook_logs_org_id_fkey";
3607
+ columns: ["org_id"];
3608
+ isOneToOne: false;
3609
+ referencedRelation: "view_org";
3610
+ referencedColumns: ["org_id"];
3611
+ },
3612
+ {
3613
+ foreignKeyName: "tbl_webhook_logs_org_id_fkey";
3614
+ columns: ["org_id"];
3615
+ isOneToOne: false;
3616
+ referencedRelation: "view_org_all";
3617
+ referencedColumns: ["org_id"];
3618
+ }
3619
+ ];
3620
+ };
3554
3621
  };
3555
3622
  Views: {
3556
3623
  view_broadcast_logs: {