@elevasis/ui 1.26.1 → 1.27.0

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.
Files changed (53) hide show
  1. package/dist/charts/index.js +2 -2
  2. package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
  3. package/dist/chunk-5COLSYBE.js +199 -0
  4. package/dist/{chunk-RMPXGBNI.js → chunk-5JSR6TL5.js} +2 -2
  5. package/dist/chunk-BAGYETKM.js +635 -0
  6. package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
  7. package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
  8. package/dist/chunk-ITCEULI5.js +238 -0
  9. package/dist/{chunk-4WKWLFBZ.js → chunk-P5EWG45B.js} +1 -1
  10. package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
  11. package/dist/{chunk-ZVJKIJFG.js → chunk-RCQPWA5X.js} +13 -42
  12. package/dist/chunk-TLAIQC7B.js +6382 -0
  13. package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
  14. package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
  15. package/dist/chunk-WJ7W7JU4.js +2115 -0
  16. package/dist/{chunk-YNGQ7U5H.js → chunk-WLNEJ6JJ.js} +2 -2
  17. package/dist/{chunk-4INR75ZS.js → chunk-Y2SYGFRF.js} +589 -65
  18. package/dist/components/index.d.ts +333 -73
  19. package/dist/components/index.js +838 -686
  20. package/dist/features/auth/index.d.ts +125 -0
  21. package/dist/features/auth/index.js +2 -2
  22. package/dist/features/dashboard/index.d.ts +28 -2
  23. package/dist/features/dashboard/index.js +21 -635
  24. package/dist/features/monitoring/index.d.ts +28 -1
  25. package/dist/features/monitoring/index.js +19 -529
  26. package/dist/features/operations/index.d.ts +51 -8
  27. package/dist/features/operations/index.js +25 -3760
  28. package/dist/features/settings/index.d.ts +153 -1
  29. package/dist/features/settings/index.js +19 -1438
  30. package/dist/hooks/index.d.ts +262 -25
  31. package/dist/hooks/index.js +12 -8
  32. package/dist/hooks/published.d.ts +137 -25
  33. package/dist/hooks/published.js +11 -7
  34. package/dist/index.d.ts +310 -28
  35. package/dist/index.js +12 -11
  36. package/dist/initialization/index.d.ts +125 -0
  37. package/dist/layout/index.d.ts +2 -0
  38. package/dist/layout/index.js +6 -5
  39. package/dist/organization/index.js +1 -2
  40. package/dist/profile/index.d.ts +125 -0
  41. package/dist/provider/index.d.ts +48 -3
  42. package/dist/provider/index.js +10 -4
  43. package/dist/provider/published.d.ts +48 -3
  44. package/dist/provider/published.js +8 -2
  45. package/dist/supabase/index.d.ts +242 -0
  46. package/dist/theme/index.js +2 -2
  47. package/dist/types/index.d.ts +126 -1
  48. package/package.json +3 -3
  49. package/dist/chunk-LR4WVA7W.js +0 -682
  50. package/dist/chunk-R7WLWGPO.js +0 -126
  51. package/dist/chunk-TCKIAHDC.js +0 -2626
  52. package/dist/chunk-V7XHGJQZ.js +0 -145
  53. package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
@@ -534,6 +534,106 @@ type Database = {
534
534
  }
535
535
  ];
536
536
  };
537
+ acq_list_companies: {
538
+ Row: {
539
+ added_at: string;
540
+ added_by: string | null;
541
+ company_id: string;
542
+ id: string;
543
+ list_id: string;
544
+ source_execution_id: string | null;
545
+ source_input_hash: string | null;
546
+ source_resource_id: string | null;
547
+ stage: string | null;
548
+ stage_updated_at: string | null;
549
+ };
550
+ Insert: {
551
+ added_at?: string;
552
+ added_by?: string | null;
553
+ company_id: string;
554
+ id?: string;
555
+ list_id: string;
556
+ source_execution_id?: string | null;
557
+ source_input_hash?: string | null;
558
+ source_resource_id?: string | null;
559
+ stage?: string | null;
560
+ stage_updated_at?: string | null;
561
+ };
562
+ Update: {
563
+ added_at?: string;
564
+ added_by?: string | null;
565
+ company_id?: string;
566
+ id?: string;
567
+ list_id?: string;
568
+ source_execution_id?: string | null;
569
+ source_input_hash?: string | null;
570
+ source_resource_id?: string | null;
571
+ stage?: string | null;
572
+ stage_updated_at?: string | null;
573
+ };
574
+ Relationships: [
575
+ {
576
+ foreignKeyName: "acq_list_companies_company_id_fkey";
577
+ columns: ["company_id"];
578
+ isOneToOne: false;
579
+ referencedRelation: "acq_companies";
580
+ referencedColumns: ["id"];
581
+ },
582
+ {
583
+ foreignKeyName: "acq_list_companies_list_id_fkey";
584
+ columns: ["list_id"];
585
+ isOneToOne: false;
586
+ referencedRelation: "acq_lists";
587
+ referencedColumns: ["id"];
588
+ },
589
+ {
590
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey";
591
+ columns: ["source_execution_id"];
592
+ isOneToOne: false;
593
+ referencedRelation: "execution_logs";
594
+ referencedColumns: ["execution_id"];
595
+ }
596
+ ];
597
+ };
598
+ acq_list_executions: {
599
+ Row: {
600
+ created_at: string;
601
+ execution_id: string;
602
+ id: string;
603
+ list_id: string;
604
+ payload: Json;
605
+ };
606
+ Insert: {
607
+ created_at?: string;
608
+ execution_id: string;
609
+ id?: string;
610
+ list_id: string;
611
+ payload?: Json;
612
+ };
613
+ Update: {
614
+ created_at?: string;
615
+ execution_id?: string;
616
+ id?: string;
617
+ list_id?: string;
618
+ payload?: Json;
619
+ };
620
+ Relationships: [
621
+ {
622
+ foreignKeyName: "acq_list_executions_execution_id_fkey";
623
+ columns: ["execution_id"];
624
+ isOneToOne: false;
625
+ referencedRelation: "execution_logs";
626
+ referencedColumns: ["execution_id"];
627
+ },
628
+ {
629
+ foreignKeyName: "acq_list_executions_list_id_fkey";
630
+ columns: ["list_id"];
631
+ isOneToOne: false;
632
+ referencedRelation: "acq_lists";
633
+ referencedColumns: ["id"];
634
+ }
635
+ ];
636
+ };
537
637
  acq_list_members: {
538
638
  Row: {
539
639
  added_at: string;
@@ -541,6 +641,11 @@ type Database = {
541
641
  contact_id: string;
542
642
  id: string;
543
643
  list_id: string;
644
+ source_execution_id: string | null;
645
+ source_input_hash: string | null;
646
+ source_resource_id: string | null;
647
+ stage: string | null;
648
+ stage_updated_at: string | null;
544
649
  };
545
650
  Insert: {
546
651
  added_at?: string;
@@ -548,6 +653,11 @@ type Database = {
548
653
  contact_id: string;
549
654
  id?: string;
550
655
  list_id: string;
656
+ source_execution_id?: string | null;
657
+ source_input_hash?: string | null;
658
+ source_resource_id?: string | null;
659
+ stage?: string | null;
660
+ stage_updated_at?: string | null;
551
661
  };
552
662
  Update: {
553
663
  added_at?: string;
@@ -555,6 +665,11 @@ type Database = {
555
665
  contact_id?: string;
556
666
  id?: string;
557
667
  list_id?: string;
668
+ source_execution_id?: string | null;
669
+ source_input_hash?: string | null;
670
+ source_resource_id?: string | null;
671
+ stage?: string | null;
672
+ stage_updated_at?: string | null;
558
673
  };
559
674
  Relationships: [
560
675
  {
@@ -570,6 +685,13 @@ type Database = {
570
685
  isOneToOne: false;
571
686
  referencedRelation: "acq_lists";
572
687
  referencedColumns: ["id"];
688
+ },
689
+ {
690
+ foreignKeyName: "acq_list_members_source_execution_id_fkey";
691
+ columns: ["source_execution_id"];
692
+ isOneToOne: false;
693
+ referencedRelation: "execution_logs";
694
+ referencedColumns: ["execution_id"];
573
695
  }
574
696
  ];
575
697
  };
@@ -577,6 +699,7 @@ type Database = {
577
699
  Row: {
578
700
  batch_ids: string[];
579
701
  completed_at: string | null;
702
+ config: Json;
580
703
  created_at: string;
581
704
  description: string | null;
582
705
  id: string;
@@ -591,6 +714,7 @@ type Database = {
591
714
  Insert: {
592
715
  batch_ids?: string[];
593
716
  completed_at?: string | null;
717
+ config?: Json;
594
718
  created_at?: string;
595
719
  description?: string | null;
596
720
  id?: string;
@@ -605,6 +729,7 @@ type Database = {
605
729
  Update: {
606
730
  batch_ids?: string[];
607
731
  completed_at?: string | null;
732
+ config?: Json;
608
733
  created_at?: string;
609
734
  description?: string | null;
610
735
  id?: string;
@@ -1,8 +1,8 @@
1
- import { AppShellLoader, AppShellError } from '../../chunk-WWEMNIHW.js';
1
+ import { AppShellLoader, AppShellError } from '../../chunk-YYBM5LNJ.js';
2
+ import { useAppearance } from '../../chunk-QJ2KCHKX.js';
2
3
  import '../../chunk-QJ2S46NI.js';
3
4
  import '../../chunk-SLVC5OJ2.js';
4
5
  import '../../chunk-RNP5R5I3.js';
5
- import { useAppearance } from '../../chunk-QJ2KCHKX.js';
6
6
  import { ProtectedRoute, AdminGuard } from '../../chunk-RWQIFKMJ.js';
7
7
  import '../../chunk-ALA56RGZ.js';
8
8
  import { useInitialization } from '../../chunk-TUXTSEAF.js';
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { ReactNode } from 'react';
2
+ import { ReactNode, ComponentType } from 'react';
3
3
 
4
4
  /**
5
5
  * Time range selector for dashboard metrics
@@ -240,5 +240,31 @@ interface UnresolvedErrorsTeaserProps {
240
240
  }
241
241
  declare function UnresolvedErrorsTeaser({ timeRange, onNavigateToAllErrors }: UnresolvedErrorsTeaserProps): react_jsx_runtime.JSX.Element;
242
242
 
243
- export { Dashboard, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser };
243
+ interface FeatureNavLink {
244
+ label: string;
245
+ link: string;
246
+ featureKey?: string;
247
+ onClick?: () => void;
248
+ }
249
+ interface FeatureNavEntry {
250
+ label: string;
251
+ icon: ComponentType;
252
+ link?: string;
253
+ featureKey?: string;
254
+ requiresAdmin?: boolean;
255
+ dataOnboardingTourId?: string;
256
+ links?: FeatureNavLink[];
257
+ }
258
+ type FeatureSidebarComponent = ComponentType;
259
+ interface FeatureModule {
260
+ key: string;
261
+ label?: string;
262
+ navEntry?: FeatureNavEntry;
263
+ sidebar?: FeatureSidebarComponent;
264
+ subshellRoutes?: string[];
265
+ }
266
+
267
+ declare const dashboardManifest: FeatureModule;
268
+
269
+ export { Dashboard, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser, dashboardManifest };
244
270
  export type { DashboardProps, DisplayResource, RecentExecutionsByResourceProps, ResourceOverviewProps, UnresolvedErrorsTeaserProps };