@panorama-ai/gateway 2.24.112 → 2.24.117

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/README.md CHANGED
@@ -58,6 +58,7 @@ pnpm --filter @panorama-ai/gateway dev -- logs --lines 200
58
58
  Optional flags:
59
59
 
60
60
  - `--device-name "My MacBook"`
61
+ - `--verbose`, `-v` (show technical details like paths, IDs, and PIDs)
61
62
  - `--supabase-url "https://..."`
62
63
  - `--anon-key "..."`
63
64
  - `--env local|dev|test|stage|prod`
@@ -639,6 +639,69 @@ export type Database = {
639
639
  };
640
640
  Relationships: [];
641
641
  };
642
+ app_error_events: {
643
+ Row: {
644
+ app_version: string | null;
645
+ context: Json | null;
646
+ created_at: string;
647
+ device_info: Json | null;
648
+ environment: string | null;
649
+ fingerprint: string | null;
650
+ id: string;
651
+ is_fatal: boolean | null;
652
+ message: string;
653
+ occurred_at: string;
654
+ platform: string | null;
655
+ request_id: string | null;
656
+ session_id: string | null;
657
+ severity: string;
658
+ source: string;
659
+ stack: string | null;
660
+ team_id: string | null;
661
+ user_id: string | null;
662
+ };
663
+ Insert: {
664
+ app_version?: string | null;
665
+ context?: Json | null;
666
+ created_at?: string;
667
+ device_info?: Json | null;
668
+ environment?: string | null;
669
+ fingerprint?: string | null;
670
+ id?: string;
671
+ is_fatal?: boolean | null;
672
+ message: string;
673
+ occurred_at?: string;
674
+ platform?: string | null;
675
+ request_id?: string | null;
676
+ session_id?: string | null;
677
+ severity: string;
678
+ source: string;
679
+ stack?: string | null;
680
+ team_id?: string | null;
681
+ user_id?: string | null;
682
+ };
683
+ Update: {
684
+ app_version?: string | null;
685
+ context?: Json | null;
686
+ created_at?: string;
687
+ device_info?: Json | null;
688
+ environment?: string | null;
689
+ fingerprint?: string | null;
690
+ id?: string;
691
+ is_fatal?: boolean | null;
692
+ message?: string;
693
+ occurred_at?: string;
694
+ platform?: string | null;
695
+ request_id?: string | null;
696
+ session_id?: string | null;
697
+ severity?: string;
698
+ source?: string;
699
+ stack?: string | null;
700
+ team_id?: string | null;
701
+ user_id?: string | null;
702
+ };
703
+ Relationships: [];
704
+ };
642
705
  auto_model_defaults: {
643
706
  Row: {
644
707
  created_at: string | null;
@@ -4460,6 +4523,31 @@ export type Database = {
4460
4523
  isSetofReturn: true;
4461
4524
  };
4462
4525
  };
4526
+ get_team_cache_health_rollups: {
4527
+ Args: {
4528
+ p_end_time?: string;
4529
+ p_start_time?: string;
4530
+ p_team_id: string;
4531
+ };
4532
+ Returns: {
4533
+ actual_cache_ratio: number;
4534
+ actual_cached_tokens_sum: number;
4535
+ bucket_date: string;
4536
+ cache_applied_count: number;
4537
+ cache_efficiency_ratio: number;
4538
+ cache_eligible_count: number;
4539
+ cached_tokens_reported_count: number;
4540
+ cycle_count: number;
4541
+ model_id: string;
4542
+ possible_cache_ratio: number;
4543
+ possible_cached_tokens_est_sum: number;
4544
+ prompt_tokens_sum: number;
4545
+ provider_model_name: string;
4546
+ provider_name: string;
4547
+ route: string;
4548
+ vendor: string;
4549
+ }[];
4550
+ };
4463
4551
  get_team_invitations_with_inviter: {
4464
4552
  Args: {
4465
4553
  p_include_ignored?: boolean;