@elevasis/ui 1.26.0 → 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.
- package/dist/charts/index.js +2 -2
- package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
- package/dist/chunk-5COLSYBE.js +199 -0
- package/dist/{chunk-RMPXGBNI.js → chunk-5JSR6TL5.js} +2 -2
- package/dist/chunk-BAGYETKM.js +635 -0
- package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
- package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
- package/dist/chunk-ITCEULI5.js +238 -0
- package/dist/{chunk-4WKWLFBZ.js → chunk-P5EWG45B.js} +1 -1
- package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
- package/dist/{chunk-ZVJKIJFG.js → chunk-RCQPWA5X.js} +13 -42
- package/dist/chunk-TLAIQC7B.js +6382 -0
- package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
- package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
- package/dist/chunk-WJ7W7JU4.js +2115 -0
- package/dist/{chunk-YNGQ7U5H.js → chunk-WLNEJ6JJ.js} +2 -2
- package/dist/{chunk-4INR75ZS.js → chunk-Y2SYGFRF.js} +589 -65
- package/dist/components/index.d.ts +333 -73
- package/dist/components/index.js +838 -686
- package/dist/features/auth/index.d.ts +125 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +28 -2
- package/dist/features/dashboard/index.js +21 -635
- package/dist/features/monitoring/index.d.ts +28 -1
- package/dist/features/monitoring/index.js +19 -529
- package/dist/features/operations/index.d.ts +51 -8
- package/dist/features/operations/index.js +25 -3760
- package/dist/features/settings/index.d.ts +153 -1
- package/dist/features/settings/index.js +19 -1438
- package/dist/hooks/index.d.ts +262 -25
- package/dist/hooks/index.js +12 -8
- package/dist/hooks/published.d.ts +137 -25
- package/dist/hooks/published.js +11 -7
- package/dist/index.d.ts +310 -28
- package/dist/index.js +12 -11
- package/dist/initialization/index.d.ts +125 -0
- package/dist/layout/index.d.ts +2 -0
- package/dist/layout/index.js +6 -5
- package/dist/organization/index.js +1 -2
- package/dist/profile/index.d.ts +125 -0
- package/dist/provider/index.d.ts +48 -3
- package/dist/provider/index.js +10 -4
- package/dist/provider/published.d.ts +48 -3
- package/dist/provider/published.js +8 -2
- package/dist/supabase/index.d.ts +242 -0
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +126 -1
- package/package.json +1 -1
- package/dist/chunk-LR4WVA7W.js +0 -682
- package/dist/chunk-R7WLWGPO.js +0 -126
- package/dist/chunk-TCKIAHDC.js +0 -2626
- package/dist/chunk-V7XHGJQZ.js +0 -145
- package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
+
import { ComponentType } from 'react';
|
|
3
4
|
|
|
4
5
|
type Json = string | number | boolean | null | {
|
|
5
6
|
[key: string]: Json | undefined;
|
|
@@ -534,6 +535,106 @@ type Database = {
|
|
|
534
535
|
}
|
|
535
536
|
];
|
|
536
537
|
};
|
|
538
|
+
acq_list_companies: {
|
|
539
|
+
Row: {
|
|
540
|
+
added_at: string;
|
|
541
|
+
added_by: string | null;
|
|
542
|
+
company_id: string;
|
|
543
|
+
id: string;
|
|
544
|
+
list_id: string;
|
|
545
|
+
source_execution_id: string | null;
|
|
546
|
+
source_input_hash: string | null;
|
|
547
|
+
source_resource_id: string | null;
|
|
548
|
+
stage: string | null;
|
|
549
|
+
stage_updated_at: string | null;
|
|
550
|
+
};
|
|
551
|
+
Insert: {
|
|
552
|
+
added_at?: string;
|
|
553
|
+
added_by?: string | null;
|
|
554
|
+
company_id: string;
|
|
555
|
+
id?: string;
|
|
556
|
+
list_id: string;
|
|
557
|
+
source_execution_id?: string | null;
|
|
558
|
+
source_input_hash?: string | null;
|
|
559
|
+
source_resource_id?: string | null;
|
|
560
|
+
stage?: string | null;
|
|
561
|
+
stage_updated_at?: string | null;
|
|
562
|
+
};
|
|
563
|
+
Update: {
|
|
564
|
+
added_at?: string;
|
|
565
|
+
added_by?: string | null;
|
|
566
|
+
company_id?: string;
|
|
567
|
+
id?: string;
|
|
568
|
+
list_id?: string;
|
|
569
|
+
source_execution_id?: string | null;
|
|
570
|
+
source_input_hash?: string | null;
|
|
571
|
+
source_resource_id?: string | null;
|
|
572
|
+
stage?: string | null;
|
|
573
|
+
stage_updated_at?: string | null;
|
|
574
|
+
};
|
|
575
|
+
Relationships: [
|
|
576
|
+
{
|
|
577
|
+
foreignKeyName: "acq_list_companies_company_id_fkey";
|
|
578
|
+
columns: ["company_id"];
|
|
579
|
+
isOneToOne: false;
|
|
580
|
+
referencedRelation: "acq_companies";
|
|
581
|
+
referencedColumns: ["id"];
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
foreignKeyName: "acq_list_companies_list_id_fkey";
|
|
585
|
+
columns: ["list_id"];
|
|
586
|
+
isOneToOne: false;
|
|
587
|
+
referencedRelation: "acq_lists";
|
|
588
|
+
referencedColumns: ["id"];
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
foreignKeyName: "acq_list_companies_source_execution_id_fkey";
|
|
592
|
+
columns: ["source_execution_id"];
|
|
593
|
+
isOneToOne: false;
|
|
594
|
+
referencedRelation: "execution_logs";
|
|
595
|
+
referencedColumns: ["execution_id"];
|
|
596
|
+
}
|
|
597
|
+
];
|
|
598
|
+
};
|
|
599
|
+
acq_list_executions: {
|
|
600
|
+
Row: {
|
|
601
|
+
created_at: string;
|
|
602
|
+
execution_id: string;
|
|
603
|
+
id: string;
|
|
604
|
+
list_id: string;
|
|
605
|
+
payload: Json;
|
|
606
|
+
};
|
|
607
|
+
Insert: {
|
|
608
|
+
created_at?: string;
|
|
609
|
+
execution_id: string;
|
|
610
|
+
id?: string;
|
|
611
|
+
list_id: string;
|
|
612
|
+
payload?: Json;
|
|
613
|
+
};
|
|
614
|
+
Update: {
|
|
615
|
+
created_at?: string;
|
|
616
|
+
execution_id?: string;
|
|
617
|
+
id?: string;
|
|
618
|
+
list_id?: string;
|
|
619
|
+
payload?: Json;
|
|
620
|
+
};
|
|
621
|
+
Relationships: [
|
|
622
|
+
{
|
|
623
|
+
foreignKeyName: "acq_list_executions_execution_id_fkey";
|
|
624
|
+
columns: ["execution_id"];
|
|
625
|
+
isOneToOne: false;
|
|
626
|
+
referencedRelation: "execution_logs";
|
|
627
|
+
referencedColumns: ["execution_id"];
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
foreignKeyName: "acq_list_executions_list_id_fkey";
|
|
631
|
+
columns: ["list_id"];
|
|
632
|
+
isOneToOne: false;
|
|
633
|
+
referencedRelation: "acq_lists";
|
|
634
|
+
referencedColumns: ["id"];
|
|
635
|
+
}
|
|
636
|
+
];
|
|
637
|
+
};
|
|
537
638
|
acq_list_members: {
|
|
538
639
|
Row: {
|
|
539
640
|
added_at: string;
|
|
@@ -541,6 +642,11 @@ type Database = {
|
|
|
541
642
|
contact_id: string;
|
|
542
643
|
id: string;
|
|
543
644
|
list_id: string;
|
|
645
|
+
source_execution_id: string | null;
|
|
646
|
+
source_input_hash: string | null;
|
|
647
|
+
source_resource_id: string | null;
|
|
648
|
+
stage: string | null;
|
|
649
|
+
stage_updated_at: string | null;
|
|
544
650
|
};
|
|
545
651
|
Insert: {
|
|
546
652
|
added_at?: string;
|
|
@@ -548,6 +654,11 @@ type Database = {
|
|
|
548
654
|
contact_id: string;
|
|
549
655
|
id?: string;
|
|
550
656
|
list_id: string;
|
|
657
|
+
source_execution_id?: string | null;
|
|
658
|
+
source_input_hash?: string | null;
|
|
659
|
+
source_resource_id?: string | null;
|
|
660
|
+
stage?: string | null;
|
|
661
|
+
stage_updated_at?: string | null;
|
|
551
662
|
};
|
|
552
663
|
Update: {
|
|
553
664
|
added_at?: string;
|
|
@@ -555,6 +666,11 @@ type Database = {
|
|
|
555
666
|
contact_id?: string;
|
|
556
667
|
id?: string;
|
|
557
668
|
list_id?: string;
|
|
669
|
+
source_execution_id?: string | null;
|
|
670
|
+
source_input_hash?: string | null;
|
|
671
|
+
source_resource_id?: string | null;
|
|
672
|
+
stage?: string | null;
|
|
673
|
+
stage_updated_at?: string | null;
|
|
558
674
|
};
|
|
559
675
|
Relationships: [
|
|
560
676
|
{
|
|
@@ -570,6 +686,13 @@ type Database = {
|
|
|
570
686
|
isOneToOne: false;
|
|
571
687
|
referencedRelation: "acq_lists";
|
|
572
688
|
referencedColumns: ["id"];
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
foreignKeyName: "acq_list_members_source_execution_id_fkey";
|
|
692
|
+
columns: ["source_execution_id"];
|
|
693
|
+
isOneToOne: false;
|
|
694
|
+
referencedRelation: "execution_logs";
|
|
695
|
+
referencedColumns: ["execution_id"];
|
|
573
696
|
}
|
|
574
697
|
];
|
|
575
698
|
};
|
|
@@ -577,6 +700,7 @@ type Database = {
|
|
|
577
700
|
Row: {
|
|
578
701
|
batch_ids: string[];
|
|
579
702
|
completed_at: string | null;
|
|
703
|
+
config: Json;
|
|
580
704
|
created_at: string;
|
|
581
705
|
description: string | null;
|
|
582
706
|
id: string;
|
|
@@ -591,6 +715,7 @@ type Database = {
|
|
|
591
715
|
Insert: {
|
|
592
716
|
batch_ids?: string[];
|
|
593
717
|
completed_at?: string | null;
|
|
718
|
+
config?: Json;
|
|
594
719
|
created_at?: string;
|
|
595
720
|
description?: string | null;
|
|
596
721
|
id?: string;
|
|
@@ -605,6 +730,7 @@ type Database = {
|
|
|
605
730
|
Update: {
|
|
606
731
|
batch_ids?: string[];
|
|
607
732
|
completed_at?: string | null;
|
|
733
|
+
config?: Json;
|
|
608
734
|
created_at?: string;
|
|
609
735
|
description?: string | null;
|
|
610
736
|
id?: string;
|
|
@@ -2684,5 +2810,31 @@ interface OAuthIntegrationsCardProps {
|
|
|
2684
2810
|
}
|
|
2685
2811
|
declare function OAuthIntegrationsCard({ apiUrl }: OAuthIntegrationsCardProps): react_jsx_runtime.JSX.Element;
|
|
2686
2812
|
|
|
2687
|
-
|
|
2813
|
+
interface FeatureNavLink {
|
|
2814
|
+
label: string;
|
|
2815
|
+
link: string;
|
|
2816
|
+
featureKey?: string;
|
|
2817
|
+
onClick?: () => void;
|
|
2818
|
+
}
|
|
2819
|
+
interface FeatureNavEntry {
|
|
2820
|
+
label: string;
|
|
2821
|
+
icon: ComponentType;
|
|
2822
|
+
link?: string;
|
|
2823
|
+
featureKey?: string;
|
|
2824
|
+
requiresAdmin?: boolean;
|
|
2825
|
+
dataOnboardingTourId?: string;
|
|
2826
|
+
links?: FeatureNavLink[];
|
|
2827
|
+
}
|
|
2828
|
+
type FeatureSidebarComponent = ComponentType;
|
|
2829
|
+
interface FeatureModule {
|
|
2830
|
+
key: string;
|
|
2831
|
+
label?: string;
|
|
2832
|
+
navEntry?: FeatureNavEntry;
|
|
2833
|
+
sidebar?: FeatureSidebarComponent;
|
|
2834
|
+
subshellRoutes?: string[];
|
|
2835
|
+
}
|
|
2836
|
+
|
|
2837
|
+
declare const settingsManifest: FeatureModule;
|
|
2838
|
+
|
|
2839
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest };
|
|
2688
2840
|
export type { AccountSettingsProps, AccountSettingsUser, AppearanceSettingsProps, CreateWebhookEndpointModalProps, EditCredentialModalProps, EditWebhookEndpointModalProps, MemberConfigModalProps, OAuthIntegrationsCardProps, OrgMembersListProps, OrganizationSettingsMembership, OrganizationSettingsProps, OrganizationSettingsUser, WebhookEndpointListProps, WebhookEndpointSettingsProps };
|