@elevasis/ui 2.60.1 → 2.61.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/api/index.js +3 -3
- package/dist/app/index.d.ts +6 -5
- package/dist/app/index.js +3 -3
- package/dist/auth/index.js +3 -3
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-XOPLS4S6.js → chunk-774JOHIM.js} +60 -20
- package/dist/{chunk-7Q5THR43.js → chunk-DRQA53N4.js} +1 -1
- package/dist/{chunk-4N5GYO6R.js → chunk-WFX6ERBL.js} +231 -166
- package/dist/{chunk-4UA62IDF.js → chunk-YM6LMYOE.js} +1 -1
- package/dist/components/index.d.ts +128 -17
- package/dist/components/index.js +3 -3
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.js +4 -4
- package/dist/features/clients/index.js +3 -3
- package/dist/features/crm/index.js +3 -3
- package/dist/features/dashboard/index.d.ts +6 -5
- package/dist/features/dashboard/index.js +3 -3
- package/dist/features/delivery/index.js +3 -3
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +189 -18
- package/dist/features/lead-gen/index.js +3 -3
- package/dist/features/monitoring/index.js +3 -3
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.d.ts +6 -5
- package/dist/features/operations/index.js +3 -3
- package/dist/features/settings/index.js +3 -3
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.js +3 -3
- package/dist/hooks/index.d.ts +13 -15
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +6 -5
- package/dist/hooks/published.d.ts +13 -15
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +188 -28
- package/dist/index.js +4 -4
- package/dist/knowledge/index.d.ts +6 -5
- package/dist/knowledge/index.js +4 -4
- package/dist/layout/index.js +3 -3
- package/dist/organization/index.js +3 -3
- package/dist/provider/index.d.ts +59 -6
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.d.ts +6 -5
- package/dist/provider/published.js +3 -3
- package/dist/test-utils/index.js +3 -3
- package/dist/types/index.d.ts +6 -5
- package/dist/utils/index.d.ts +6 -5
- package/dist/utils/index.js +1 -1
- package/package.json +4 -4
|
@@ -3756,6 +3756,22 @@ interface AgentIterationData {
|
|
|
3756
3756
|
status: 'running' | 'completed' | 'failed' | 'warning';
|
|
3757
3757
|
}
|
|
3758
3758
|
|
|
3759
|
+
declare const RecordColumnConfigSchema: z.ZodObject<{
|
|
3760
|
+
key: z.ZodString;
|
|
3761
|
+
label: z.ZodString;
|
|
3762
|
+
path: z.ZodString;
|
|
3763
|
+
width: z.ZodOptional<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>;
|
|
3764
|
+
renderType: z.ZodOptional<z.ZodEnum<{
|
|
3765
|
+
text: "text";
|
|
3766
|
+
badge: "badge";
|
|
3767
|
+
datetime: "datetime";
|
|
3768
|
+
count: "count";
|
|
3769
|
+
json: "json";
|
|
3770
|
+
}>>;
|
|
3771
|
+
badgeColor: z.ZodOptional<z.ZodString>;
|
|
3772
|
+
}, z.core.$strip>;
|
|
3773
|
+
type RecordColumnConfig = z.infer<typeof RecordColumnConfigSchema>;
|
|
3774
|
+
|
|
3759
3775
|
/**
|
|
3760
3776
|
* Deal detail shape — currently the same as a list item (full joined record).
|
|
3761
3777
|
* Additive fields keep existing DealListItem callers compatible.
|
|
@@ -4218,12 +4234,13 @@ declare const SystemApiInterfaceSchema: z.ZodObject<{
|
|
|
4218
4234
|
archived: "archived";
|
|
4219
4235
|
disabled: "disabled";
|
|
4220
4236
|
}>>;
|
|
4221
|
-
readinessProfile: z.ZodOptional<z.
|
|
4222
|
-
"sales.lead-gen.api": "sales.lead-gen.api";
|
|
4223
|
-
"sales.crm.api": "sales.crm.api";
|
|
4224
|
-
"sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
|
|
4225
|
-
}>>;
|
|
4237
|
+
readinessProfile: z.ZodOptional<z.ZodString>;
|
|
4226
4238
|
resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
4239
|
+
readinessContract: z.ZodOptional<z.ZodObject<{
|
|
4240
|
+
requiredObjects: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4241
|
+
requiredCatalogs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
4242
|
+
requiredKinds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4243
|
+
}, z.core.$strict>>;
|
|
4227
4244
|
}, z.core.$strict>;
|
|
4228
4245
|
type JsonPrimitive = string | number | boolean | null;
|
|
4229
4246
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
@@ -7078,6 +7095,112 @@ interface OrganizationGraphSystemBridge {
|
|
|
7078
7095
|
systemId?: string;
|
|
7079
7096
|
}
|
|
7080
7097
|
|
|
7098
|
+
interface LeadGenOverviewPageSlots {
|
|
7099
|
+
/**
|
|
7100
|
+
* Optional content rendered after the page title, before the main body.
|
|
7101
|
+
* Renders inside a Mantine Group. Default: nothing rendered.
|
|
7102
|
+
*/
|
|
7103
|
+
headerActions?: ReactNode;
|
|
7104
|
+
/**
|
|
7105
|
+
* Optional extra tab nodes rendered inside the main content area.
|
|
7106
|
+
* Default: nothing rendered.
|
|
7107
|
+
*/
|
|
7108
|
+
tabs?: ReactNode;
|
|
7109
|
+
/**
|
|
7110
|
+
* Optional content rendered below the main page stack.
|
|
7111
|
+
* Default: nothing rendered.
|
|
7112
|
+
*/
|
|
7113
|
+
footer?: ReactNode;
|
|
7114
|
+
}
|
|
7115
|
+
declare function LeadGenOverviewPage({ headerActions, tabs, footer }?: LeadGenOverviewPageSlots): react_jsx_runtime.JSX.Element;
|
|
7116
|
+
|
|
7117
|
+
interface LeadGenListDetailPageSlots {
|
|
7118
|
+
/**
|
|
7119
|
+
* Optional content rendered after the page title row.
|
|
7120
|
+
* Use this instead of a route-wrapper bolt-on for things like an export
|
|
7121
|
+
* button that should appear at the top of the detail page.
|
|
7122
|
+
* Default: nothing rendered.
|
|
7123
|
+
*/
|
|
7124
|
+
headerActions?: React.ReactNode;
|
|
7125
|
+
/**
|
|
7126
|
+
* Optional content rendered below the tab list and above the first
|
|
7127
|
+
* tab panel. Rarely needed; prefer `headerActions` for most use cases.
|
|
7128
|
+
* Default: nothing rendered.
|
|
7129
|
+
*/
|
|
7130
|
+
tabs?: React.ReactNode;
|
|
7131
|
+
/**
|
|
7132
|
+
* Optional content rendered after the main page stack (below the modal).
|
|
7133
|
+
* Default: nothing rendered.
|
|
7134
|
+
*/
|
|
7135
|
+
footer?: React.ReactNode;
|
|
7136
|
+
}
|
|
7137
|
+
declare function LeadGenListDetailPage({ listId, headerActions, tabs, footer }: {
|
|
7138
|
+
listId: string;
|
|
7139
|
+
} & LeadGenListDetailPageSlots): react_jsx_runtime.JSX.Element;
|
|
7140
|
+
|
|
7141
|
+
interface LeadGenCompaniesPageSlots {
|
|
7142
|
+
/**
|
|
7143
|
+
* Extra columns appended after the default company columns.
|
|
7144
|
+
* Mirrors the `step.recordColumns` seam used by the list-detail build tab.
|
|
7145
|
+
* Each column is rendered using the same `renderRecordValue` / `valueAtPath`
|
|
7146
|
+
* helpers — `path` is resolved against the company row object.
|
|
7147
|
+
* Default: no extra columns.
|
|
7148
|
+
*/
|
|
7149
|
+
extraColumns?: RecordColumnConfig[];
|
|
7150
|
+
/**
|
|
7151
|
+
* When true, `extraColumns` replaces the default column set entirely
|
|
7152
|
+
* rather than appending. Default: false (append).
|
|
7153
|
+
*/
|
|
7154
|
+
replaceDefaultColumns?: boolean;
|
|
7155
|
+
}
|
|
7156
|
+
declare function LeadGenCompaniesPage({ extraColumns, replaceDefaultColumns }?: LeadGenCompaniesPageSlots): react_jsx_runtime.JSX.Element;
|
|
7157
|
+
|
|
7158
|
+
interface LeadGenContactsPageSlots {
|
|
7159
|
+
/**
|
|
7160
|
+
* Extra columns appended after the default contact columns.
|
|
7161
|
+
* Mirrors the `step.recordColumns` seam used by the list-detail build tab.
|
|
7162
|
+
* Each column is rendered using the same path-resolution pattern.
|
|
7163
|
+
* Default: no extra columns.
|
|
7164
|
+
*/
|
|
7165
|
+
extraColumns?: RecordColumnConfig[];
|
|
7166
|
+
/**
|
|
7167
|
+
* When true, `extraColumns` replaces the default column set entirely
|
|
7168
|
+
* rather than appending. Default: false (append).
|
|
7169
|
+
*/
|
|
7170
|
+
replaceDefaultColumns?: boolean;
|
|
7171
|
+
}
|
|
7172
|
+
declare function LeadGenContactsPage({ extraColumns, replaceDefaultColumns }?: LeadGenContactsPageSlots): react_jsx_runtime.JSX.Element;
|
|
7173
|
+
|
|
7174
|
+
/**
|
|
7175
|
+
* Optional page component overrides / slot injections for lead-gen pages.
|
|
7176
|
+
* Each key maps to a page surface; the value is an object of optional
|
|
7177
|
+
* slot props (all absent → byte-identical default render).
|
|
7178
|
+
*
|
|
7179
|
+
* Extend this map as more pages gain slot support.
|
|
7180
|
+
*/
|
|
7181
|
+
interface LeadGenPageOverrides {
|
|
7182
|
+
/** Slot props injected into `LeadGenOverviewPage`. */
|
|
7183
|
+
overview?: LeadGenOverviewPageSlots;
|
|
7184
|
+
/** Slot props injected into `LeadGenListDetailPage`. */
|
|
7185
|
+
listDetail?: LeadGenListDetailPageSlots;
|
|
7186
|
+
/** Column config / slot props injected into `LeadGenCompaniesPage`. */
|
|
7187
|
+
companies?: LeadGenCompaniesPageSlots;
|
|
7188
|
+
/** Column config / slot props injected into `LeadGenContactsPage`. */
|
|
7189
|
+
contacts?: LeadGenContactsPageSlots;
|
|
7190
|
+
}
|
|
7191
|
+
/**
|
|
7192
|
+
* Extended `SystemModule` for the lead-gen feature that carries optional
|
|
7193
|
+
* page overrides alongside the standard manifest fields.
|
|
7194
|
+
*/
|
|
7195
|
+
interface LeadGenSystemModule extends SystemModule {
|
|
7196
|
+
/**
|
|
7197
|
+
* Optional page override map. Absent → no override (default renders apply).
|
|
7198
|
+
* Replaces the need for route-wrapper bolt-ons in tenant projects.
|
|
7199
|
+
*/
|
|
7200
|
+
pages?: LeadGenPageOverrides;
|
|
7201
|
+
}
|
|
7202
|
+
declare const leadGenManifest: LeadGenSystemModule;
|
|
7203
|
+
|
|
7081
7204
|
declare const crmManifest: SystemModule;
|
|
7082
7205
|
|
|
7083
7206
|
declare function DealsListPage(): react_jsx_runtime.JSX.Element;
|
|
@@ -7113,8 +7236,6 @@ interface LeadGenSidebarMiddleProps {
|
|
|
7113
7236
|
}
|
|
7114
7237
|
declare const LeadGenSidebarMiddle: ({ items }?: LeadGenSidebarMiddleProps) => react_jsx_runtime.JSX.Element;
|
|
7115
7238
|
|
|
7116
|
-
declare const leadGenManifest: SystemModule;
|
|
7117
|
-
|
|
7118
7239
|
interface LeadGenRouteLink {
|
|
7119
7240
|
label: string;
|
|
7120
7241
|
to: string;
|
|
@@ -7131,18 +7252,8 @@ declare function getEnrichmentColor(status: string): "green" | "red" | "gray" |
|
|
|
7131
7252
|
|
|
7132
7253
|
declare function useDeleteLists(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
7133
7254
|
|
|
7134
|
-
declare function LeadGenOverviewPage(): react_jsx_runtime.JSX.Element;
|
|
7135
|
-
|
|
7136
7255
|
declare function LeadGenListsPage(): react_jsx_runtime.JSX.Element;
|
|
7137
7256
|
|
|
7138
|
-
declare function LeadGenListDetailPage({ listId }: {
|
|
7139
|
-
listId: string;
|
|
7140
|
-
}): react_jsx_runtime.JSX.Element;
|
|
7141
|
-
|
|
7142
|
-
declare function LeadGenCompaniesPage(): react_jsx_runtime.JSX.Element;
|
|
7143
|
-
|
|
7144
|
-
declare function LeadGenContactsPage(): react_jsx_runtime.JSX.Element;
|
|
7145
|
-
|
|
7146
7257
|
declare const SEOSidebar: () => react_jsx_runtime.JSX.Element;
|
|
7147
7258
|
|
|
7148
7259
|
declare const SEOSidebarTop: () => react_jsx_runtime.JSX.Element;
|
package/dist/components/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity } from '../chunk-
|
|
1
|
+
export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity } from '../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../chunk-
|
|
8
|
+
import '../chunk-DRQA53N4.js';
|
|
9
9
|
import '../chunk-T4LA4RY2.js';
|
|
10
10
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-GMXGDO3I.js';
|
|
11
11
|
export { CardHeader } from '../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ export { Graph_module_css_default as graphStyles } from '../chunk-HENXLGVD.js';
|
|
|
19
19
|
export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../chunk-EIXSQONC.js';
|
|
22
|
-
import '../chunk-
|
|
22
|
+
import '../chunk-774JOHIM.js';
|
|
23
23
|
import '../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../chunk-KRWALB24.js';
|
|
25
25
|
import '../chunk-BI5VDO2K.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { useBreadcrumbs } from '../../chunk-
|
|
1
|
+
export { useBreadcrumbs } from '../../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-DRQA53N4.js';
|
|
9
9
|
import '../../chunk-T4LA4RY2.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import '../../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../chunk-EIXSQONC.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-774JOHIM.js';
|
|
23
23
|
import '../../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../../chunk-KRWALB24.js';
|
|
25
25
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ProtectedRoute, AppearanceContext, AppShellError, useAppearance } from '../../chunk-
|
|
2
|
-
export { AccessGuard } from '../../chunk-
|
|
1
|
+
import { ProtectedRoute, AppearanceContext, AppShellError, useAppearance } from '../../chunk-WFX6ERBL.js';
|
|
2
|
+
export { AccessGuard } from '../../chunk-WFX6ERBL.js';
|
|
3
3
|
import '../../chunk-NZ2F5RQ4.js';
|
|
4
4
|
import '../../chunk-OJJK27GC.js';
|
|
5
5
|
import '../../chunk-ZTWA5H77.js';
|
|
6
6
|
import '../../chunk-AUDNF2Q7.js';
|
|
7
7
|
import '../../chunk-6M6OLGQY.js';
|
|
8
8
|
import '../../chunk-MKH2KOAO.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-DRQA53N4.js';
|
|
10
10
|
import '../../chunk-T4LA4RY2.js';
|
|
11
11
|
import '../../chunk-GMXGDO3I.js';
|
|
12
12
|
import '../../chunk-S3XR4II4.js';
|
|
@@ -20,7 +20,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
20
20
|
import '../../chunk-I3CFGE3N.js';
|
|
21
21
|
import '../../chunk-RNP5R5I3.js';
|
|
22
22
|
export { useUserProfile } from '../../chunk-EIXSQONC.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-774JOHIM.js';
|
|
24
24
|
import '../../chunk-FVOMKZ7S.js';
|
|
25
25
|
import '../../chunk-KRWALB24.js';
|
|
26
26
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { useClientStatus, StatCard, EmptyState, useCreateClient, CustomModal, useUpdateClient, useDeleteClient, usePaginationState, useClients, SubshellContentContainer, PageContainer, PageTitleCaption, FilterBar, CenteredErrorState, useClient, showApiErrorNotification } from '../../chunk-
|
|
1
|
+
import { useClientStatus, StatCard, EmptyState, useCreateClient, CustomModal, useUpdateClient, useDeleteClient, usePaginationState, useClients, SubshellContentContainer, PageContainer, PageTitleCaption, FilterBar, CenteredErrorState, useClient, showApiErrorNotification } from '../../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-DRQA53N4.js';
|
|
9
9
|
import '../../chunk-T4LA4RY2.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import { CardHeader } from '../../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../chunk-EIXSQONC.js';
|
|
22
|
-
import { PAGE_SIZE_DEFAULT, formatTimeAgo } from '../../chunk-
|
|
22
|
+
import { PAGE_SIZE_DEFAULT, formatTimeAgo } from '../../chunk-774JOHIM.js';
|
|
23
23
|
import '../../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../../chunk-KRWALB24.js';
|
|
25
25
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ContactDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-
|
|
1
|
+
export { ActivityFeedWidget, CRM_ITEMS, CompanyDetailPage, ContactDetailPage, ConversationThread, CrmOverview, CrmSettingsPage, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, DEAL_STAGE_COLORS, DEAL_STAGE_OPTIONS, DealDetailPage, DealsListPage, MetricsStrip, MyTasksPanel, PIPELINE_FUNNEL_ORDER, PipelineFunnelWidget, QuickCreateActions, SAVED_VIEW_PRESETS, SavedViewsPanel, crmManifest, crmPrioritySettingsKeys, formatDealStageLabel, useCrmPipelineSummary, useCrmPrioritySettings, useCrmQuickMetrics, useRecentCrmActivity, useResetCrmPrioritySettings, useUpdateCrmPrioritySettings } from '../../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-DRQA53N4.js';
|
|
9
9
|
import '../../chunk-T4LA4RY2.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import '../../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../chunk-EIXSQONC.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-774JOHIM.js';
|
|
23
23
|
import '../../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../../chunk-KRWALB24.js';
|
|
25
25
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -111,12 +111,13 @@ declare const SystemApiInterfaceSchema: z.ZodObject<{
|
|
|
111
111
|
archived: "archived";
|
|
112
112
|
disabled: "disabled";
|
|
113
113
|
}>>;
|
|
114
|
-
readinessProfile: z.ZodOptional<z.
|
|
115
|
-
"sales.lead-gen.api": "sales.lead-gen.api";
|
|
116
|
-
"sales.crm.api": "sales.crm.api";
|
|
117
|
-
"sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
|
|
118
|
-
}>>;
|
|
114
|
+
readinessProfile: z.ZodOptional<z.ZodString>;
|
|
119
115
|
resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
116
|
+
readinessContract: z.ZodOptional<z.ZodObject<{
|
|
117
|
+
requiredObjects: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
118
|
+
requiredCatalogs: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
119
|
+
requiredKinds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
120
|
+
}, z.core.$strict>>;
|
|
120
121
|
}, z.core.$strict>;
|
|
121
122
|
type JsonPrimitive = string | number | boolean | null;
|
|
122
123
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-DRQA53N4.js';
|
|
9
9
|
import '../../chunk-T4LA4RY2.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import '../../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../chunk-EIXSQONC.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-774JOHIM.js';
|
|
23
23
|
import '../../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../../chunk-KRWALB24.js';
|
|
25
25
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { AllTasksPage, Checklist, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-
|
|
1
|
+
export { AllTasksPage, Checklist, CreateDeliveryEntityModal, DELIVERY_COMMUNICATION_ITEMS, DELIVERY_PROJECT_ITEMS, DELIVERY_WORK_ITEMS, HealthStatusCard, MilestoneTimeline, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, TaskCard, UpcomingMilestonesPage, calculateProgress, deliveryManifest, formatStatusLabel, milestoneStatusColors, noteTypeColors, projectStatusColors, taskStatusColors, taskTypeColors } from '../../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-DRQA53N4.js';
|
|
9
9
|
import '../../chunk-T4LA4RY2.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import '../../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../chunk-EIXSQONC.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-774JOHIM.js';
|
|
23
23
|
import '../../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../../chunk-KRWALB24.js';
|
|
25
25
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export { knowledgeManifest } from '../../chunk-
|
|
1
|
+
export { knowledgeManifest } from '../../chunk-WFX6ERBL.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
5
5
|
import '../../chunk-AUDNF2Q7.js';
|
|
6
6
|
import '../../chunk-6M6OLGQY.js';
|
|
7
7
|
import '../../chunk-MKH2KOAO.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-DRQA53N4.js';
|
|
9
9
|
import '../../chunk-T4LA4RY2.js';
|
|
10
10
|
import '../../chunk-GMXGDO3I.js';
|
|
11
11
|
import '../../chunk-S3XR4II4.js';
|
|
@@ -19,7 +19,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../chunk-I3CFGE3N.js';
|
|
20
20
|
import '../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../chunk-EIXSQONC.js';
|
|
22
|
-
import '../../chunk-
|
|
22
|
+
import '../../chunk-774JOHIM.js';
|
|
23
23
|
import '../../chunk-FVOMKZ7S.js';
|
|
24
24
|
import '../../chunk-KRWALB24.js';
|
|
25
25
|
import '../../chunk-BI5VDO2K.js';
|