@elevasis/ui 2.4.1 → 2.5.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/{chunk-2DZACNOX.js → chunk-3VTACYBT.js} +4 -1
- package/dist/{chunk-IPRMGSCV.js → chunk-5RYRL7DP.js} +1 -1
- package/dist/{chunk-WN764MR7.js → chunk-CKBJVNSA.js} +3 -2
- package/dist/{chunk-PEZ4WOPF.js → chunk-DRBMVLJE.js} +2 -2
- package/dist/{chunk-JT7WDIZI.js → chunk-GEJZ6WLM.js} +1 -1
- package/dist/{chunk-WSL5MNAI.js → chunk-RBRSRRG4.js} +5 -2
- package/dist/{chunk-KRTZTBVP.js → chunk-S5EXLTGK.js} +8 -5
- package/dist/{chunk-ISHNN42L.js → chunk-TNYUWKSJ.js} +225 -33
- package/dist/{chunk-ZG7MLOBE.js → chunk-URFYQRJO.js} +1 -1
- package/dist/{chunk-G3G2QEB6.js → chunk-UXYE5ZBY.js} +2 -2
- package/dist/{chunk-3ONP2CEB.js → chunk-XGUMNEIR.js} +5 -2
- package/dist/{chunk-J5KWNRSD.js → chunk-YIWLA2B6.js} +1 -0
- package/dist/{chunk-5XGBMKUY.js → chunk-ZGV3X3UQ.js} +3 -2
- package/dist/components/index.d.ts +127 -99
- package/dist/components/index.js +16 -16
- package/dist/features/crm/index.d.ts +24 -0
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.d.ts +25 -0
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/delivery/index.d.ts +25 -0
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +25 -1
- package/dist/features/lead-gen/index.js +8 -8
- package/dist/features/monitoring/index.d.ts +25 -0
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.d.ts +24 -0
- package/dist/features/operations/index.js +7 -7
- package/dist/features/seo/index.d.ts +25 -0
- package/dist/features/seo/index.js +1 -1
- package/dist/features/settings/index.d.ts +24 -0
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +239 -239
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +169 -169
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +303 -241
- package/dist/index.js +4 -4
- package/dist/provider/index.d.ts +64 -2
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +64 -2
- package/dist/provider/published.js +1 -1
- package/dist/types/index.d.ts +134 -134
- package/package.json +3 -3
|
@@ -3545,6 +3545,45 @@ interface AgentIterationData {
|
|
|
3545
3545
|
status: 'running' | 'completed' | 'failed' | 'warning';
|
|
3546
3546
|
}
|
|
3547
3547
|
|
|
3548
|
+
/** Raw database row type for acq_deals table */
|
|
3549
|
+
type AcqDealRow = Database$1['public']['Tables']['acq_deals']['Row'];
|
|
3550
|
+
type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
|
|
3551
|
+
interface KanbanStageConfig {
|
|
3552
|
+
color: string;
|
|
3553
|
+
label?: string;
|
|
3554
|
+
}
|
|
3555
|
+
type KanbanBoardConfig = Partial<Record<DealStage, KanbanStageConfig>>;
|
|
3556
|
+
interface DealContact {
|
|
3557
|
+
id: string;
|
|
3558
|
+
first_name: string | null;
|
|
3559
|
+
last_name: string | null;
|
|
3560
|
+
email: string;
|
|
3561
|
+
title: string | null;
|
|
3562
|
+
headline: string | null;
|
|
3563
|
+
linkedin_url: string | null;
|
|
3564
|
+
pipeline_status: Record<string, unknown> | null;
|
|
3565
|
+
enrichment_data: Record<string, unknown> | null;
|
|
3566
|
+
company: {
|
|
3567
|
+
id: string;
|
|
3568
|
+
name: string;
|
|
3569
|
+
domain: string | null;
|
|
3570
|
+
website: string | null;
|
|
3571
|
+
linkedin_url: string | null;
|
|
3572
|
+
segment: string | null;
|
|
3573
|
+
category: string | null;
|
|
3574
|
+
num_employees: number | null;
|
|
3575
|
+
} | null;
|
|
3576
|
+
}
|
|
3577
|
+
interface DealFilters {
|
|
3578
|
+
stage?: DealStage;
|
|
3579
|
+
search?: string;
|
|
3580
|
+
}
|
|
3581
|
+
/** Deal list item with joined contact and company data */
|
|
3582
|
+
interface DealListItem extends AcqDealRow {
|
|
3583
|
+
contact: DealContact | null;
|
|
3584
|
+
}
|
|
3585
|
+
type DealDetail = DealListItem;
|
|
3586
|
+
|
|
3548
3587
|
/**
|
|
3549
3588
|
* Action configuration for HITL tasks
|
|
3550
3589
|
* Defines available user actions and their behavior
|
|
@@ -3734,44 +3773,52 @@ interface NotificationDTO {
|
|
|
3734
3773
|
createdAt: string;
|
|
3735
3774
|
}
|
|
3736
3775
|
|
|
3737
|
-
/**
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
}
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|
|
3773
|
-
|
|
3774
|
-
|
|
3776
|
+
/**
|
|
3777
|
+
* Full ListConfig shape. `qualification` is required; everything else optional.
|
|
3778
|
+
* Matches `acq_lists.config` jsonb and ListConfig type in types.ts.
|
|
3779
|
+
*/
|
|
3780
|
+
declare const ListConfigSchema: z.ZodObject<{
|
|
3781
|
+
qualification: z.ZodObject<{
|
|
3782
|
+
targetDescription: z.ZodString;
|
|
3783
|
+
minReviewCount: z.ZodNumber;
|
|
3784
|
+
minRating: z.ZodNumber;
|
|
3785
|
+
excludeFranchises: z.ZodBoolean;
|
|
3786
|
+
customRules: z.ZodString;
|
|
3787
|
+
}, z.core.$strip>;
|
|
3788
|
+
enrichment: z.ZodOptional<z.ZodObject<{
|
|
3789
|
+
emailDiscovery: z.ZodOptional<z.ZodObject<{
|
|
3790
|
+
primary: z.ZodEnum<{
|
|
3791
|
+
tomba: "tomba";
|
|
3792
|
+
anymailfinder: "anymailfinder";
|
|
3793
|
+
}>;
|
|
3794
|
+
credentialName: z.ZodOptional<z.ZodString>;
|
|
3795
|
+
}, z.core.$strip>>;
|
|
3796
|
+
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
3797
|
+
provider: z.ZodLiteral<"millionverifier">;
|
|
3798
|
+
threshold: z.ZodOptional<z.ZodEnum<{
|
|
3799
|
+
ok: "ok";
|
|
3800
|
+
"ok+catch_all": "ok+catch_all";
|
|
3801
|
+
}>>;
|
|
3802
|
+
}, z.core.$strip>>;
|
|
3803
|
+
}, z.core.$strip>>;
|
|
3804
|
+
personalization: z.ZodOptional<z.ZodObject<{
|
|
3805
|
+
industryContext: z.ZodOptional<z.ZodString>;
|
|
3806
|
+
emailBody: z.ZodOptional<z.ZodString>;
|
|
3807
|
+
creativeDirection: z.ZodOptional<z.ZodString>;
|
|
3808
|
+
exclusionRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3809
|
+
}, z.core.$strip>>;
|
|
3810
|
+
pipeline: z.ZodOptional<z.ZodObject<{
|
|
3811
|
+
steps: z.ZodArray<z.ZodObject<{
|
|
3812
|
+
key: z.ZodString;
|
|
3813
|
+
label: z.ZodString;
|
|
3814
|
+
resourceId: z.ZodString;
|
|
3815
|
+
inputTemplate: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
3816
|
+
enabled: z.ZodBoolean;
|
|
3817
|
+
order: z.ZodNumber;
|
|
3818
|
+
}, z.core.$strip>>;
|
|
3819
|
+
}, z.core.$strip>>;
|
|
3820
|
+
}, z.core.$strip>;
|
|
3821
|
+
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
3775
3822
|
|
|
3776
3823
|
/**
|
|
3777
3824
|
* Multi-tenancy configuration types
|
|
@@ -4212,53 +4259,6 @@ interface Deployment {
|
|
|
4212
4259
|
updatedAt: string;
|
|
4213
4260
|
}
|
|
4214
4261
|
|
|
4215
|
-
/**
|
|
4216
|
-
* Full ListConfig shape. `qualification` is required; everything else optional.
|
|
4217
|
-
* Matches `acq_lists.config` jsonb and ListConfig type in types.ts.
|
|
4218
|
-
*/
|
|
4219
|
-
declare const ListConfigSchema: z.ZodObject<{
|
|
4220
|
-
qualification: z.ZodObject<{
|
|
4221
|
-
targetDescription: z.ZodString;
|
|
4222
|
-
minReviewCount: z.ZodNumber;
|
|
4223
|
-
minRating: z.ZodNumber;
|
|
4224
|
-
excludeFranchises: z.ZodBoolean;
|
|
4225
|
-
customRules: z.ZodString;
|
|
4226
|
-
}, z.core.$strip>;
|
|
4227
|
-
enrichment: z.ZodOptional<z.ZodObject<{
|
|
4228
|
-
emailDiscovery: z.ZodOptional<z.ZodObject<{
|
|
4229
|
-
primary: z.ZodEnum<{
|
|
4230
|
-
tomba: "tomba";
|
|
4231
|
-
anymailfinder: "anymailfinder";
|
|
4232
|
-
}>;
|
|
4233
|
-
credentialName: z.ZodOptional<z.ZodString>;
|
|
4234
|
-
}, z.core.$strip>>;
|
|
4235
|
-
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
4236
|
-
provider: z.ZodLiteral<"millionverifier">;
|
|
4237
|
-
threshold: z.ZodOptional<z.ZodEnum<{
|
|
4238
|
-
ok: "ok";
|
|
4239
|
-
"ok+catch_all": "ok+catch_all";
|
|
4240
|
-
}>>;
|
|
4241
|
-
}, z.core.$strip>>;
|
|
4242
|
-
}, z.core.$strip>>;
|
|
4243
|
-
personalization: z.ZodOptional<z.ZodObject<{
|
|
4244
|
-
industryContext: z.ZodOptional<z.ZodString>;
|
|
4245
|
-
emailBody: z.ZodOptional<z.ZodString>;
|
|
4246
|
-
creativeDirection: z.ZodOptional<z.ZodString>;
|
|
4247
|
-
exclusionRules: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4248
|
-
}, z.core.$strip>>;
|
|
4249
|
-
pipeline: z.ZodOptional<z.ZodObject<{
|
|
4250
|
-
steps: z.ZodArray<z.ZodObject<{
|
|
4251
|
-
key: z.ZodString;
|
|
4252
|
-
label: z.ZodString;
|
|
4253
|
-
resourceId: z.ZodString;
|
|
4254
|
-
inputTemplate: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
4255
|
-
enabled: z.ZodBoolean;
|
|
4256
|
-
order: z.ZodNumber;
|
|
4257
|
-
}, z.core.$strip>>;
|
|
4258
|
-
}, z.core.$strip>>;
|
|
4259
|
-
}, z.core.$strip>;
|
|
4260
|
-
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
4261
|
-
|
|
4262
4262
|
interface TimeRangeSelectorProps {
|
|
4263
4263
|
value: TimeRange;
|
|
4264
4264
|
onChange: (value: TimeRange) => void;
|
|
@@ -6964,6 +6964,19 @@ type Database = {
|
|
|
6964
6964
|
}
|
|
6965
6965
|
}
|
|
6966
6966
|
|
|
6967
|
+
type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
|
|
6968
|
+
|
|
6969
|
+
type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
|
|
6970
|
+
|
|
6971
|
+
// ---------------------------------------------------------------------------
|
|
6972
|
+
// Response schemas (no .strict() — forward-compatible)
|
|
6973
|
+
// ---------------------------------------------------------------------------
|
|
6974
|
+
|
|
6975
|
+
declare const GetRecentActivityResponseSchema = z.object({
|
|
6976
|
+
entries: z.array(RecentActivityEntrySchema)
|
|
6977
|
+
})
|
|
6978
|
+
type GetRecentActivityResponse = z.infer<typeof GetRecentActivityResponseSchema>
|
|
6979
|
+
|
|
6967
6980
|
type SortDirection = 'asc' | 'desc';
|
|
6968
6981
|
interface SortState {
|
|
6969
6982
|
column: string;
|
|
@@ -7154,10 +7167,6 @@ interface CommandViewGraph$1 {
|
|
|
7154
7167
|
edges: CommandViewEdge$1[];
|
|
7155
7168
|
}
|
|
7156
7169
|
|
|
7157
|
-
type MilestoneRow = Database['public']['Tables']['prj_milestones']['Row']
|
|
7158
|
-
|
|
7159
|
-
type TaskRow = Database['public']['Tables']['prj_tasks']['Row']
|
|
7160
|
-
|
|
7161
7170
|
interface SortableHeaderProps {
|
|
7162
7171
|
column: string;
|
|
7163
7172
|
children: React.ReactNode;
|
|
@@ -8661,15 +8670,6 @@ declare function useCrmQuickMetrics(): {
|
|
|
8661
8670
|
error: unknown;
|
|
8662
8671
|
};
|
|
8663
8672
|
|
|
8664
|
-
// ---------------------------------------------------------------------------
|
|
8665
|
-
// Response schemas (no .strict() — forward-compatible)
|
|
8666
|
-
// ---------------------------------------------------------------------------
|
|
8667
|
-
|
|
8668
|
-
declare const GetRecentActivityResponseSchema = z.object({
|
|
8669
|
-
entries: z.array(RecentActivityEntrySchema)
|
|
8670
|
-
})
|
|
8671
|
-
type GetRecentActivityResponse = z.infer<typeof GetRecentActivityResponseSchema>
|
|
8672
|
-
|
|
8673
8673
|
declare function useRecentCrmActivity(opts?: {
|
|
8674
8674
|
limit?: number;
|
|
8675
8675
|
}): {
|
|
@@ -8737,6 +8737,27 @@ interface QuickCreateActionsProps {
|
|
|
8737
8737
|
}
|
|
8738
8738
|
declare function QuickCreateActions({ showSectionLabel }: QuickCreateActionsProps): react_jsx_runtime.JSX.Element;
|
|
8739
8739
|
|
|
8740
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
8741
|
+
id: ModelIdSchema,
|
|
8742
|
+
entityIds: ReferenceIdsSchema,
|
|
8743
|
+
surfaceIds: ReferenceIdsSchema,
|
|
8744
|
+
resourceIds: ReferenceIdsSchema,
|
|
8745
|
+
capabilityIds: ReferenceIdsSchema
|
|
8746
|
+
})
|
|
8747
|
+
|
|
8748
|
+
declare const FeatureKeySchema = z.enum([
|
|
8749
|
+
'acquisition',
|
|
8750
|
+
'delivery',
|
|
8751
|
+
'operations',
|
|
8752
|
+
'monitoring',
|
|
8753
|
+
'settings',
|
|
8754
|
+
'seo',
|
|
8755
|
+
'calibration'
|
|
8756
|
+
])
|
|
8757
|
+
|
|
8758
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
8759
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
8760
|
+
|
|
8740
8761
|
interface FeatureNavLink {
|
|
8741
8762
|
label: string;
|
|
8742
8763
|
link: string;
|
|
@@ -8757,6 +8778,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
8757
8778
|
interface FeatureModule {
|
|
8758
8779
|
key: string;
|
|
8759
8780
|
label?: string;
|
|
8781
|
+
accessFeatureKey?: OrganizationModelFeatureKey;
|
|
8782
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
8783
|
+
capabilityIds?: string[];
|
|
8760
8784
|
navEntry?: FeatureNavEntry;
|
|
8761
8785
|
sidebar?: FeatureSidebarComponent;
|
|
8762
8786
|
subshellRoutes?: string[];
|
|
@@ -8875,6 +8899,10 @@ declare const ProjectsSidebarMiddle: ({ currentPath, onNavigate }?: ProjectsSide
|
|
|
8875
8899
|
|
|
8876
8900
|
declare const deliveryManifest: FeatureModule;
|
|
8877
8901
|
|
|
8902
|
+
declare function AllTasksPage(): react_jsx_runtime.JSX.Element;
|
|
8903
|
+
|
|
8904
|
+
declare function UpcomingMilestonesPage(): react_jsx_runtime.JSX.Element;
|
|
8905
|
+
|
|
8878
8906
|
interface ProjectsListPageProps {
|
|
8879
8907
|
onProjectClick?: (projectId: string) => void;
|
|
8880
8908
|
}
|
|
@@ -8913,5 +8941,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
|
|
|
8913
8941
|
|
|
8914
8942
|
declare const operationsManifest: FeatureModule;
|
|
8915
8943
|
|
|
8916
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealDrawer, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, KnowledgeBasePage, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TasksDueWidget, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, buildListConfig, calculateProgress, catalogItemToResourceDefinition, crmManifest, dashboardManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
8944
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CommandViewEdge, CommandViewGraph, CommandViewNode, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealDrawer, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, DocTreeNav, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, FormFieldRenderer, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, KnowledgeBasePage, LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StyledMarkdown, TabCountBadge, TableSelectionToolbar, TaskCard, TaskScheduler, TasksDueWidget, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, buildErrorReport, buildListConfig, calculateProgress, catalogItemToResourceDefinition, crmManifest, dashboardManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
|
|
8917
8945
|
export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CommandViewGraphRef, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CrmOverviewProps, DealDrawerProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FitViewButtonVariant, FormFieldRendererProps, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StyledMarkdownProps, TaskFilterStatus, TrendIndicatorProps };
|
package/dist/components/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import '../chunk-SMJLS23U.js';
|
|
2
2
|
import { useBreadcrumbs } from '../chunk-MG3NF7QL.js';
|
|
3
|
-
export { HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-
|
|
4
|
-
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-
|
|
5
|
-
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, FormFieldRenderer, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-
|
|
3
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../chunk-RBRSRRG4.js';
|
|
4
|
+
export { LEAD_GEN_ROUTE_LINKS, LIST_TEMPLATE_OPTIONS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenDeliverabilityPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, buildListConfig, getEnrichmentColor, getStatusColor, leadGenManifest, useDeleteLists } from '../chunk-XGUMNEIR.js';
|
|
5
|
+
export { ActionModal, AgentDefinitionDisplay, AgentExecutionLogs, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ContentSections, ContextUsageBadge, ContractDisplay, ExecutionErrorSection, FormFieldRenderer, LogEntry, LogGroup, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceNotFoundState, SessionMemory, ToolsListDisplay, WorkflowDefinitionDisplay, WorkflowExecutionLogs, getExecutionStatusConfig, getIcon, getLogLevelConfig, iconMap, operationsManifest, useNewKnowledgeMapLayout } from '../chunk-S5EXLTGK.js';
|
|
6
6
|
import '../chunk-ROSMICXG.js';
|
|
7
7
|
import { SubshellLoader, CollapsibleSidebarGroup } from '../chunk-IDACMRGQ.js';
|
|
8
|
-
import { NotificationList } from '../chunk-
|
|
9
|
-
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-
|
|
10
|
-
export { ResourceHealthPanel } from '../chunk-
|
|
11
|
-
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-
|
|
12
|
-
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-
|
|
13
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-
|
|
8
|
+
import { NotificationList } from '../chunk-ZGV3X3UQ.js';
|
|
9
|
+
export { ActivityCard, ActivityFilters as ActivityFiltersBar, ActivityTable, BusinessImpactCard, CostBreakdownCard, CostByModelTable, CostMetricsCard, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, NotificationItem, NotificationList, monitoringManifest } from '../chunk-ZGV3X3UQ.js';
|
|
10
|
+
export { ResourceHealthPanel } from '../chunk-URFYQRJO.js';
|
|
11
|
+
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-YIWLA2B6.js';
|
|
12
|
+
export { CreateCredentialModal, CredentialList, CredentialSettings, MembershipFeaturePanel, MembershipStatusBadge, OAuthConnectModal, OrganizationMembershipsList, WebhookUrlDisplayModal, settingsManifest } from '../chunk-CKBJVNSA.js';
|
|
13
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../chunk-3VTACYBT.js';
|
|
14
14
|
export { SortableHeader, TableSelectionToolbar } from '../chunk-TUMSNGTX.js';
|
|
15
15
|
import { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
16
16
|
import { SubshellNavItem } from '../chunk-27COZ5AH.js';
|
|
@@ -18,23 +18,23 @@ import { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
|
18
18
|
export { FilterBar } from '../chunk-PDHTXPSF.js';
|
|
19
19
|
import { CustomModal } from '../chunk-GBMNCNHX.js';
|
|
20
20
|
export { ConfirmationInputModal, ConfirmationModal, CustomModal } from '../chunk-GBMNCNHX.js';
|
|
21
|
-
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-
|
|
22
|
-
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, dashboardManifest, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-
|
|
21
|
+
import { BaseNode, useGraphTheme, BaseEdge, GraphBackground, GraphLegend, GraphFitViewButton } from '../chunk-UXYE5ZBY.js';
|
|
22
|
+
export { AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, BaseEdge, BaseNode, EmptyVisualizer, ExecutionStats, ExecutionStatusBadge, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, VisualizerContainer, WorkflowExecutionTimeline, dashboardManifest, getGraphBackgroundStyles, useGraphBackgroundStyles, useGraphTheme } from '../chunk-UXYE5ZBY.js';
|
|
23
23
|
export { ResourceHealthChart, getHealthColor } from '../chunk-LGKLC5MG.js';
|
|
24
24
|
import '../chunk-KFICYU6S.js';
|
|
25
25
|
import { AppShellLoader } from '../chunk-YEX4MQSY.js';
|
|
26
26
|
import '../chunk-VNUOQQNY.js';
|
|
27
27
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-XA34RETF.js';
|
|
28
|
-
import { useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments } from '../chunk-
|
|
29
|
-
import { useCommandViewLayout, usePaginationState, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-
|
|
30
|
-
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-
|
|
28
|
+
import { useUpdateApiKey, useDeleteApiKey, useCreateApiKey, useListApiKeys, useActivateDeployment, useDeactivateDeployment, useDeleteDeployment, useListDeployments } from '../chunk-DRBMVLJE.js';
|
|
29
|
+
import { useCommandViewLayout, usePaginationState, useDeploymentDocs, useResources, useCreateSchedule, useListSchedules, usePauseSchedule, useResumeSchedule, useCancelSchedule, useDeleteSchedule, useDealNotes, useCreateDealNote, useDeals, useSyncDealStage, dealKeys, useMarkAllAsRead, useNotifications, showErrorNotification, showSuccessNotification, showApiErrorNotification } from '../chunk-5RYRL7DP.js';
|
|
30
|
+
export { showApiErrorNotification, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification } from '../chunk-5RYRL7DP.js';
|
|
31
31
|
import '../chunk-LXHZYSMQ.js';
|
|
32
32
|
import { Graph_module_css_default, useDirectedChainHighlighting, useNodeSelection, GRAPH_CONSTANTS } from '../chunk-22UVE3RA.js';
|
|
33
33
|
export { Graph_module_css_default as graphStyles } from '../chunk-22UVE3RA.js';
|
|
34
|
-
import '../chunk-
|
|
34
|
+
import '../chunk-GEJZ6WLM.js';
|
|
35
35
|
import '../chunk-47YILFON.js';
|
|
36
36
|
import '../chunk-CYXZHBP4.js';
|
|
37
|
-
import '../chunk-
|
|
37
|
+
import '../chunk-TNYUWKSJ.js';
|
|
38
38
|
import { SubshellContainer, SubshellSidebar, SubshellRightSideContainer, SubshellContentContainer } from '../chunk-RX4UWZZR.js';
|
|
39
39
|
import { ListSkeleton, EmptyState, PageTitleCaption, StatCard, CenteredErrorState, CardHeader, ActivityTimeline } from '../chunk-Y3D3WFJG.js';
|
|
40
40
|
export { APIErrorAlert, ActivityTimeline, CardHeader, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, ElevasisLoader, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, catalogItemToResourceDefinition } from '../chunk-Y3D3WFJG.js';
|
|
@@ -2782,6 +2782,27 @@ interface QuickCreateActionsProps {
|
|
|
2782
2782
|
}
|
|
2783
2783
|
declare function QuickCreateActions({ showSectionLabel }: QuickCreateActionsProps): react_jsx_runtime.JSX.Element;
|
|
2784
2784
|
|
|
2785
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
2786
|
+
id: ModelIdSchema,
|
|
2787
|
+
entityIds: ReferenceIdsSchema,
|
|
2788
|
+
surfaceIds: ReferenceIdsSchema,
|
|
2789
|
+
resourceIds: ReferenceIdsSchema,
|
|
2790
|
+
capabilityIds: ReferenceIdsSchema
|
|
2791
|
+
})
|
|
2792
|
+
|
|
2793
|
+
declare const FeatureKeySchema = z.enum([
|
|
2794
|
+
'acquisition',
|
|
2795
|
+
'delivery',
|
|
2796
|
+
'operations',
|
|
2797
|
+
'monitoring',
|
|
2798
|
+
'settings',
|
|
2799
|
+
'seo',
|
|
2800
|
+
'calibration'
|
|
2801
|
+
])
|
|
2802
|
+
|
|
2803
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
2804
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
2805
|
+
|
|
2785
2806
|
interface FeatureNavLink {
|
|
2786
2807
|
label: string;
|
|
2787
2808
|
link: string;
|
|
@@ -2802,6 +2823,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
2802
2823
|
interface FeatureModule {
|
|
2803
2824
|
key: string;
|
|
2804
2825
|
label?: string;
|
|
2826
|
+
accessFeatureKey?: OrganizationModelFeatureKey;
|
|
2827
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
2828
|
+
capabilityIds?: string[];
|
|
2805
2829
|
navEntry?: FeatureNavEntry;
|
|
2806
2830
|
sidebar?: FeatureSidebarComponent;
|
|
2807
2831
|
subshellRoutes?: string[];
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, TasksDueWidget, crmManifest, formatDealStageLabel, useCrmPipelineSummary, useCrmQuickMetrics, useRecentCrmActivity } from '../../chunk-3VTACYBT.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-27COZ5AH.js';
|
|
5
5
|
import '../../chunk-PDHTXPSF.js';
|
|
6
6
|
import '../../chunk-GBMNCNHX.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-DRBMVLJE.js';
|
|
8
|
+
import '../../chunk-5RYRL7DP.js';
|
|
9
9
|
import '../../chunk-LXHZYSMQ.js';
|
|
10
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-GEJZ6WLM.js';
|
|
12
12
|
import '../../chunk-47YILFON.js';
|
|
13
13
|
import '../../chunk-CYXZHBP4.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-TNYUWKSJ.js';
|
|
15
15
|
import '../../chunk-RX4UWZZR.js';
|
|
16
16
|
import '../../chunk-Y3D3WFJG.js';
|
|
17
17
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import { ReactNode, ComponentType } from 'react';
|
|
3
|
+
import { z } from 'zod';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Time range selector for dashboard metrics
|
|
@@ -246,6 +247,27 @@ interface UnresolvedErrorsTeaserProps {
|
|
|
246
247
|
}
|
|
247
248
|
declare function UnresolvedErrorsTeaser({ timeRange, onNavigateToAllErrors }: UnresolvedErrorsTeaserProps): react_jsx_runtime.JSX.Element;
|
|
248
249
|
|
|
250
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
251
|
+
id: ModelIdSchema,
|
|
252
|
+
entityIds: ReferenceIdsSchema,
|
|
253
|
+
surfaceIds: ReferenceIdsSchema,
|
|
254
|
+
resourceIds: ReferenceIdsSchema,
|
|
255
|
+
capabilityIds: ReferenceIdsSchema
|
|
256
|
+
})
|
|
257
|
+
|
|
258
|
+
declare const FeatureKeySchema = z.enum([
|
|
259
|
+
'acquisition',
|
|
260
|
+
'delivery',
|
|
261
|
+
'operations',
|
|
262
|
+
'monitoring',
|
|
263
|
+
'settings',
|
|
264
|
+
'seo',
|
|
265
|
+
'calibration'
|
|
266
|
+
])
|
|
267
|
+
|
|
268
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
269
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
270
|
+
|
|
249
271
|
interface FeatureNavLink {
|
|
250
272
|
label: string;
|
|
251
273
|
link: string;
|
|
@@ -266,6 +288,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
266
288
|
interface FeatureModule {
|
|
267
289
|
key: string;
|
|
268
290
|
label?: string;
|
|
291
|
+
accessFeatureKey?: OrganizationModelFeatureKey;
|
|
292
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
293
|
+
capabilityIds?: string[];
|
|
269
294
|
navEntry?: FeatureNavEntry;
|
|
270
295
|
sidebar?: FeatureSidebarComponent;
|
|
271
296
|
subshellRoutes?: string[];
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser, dashboardManifest } from '../../chunk-
|
|
1
|
+
export { Dashboard, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser, dashboardManifest } from '../../chunk-UXYE5ZBY.js';
|
|
2
2
|
import '../../chunk-LGKLC5MG.js';
|
|
3
3
|
import '../../chunk-KFICYU6S.js';
|
|
4
4
|
import '../../chunk-YEX4MQSY.js';
|
|
5
5
|
import '../../chunk-XA34RETF.js';
|
|
6
|
-
import '../../chunk-
|
|
7
|
-
import '../../chunk-
|
|
6
|
+
import '../../chunk-DRBMVLJE.js';
|
|
7
|
+
import '../../chunk-5RYRL7DP.js';
|
|
8
8
|
import '../../chunk-LXHZYSMQ.js';
|
|
9
9
|
import '../../chunk-22UVE3RA.js';
|
|
10
|
-
import '../../chunk-
|
|
10
|
+
import '../../chunk-GEJZ6WLM.js';
|
|
11
11
|
import '../../chunk-47YILFON.js';
|
|
12
12
|
import '../../chunk-CYXZHBP4.js';
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-TNYUWKSJ.js';
|
|
14
14
|
import '../../chunk-RX4UWZZR.js';
|
|
15
15
|
import '../../chunk-Y3D3WFJG.js';
|
|
16
16
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import { z } from 'zod';
|
|
2
3
|
import { ComponentType } from 'react';
|
|
3
4
|
|
|
4
5
|
interface HealthStatusCardProps {
|
|
@@ -2589,6 +2590,27 @@ interface ProjectsSidebarMiddleProps {
|
|
|
2589
2590
|
}
|
|
2590
2591
|
declare const ProjectsSidebarMiddle: ({ currentPath, onNavigate }?: ProjectsSidebarMiddleProps) => react_jsx_runtime.JSX.Element;
|
|
2591
2592
|
|
|
2593
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
2594
|
+
id: ModelIdSchema,
|
|
2595
|
+
entityIds: ReferenceIdsSchema,
|
|
2596
|
+
surfaceIds: ReferenceIdsSchema,
|
|
2597
|
+
resourceIds: ReferenceIdsSchema,
|
|
2598
|
+
capabilityIds: ReferenceIdsSchema
|
|
2599
|
+
})
|
|
2600
|
+
|
|
2601
|
+
declare const FeatureKeySchema = z.enum([
|
|
2602
|
+
'acquisition',
|
|
2603
|
+
'delivery',
|
|
2604
|
+
'operations',
|
|
2605
|
+
'monitoring',
|
|
2606
|
+
'settings',
|
|
2607
|
+
'seo',
|
|
2608
|
+
'calibration'
|
|
2609
|
+
])
|
|
2610
|
+
|
|
2611
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
2612
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
2613
|
+
|
|
2592
2614
|
interface FeatureNavLink {
|
|
2593
2615
|
label: string;
|
|
2594
2616
|
link: string;
|
|
@@ -2609,6 +2631,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
2609
2631
|
interface FeatureModule {
|
|
2610
2632
|
key: string;
|
|
2611
2633
|
label?: string;
|
|
2634
|
+
accessFeatureKey?: OrganizationModelFeatureKey;
|
|
2635
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
2636
|
+
capabilityIds?: string[];
|
|
2612
2637
|
navEntry?: FeatureNavEntry;
|
|
2613
2638
|
sidebar?: FeatureSidebarComponent;
|
|
2614
2639
|
subshellRoutes?: string[];
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-
|
|
1
|
+
export { AllTasksPage, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-RBRSRRG4.js';
|
|
2
2
|
import '../../chunk-TUMSNGTX.js';
|
|
3
3
|
import '../../chunk-BZZCNLT6.js';
|
|
4
4
|
import '../../chunk-27COZ5AH.js';
|
|
5
5
|
import '../../chunk-PDHTXPSF.js';
|
|
6
6
|
import '../../chunk-GBMNCNHX.js';
|
|
7
|
-
import '../../chunk-
|
|
8
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-DRBMVLJE.js';
|
|
8
|
+
import '../../chunk-5RYRL7DP.js';
|
|
9
9
|
import '../../chunk-LXHZYSMQ.js';
|
|
10
10
|
import '../../chunk-22UVE3RA.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-GEJZ6WLM.js';
|
|
12
12
|
import '../../chunk-47YILFON.js';
|
|
13
13
|
import '../../chunk-CYXZHBP4.js';
|
|
14
|
-
import '../../chunk-
|
|
14
|
+
import '../../chunk-TNYUWKSJ.js';
|
|
15
15
|
import '../../chunk-RX4UWZZR.js';
|
|
16
16
|
import '../../chunk-Y3D3WFJG.js';
|
|
17
17
|
import '../../chunk-3KMDHCAR.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { ComponentType, ReactNode } from 'react';
|
|
3
2
|
import { z } from 'zod';
|
|
3
|
+
import { ComponentType, ReactNode } from 'react';
|
|
4
4
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
5
5
|
|
|
6
6
|
declare const LeadGenSidebar: () => react_jsx_runtime.JSX.Element;
|
|
@@ -143,6 +143,27 @@ type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
|
|
|
143
143
|
type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
|
|
144
144
|
type ListConfigInput = z.infer<typeof ListConfigSchema>;
|
|
145
145
|
|
|
146
|
+
declare const SemanticDomainSchema = DisplayMetadataSchema.extend({
|
|
147
|
+
id: ModelIdSchema,
|
|
148
|
+
entityIds: ReferenceIdsSchema,
|
|
149
|
+
surfaceIds: ReferenceIdsSchema,
|
|
150
|
+
resourceIds: ReferenceIdsSchema,
|
|
151
|
+
capabilityIds: ReferenceIdsSchema
|
|
152
|
+
})
|
|
153
|
+
|
|
154
|
+
declare const FeatureKeySchema = z.enum([
|
|
155
|
+
'acquisition',
|
|
156
|
+
'delivery',
|
|
157
|
+
'operations',
|
|
158
|
+
'monitoring',
|
|
159
|
+
'settings',
|
|
160
|
+
'seo',
|
|
161
|
+
'calibration'
|
|
162
|
+
])
|
|
163
|
+
|
|
164
|
+
type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
|
|
165
|
+
type OrganizationModelSemanticDomain = z.infer<typeof SemanticDomainSchema>
|
|
166
|
+
|
|
146
167
|
interface FeatureNavLink {
|
|
147
168
|
label: string;
|
|
148
169
|
link: string;
|
|
@@ -163,6 +184,9 @@ type FeatureSidebarComponent = ComponentType;
|
|
|
163
184
|
interface FeatureModule {
|
|
164
185
|
key: string;
|
|
165
186
|
label?: string;
|
|
187
|
+
accessFeatureKey?: OrganizationModelFeatureKey;
|
|
188
|
+
domainIds?: OrganizationModelSemanticDomain['id'][];
|
|
189
|
+
capabilityIds?: string[];
|
|
166
190
|
navEntry?: FeatureNavEntry;
|
|
167
191
|
sidebar?: FeatureSidebarComponent;
|
|
168
192
|
subshellRoutes?: string[];
|