@elevasis/ui 2.61.1 → 2.61.3
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/app/index.js +1 -1
- package/dist/auth/index.js +1 -1
- package/dist/charts/index.js +1 -1
- package/dist/{chunk-BUVFSG7A.js → chunk-5KPQPKGU.js} +289 -347
- package/dist/components/index.js +1 -1
- package/dist/components/navigation/index.js +1 -1
- package/dist/features/auth/index.js +2 -2
- package/dist/features/clients/index.js +1 -1
- package/dist/features/crm/index.js +1 -1
- package/dist/features/dashboard/index.js +1 -1
- package/dist/features/delivery/index.js +1 -1
- package/dist/features/knowledge/index.js +1 -1
- package/dist/features/lead-gen/index.js +1 -1
- package/dist/features/monitoring/index.js +1 -1
- package/dist/features/monitoring/requests/index.js +2 -2
- package/dist/features/operations/index.js +1 -1
- package/dist/features/settings/index.js +1 -1
- package/dist/hooks/access/index.js +1 -1
- package/dist/hooks/delivery/index.js +1 -1
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/published.js +1 -1
- package/dist/index.js +1 -1
- package/dist/knowledge/index.js +2 -2
- package/dist/layout/index.js +1 -1
- package/dist/organization/index.js +1 -1
- package/dist/provider/index.js +1 -1
- package/dist/provider/published.js +1 -1
- package/package.json +4 -4
package/dist/app/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useSessionCheck, AppErrorBoundary, SidebarProvider, ElevasisSystemsProvider, useElevasisSystems, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer, SystemShell, ElevasisUIProvider } from '../chunk-
|
|
1
|
+
import { useSessionCheck, AppErrorBoundary, SidebarProvider, ElevasisSystemsProvider, useElevasisSystems, AppShellContainer, Sidebar, AppShellRightSideContainer, AppShellRightSideOuterContainer, SystemShell, ElevasisUIProvider } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/dist/auth/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccessGuard, AccessKeys, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from '../chunk-
|
|
1
|
+
export { AccessGuard, AccessKeys, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/dist/charts/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, useCyberColors } from '../chunk-
|
|
1
|
+
export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, useCyberColors } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -4026,6 +4026,43 @@ function projectTopbarActions(topbar, modules, context) {
|
|
|
4026
4026
|
}
|
|
4027
4027
|
return result;
|
|
4028
4028
|
}
|
|
4029
|
+
var VIEWPORT_SLACK = 4;
|
|
4030
|
+
var SCROLL_SLACK = 1;
|
|
4031
|
+
function detectUnboundedScroll(metrics) {
|
|
4032
|
+
const overflowsViewport = metrics.rectBottom > metrics.viewportHeight + VIEWPORT_SLACK;
|
|
4033
|
+
const internalScrollNotEngaged = metrics.scrollHeight <= metrics.clientHeight + SCROLL_SLACK;
|
|
4034
|
+
return overflowsViewport && internalScrollNotEngaged;
|
|
4035
|
+
}
|
|
4036
|
+
function useUnboundedScrollWarning(ref, label = "SubshellContentContainer") {
|
|
4037
|
+
useEffect(() => {
|
|
4038
|
+
if (!import.meta.env?.DEV) return;
|
|
4039
|
+
const el = ref.current;
|
|
4040
|
+
if (!el || typeof window === "undefined" || typeof ResizeObserver === "undefined") return;
|
|
4041
|
+
let warned = false;
|
|
4042
|
+
const check = () => {
|
|
4043
|
+
const rect = el.getBoundingClientRect();
|
|
4044
|
+
const unbounded = detectUnboundedScroll({
|
|
4045
|
+
rectBottom: rect.bottom,
|
|
4046
|
+
viewportHeight: window.innerHeight,
|
|
4047
|
+
scrollHeight: el.scrollHeight,
|
|
4048
|
+
clientHeight: el.clientHeight
|
|
4049
|
+
});
|
|
4050
|
+
if (unbounded && !warned) {
|
|
4051
|
+
warned = true;
|
|
4052
|
+
console.warn(
|
|
4053
|
+
`[${label}] is not height-bounded: it extends ~${Math.round(
|
|
4054
|
+
rect.bottom - window.innerHeight
|
|
4055
|
+
)}px below the viewport and its internal scroll is not engaging. A shared full-height page must render as a DIRECT flex child of the shell region \u2014 do not wrap it (e.g. in a Mantine <Stack>), which breaks the flex/scroll height chain. Customize via the page's slot props (headerActions / tabs / footer) instead.`
|
|
4056
|
+
);
|
|
4057
|
+
} else if (!unbounded) {
|
|
4058
|
+
warned = false;
|
|
4059
|
+
}
|
|
4060
|
+
};
|
|
4061
|
+
const observer = new ResizeObserver(check);
|
|
4062
|
+
observer.observe(el);
|
|
4063
|
+
return () => observer.disconnect();
|
|
4064
|
+
}, [ref, label]);
|
|
4065
|
+
}
|
|
4029
4066
|
var SubshellContainer = ({ children, className }) => {
|
|
4030
4067
|
return /* @__PURE__ */ jsx(
|
|
4031
4068
|
"div",
|
|
@@ -4059,9 +4096,12 @@ var SubshellRightSideContainer = ({ children, className }) => {
|
|
|
4059
4096
|
};
|
|
4060
4097
|
var mdSpacing = 16;
|
|
4061
4098
|
var SubshellContentContainer = ({ children, className }) => {
|
|
4099
|
+
const ref = useRef(null);
|
|
4100
|
+
useUnboundedScrollWarning(ref);
|
|
4062
4101
|
return /* @__PURE__ */ jsx(
|
|
4063
4102
|
"div",
|
|
4064
4103
|
{
|
|
4104
|
+
ref,
|
|
4065
4105
|
className,
|
|
4066
4106
|
style: {
|
|
4067
4107
|
display: "flex",
|
|
@@ -4071,6 +4111,7 @@ var SubshellContentContainer = ({ children, className }) => {
|
|
|
4071
4111
|
overflowY: "auto",
|
|
4072
4112
|
minWidth: 0,
|
|
4073
4113
|
minHeight: 0,
|
|
4114
|
+
maxHeight: "100%",
|
|
4074
4115
|
padding: "var(--mantine-spacing-md)",
|
|
4075
4116
|
paddingTop: `${topbarHeight + mdSpacing}px`
|
|
4076
4117
|
},
|
|
@@ -30323,68 +30364,6 @@ function LeadGenReadinessAlert({
|
|
|
30323
30364
|
reason ? ` ${reason}` : ""
|
|
30324
30365
|
] });
|
|
30325
30366
|
}
|
|
30326
|
-
var panelStyle = {
|
|
30327
|
-
flex: 1,
|
|
30328
|
-
minHeight: 0,
|
|
30329
|
-
minWidth: 0,
|
|
30330
|
-
overflowX: "hidden",
|
|
30331
|
-
overflowY: "auto",
|
|
30332
|
-
paddingTop: "var(--mantine-spacing-sm)"
|
|
30333
|
-
};
|
|
30334
|
-
function StepDetailRightColumn({
|
|
30335
|
-
configuration,
|
|
30336
|
-
records,
|
|
30337
|
-
advanced,
|
|
30338
|
-
runs,
|
|
30339
|
-
action,
|
|
30340
|
-
activeTab,
|
|
30341
|
-
onTabChange
|
|
30342
|
-
}) {
|
|
30343
|
-
return /* @__PURE__ */ jsxs(
|
|
30344
|
-
Stack,
|
|
30345
|
-
{
|
|
30346
|
-
gap: "sm",
|
|
30347
|
-
style: {
|
|
30348
|
-
flex: 1,
|
|
30349
|
-
minHeight: 0,
|
|
30350
|
-
minWidth: 0
|
|
30351
|
-
},
|
|
30352
|
-
children: [
|
|
30353
|
-
/* @__PURE__ */ jsxs(
|
|
30354
|
-
Tabs,
|
|
30355
|
-
{
|
|
30356
|
-
value: activeTab,
|
|
30357
|
-
onChange: (value) => {
|
|
30358
|
-
if (value === "configuration" || value === "records" || value === "advanced" || value === "runs") {
|
|
30359
|
-
onTabChange(value);
|
|
30360
|
-
}
|
|
30361
|
-
},
|
|
30362
|
-
style: {
|
|
30363
|
-
flex: 1,
|
|
30364
|
-
minHeight: 0,
|
|
30365
|
-
minWidth: 0,
|
|
30366
|
-
display: "flex",
|
|
30367
|
-
flexDirection: "column"
|
|
30368
|
-
},
|
|
30369
|
-
children: [
|
|
30370
|
-
/* @__PURE__ */ jsxs(Tabs.List, { children: [
|
|
30371
|
-
/* @__PURE__ */ jsx(Tabs.Tab, { value: "configuration", children: "Configuration" }),
|
|
30372
|
-
/* @__PURE__ */ jsx(Tabs.Tab, { value: "records", children: "Records" }),
|
|
30373
|
-
/* @__PURE__ */ jsx(Tabs.Tab, { value: "advanced", children: "Advanced" }),
|
|
30374
|
-
/* @__PURE__ */ jsx(Tabs.Tab, { value: "runs", children: "Runs" })
|
|
30375
|
-
] }),
|
|
30376
|
-
/* @__PURE__ */ jsx(Tabs.Panel, { value: "configuration", style: panelStyle, children: configuration }),
|
|
30377
|
-
/* @__PURE__ */ jsx(Tabs.Panel, { value: "records", style: panelStyle, children: records ?? /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "No records view configured for this step." }) }),
|
|
30378
|
-
/* @__PURE__ */ jsx(Tabs.Panel, { value: "advanced", style: panelStyle, children: advanced ?? /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "No advanced settings for this step." }) }),
|
|
30379
|
-
/* @__PURE__ */ jsx(Tabs.Panel, { value: "runs", style: panelStyle, children: runs })
|
|
30380
|
-
]
|
|
30381
|
-
}
|
|
30382
|
-
),
|
|
30383
|
-
/* @__PURE__ */ jsx(Stack, { gap: "xs", style: { flexShrink: 0, minWidth: 0, overflowX: "hidden" }, children: action })
|
|
30384
|
-
]
|
|
30385
|
-
}
|
|
30386
|
-
);
|
|
30387
|
-
}
|
|
30388
30367
|
function formatDateTime3(value) {
|
|
30389
30368
|
if (!value) return "Not yet";
|
|
30390
30369
|
return new Date(value).toLocaleString("en-US", {
|
|
@@ -30556,83 +30535,6 @@ function WorkflowRunsPanel({
|
|
|
30556
30535
|
);
|
|
30557
30536
|
}
|
|
30558
30537
|
|
|
30559
|
-
// src/lib/lead-gen/processing-state.ts
|
|
30560
|
-
function isRecord2(value) {
|
|
30561
|
-
return Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
30562
|
-
}
|
|
30563
|
-
function parseProcessingStageStatus(value) {
|
|
30564
|
-
if (value === true || value === "success") return "success";
|
|
30565
|
-
if (value === "no_result" || value === "noResult") return "noResult";
|
|
30566
|
-
if (value === "skipped") return "skipped";
|
|
30567
|
-
if (value === "error") return "error";
|
|
30568
|
-
if (isRecord2(value)) return parseProcessingStageStatus(value.status);
|
|
30569
|
-
if (typeof value === "string") return "other";
|
|
30570
|
-
return null;
|
|
30571
|
-
}
|
|
30572
|
-
function parseProcessingState(value, stageCatalog = {}) {
|
|
30573
|
-
const parsed = {};
|
|
30574
|
-
const stageStatuses = {};
|
|
30575
|
-
const knownStageStatuses = {};
|
|
30576
|
-
const unknownFields = {};
|
|
30577
|
-
if (!isRecord2(value)) {
|
|
30578
|
-
Object.defineProperties(parsed, {
|
|
30579
|
-
stageStatuses: { value: stageStatuses },
|
|
30580
|
-
knownStageStatuses: { value: knownStageStatuses },
|
|
30581
|
-
unknownFields: { value: unknownFields }
|
|
30582
|
-
});
|
|
30583
|
-
return parsed;
|
|
30584
|
-
}
|
|
30585
|
-
for (const [key, rawStatus] of Object.entries(value)) {
|
|
30586
|
-
const parsedStatus = parseProcessingStageStatus(rawStatus);
|
|
30587
|
-
const isKnownStage = Boolean(stageCatalog[key]);
|
|
30588
|
-
if (!parsedStatus) {
|
|
30589
|
-
unknownFields[key] = rawStatus;
|
|
30590
|
-
continue;
|
|
30591
|
-
}
|
|
30592
|
-
stageStatuses[key] = parsedStatus;
|
|
30593
|
-
parsed[key] = parsedStatus;
|
|
30594
|
-
if (isKnownStage) {
|
|
30595
|
-
knownStageStatuses[key] = parsedStatus;
|
|
30596
|
-
} else {
|
|
30597
|
-
unknownFields[key] = rawStatus;
|
|
30598
|
-
}
|
|
30599
|
-
}
|
|
30600
|
-
Object.defineProperties(parsed, {
|
|
30601
|
-
stageStatuses: { value: stageStatuses },
|
|
30602
|
-
knownStageStatuses: { value: knownStageStatuses },
|
|
30603
|
-
unknownFields: { value: unknownFields }
|
|
30604
|
-
});
|
|
30605
|
-
return parsed;
|
|
30606
|
-
}
|
|
30607
|
-
function readLeadGenProcessingState(row) {
|
|
30608
|
-
if (!isRecord2(row)) return null;
|
|
30609
|
-
return row.processingState ?? row.processing_state ?? row.pipelineStatus ?? null;
|
|
30610
|
-
}
|
|
30611
|
-
function readLeadGenStateKey(row) {
|
|
30612
|
-
if (!isRecord2(row)) return null;
|
|
30613
|
-
const stateKey = row.stateKey ?? row.state_key;
|
|
30614
|
-
return typeof stateKey === "string" && stateKey.length > 0 ? stateKey : null;
|
|
30615
|
-
}
|
|
30616
|
-
function getDisplayLeadGenStageStateFor(row, entity, stageCatalog = {}) {
|
|
30617
|
-
const parsed = parseProcessingState(readLeadGenProcessingState(row), stageCatalog);
|
|
30618
|
-
const latest = Object.values(stageCatalog).filter((stage) => stage.entity === entity && parsed.knownStageStatuses[stage.key]).sort((a, b) => b.order - a.order)[0];
|
|
30619
|
-
if (latest) {
|
|
30620
|
-
return {
|
|
30621
|
-
stageKey: latest.key,
|
|
30622
|
-
stageStatus: parsed.knownStageStatuses[latest.key]
|
|
30623
|
-
};
|
|
30624
|
-
}
|
|
30625
|
-
const unknownStageKey = Object.keys(parsed.stageStatuses).find((stageKey) => !stageCatalog[stageKey]);
|
|
30626
|
-
if (unknownStageKey) {
|
|
30627
|
-
return {
|
|
30628
|
-
stageKey: unknownStageKey,
|
|
30629
|
-
stageStatus: parsed.stageStatuses[unknownStageKey]
|
|
30630
|
-
};
|
|
30631
|
-
}
|
|
30632
|
-
const stateKey = readLeadGenStateKey(row);
|
|
30633
|
-
return stateKey && stageCatalog[stateKey] ? { stageKey: stateKey, stageStatus: null } : { stageKey: null, stageStatus: null };
|
|
30634
|
-
}
|
|
30635
|
-
|
|
30636
30538
|
// src/features/lead-gen/build-state.ts
|
|
30637
30539
|
var ORPHAN_STAGE_ORDER = 9999;
|
|
30638
30540
|
function asRecord(value) {
|
|
@@ -30842,17 +30744,85 @@ function resolveBuildState(list, progress, actions, config = {}) {
|
|
|
30842
30744
|
recommendedAction: recommendedStep?.recommendedAction ?? null
|
|
30843
30745
|
};
|
|
30844
30746
|
}
|
|
30845
|
-
|
|
30846
|
-
|
|
30847
|
-
|
|
30747
|
+
|
|
30748
|
+
// src/lib/lead-gen/processing-state.ts
|
|
30749
|
+
function isRecord2(value) {
|
|
30750
|
+
return Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
30848
30751
|
}
|
|
30849
|
-
function
|
|
30850
|
-
|
|
30752
|
+
function parseProcessingStageStatus(value) {
|
|
30753
|
+
if (value === true || value === "success") return "success";
|
|
30754
|
+
if (value === "no_result" || value === "noResult") return "noResult";
|
|
30755
|
+
if (value === "skipped") return "skipped";
|
|
30756
|
+
if (value === "error") return "error";
|
|
30757
|
+
if (isRecord2(value)) return parseProcessingStageStatus(value.status);
|
|
30758
|
+
if (typeof value === "string") return "other";
|
|
30759
|
+
return null;
|
|
30851
30760
|
}
|
|
30852
|
-
|
|
30853
|
-
|
|
30854
|
-
|
|
30855
|
-
|
|
30761
|
+
function parseProcessingState(value, stageCatalog = {}) {
|
|
30762
|
+
const parsed = {};
|
|
30763
|
+
const stageStatuses = {};
|
|
30764
|
+
const knownStageStatuses = {};
|
|
30765
|
+
const unknownFields = {};
|
|
30766
|
+
if (!isRecord2(value)) {
|
|
30767
|
+
Object.defineProperties(parsed, {
|
|
30768
|
+
stageStatuses: { value: stageStatuses },
|
|
30769
|
+
knownStageStatuses: { value: knownStageStatuses },
|
|
30770
|
+
unknownFields: { value: unknownFields }
|
|
30771
|
+
});
|
|
30772
|
+
return parsed;
|
|
30773
|
+
}
|
|
30774
|
+
for (const [key, rawStatus] of Object.entries(value)) {
|
|
30775
|
+
const parsedStatus = parseProcessingStageStatus(rawStatus);
|
|
30776
|
+
const isKnownStage = Boolean(stageCatalog[key]);
|
|
30777
|
+
if (!parsedStatus) {
|
|
30778
|
+
unknownFields[key] = rawStatus;
|
|
30779
|
+
continue;
|
|
30780
|
+
}
|
|
30781
|
+
stageStatuses[key] = parsedStatus;
|
|
30782
|
+
parsed[key] = parsedStatus;
|
|
30783
|
+
if (isKnownStage) {
|
|
30784
|
+
knownStageStatuses[key] = parsedStatus;
|
|
30785
|
+
} else {
|
|
30786
|
+
unknownFields[key] = rawStatus;
|
|
30787
|
+
}
|
|
30788
|
+
}
|
|
30789
|
+
Object.defineProperties(parsed, {
|
|
30790
|
+
stageStatuses: { value: stageStatuses },
|
|
30791
|
+
knownStageStatuses: { value: knownStageStatuses },
|
|
30792
|
+
unknownFields: { value: unknownFields }
|
|
30793
|
+
});
|
|
30794
|
+
return parsed;
|
|
30795
|
+
}
|
|
30796
|
+
function readLeadGenProcessingState(row) {
|
|
30797
|
+
if (!isRecord2(row)) return null;
|
|
30798
|
+
return row.processingState ?? row.processing_state ?? row.pipelineStatus ?? null;
|
|
30799
|
+
}
|
|
30800
|
+
function readLeadGenStateKey(row) {
|
|
30801
|
+
if (!isRecord2(row)) return null;
|
|
30802
|
+
const stateKey = row.stateKey ?? row.state_key;
|
|
30803
|
+
return typeof stateKey === "string" && stateKey.length > 0 ? stateKey : null;
|
|
30804
|
+
}
|
|
30805
|
+
function getDisplayLeadGenStageStateFor(row, entity, stageCatalog = {}) {
|
|
30806
|
+
const parsed = parseProcessingState(readLeadGenProcessingState(row), stageCatalog);
|
|
30807
|
+
const latest = Object.values(stageCatalog).filter((stage) => stage.entity === entity && parsed.knownStageStatuses[stage.key]).sort((a, b) => b.order - a.order)[0];
|
|
30808
|
+
if (latest) {
|
|
30809
|
+
return {
|
|
30810
|
+
stageKey: latest.key,
|
|
30811
|
+
stageStatus: parsed.knownStageStatuses[latest.key]
|
|
30812
|
+
};
|
|
30813
|
+
}
|
|
30814
|
+
const unknownStageKey = Object.keys(parsed.stageStatuses).find((stageKey) => !stageCatalog[stageKey]);
|
|
30815
|
+
if (unknownStageKey) {
|
|
30816
|
+
return {
|
|
30817
|
+
stageKey: unknownStageKey,
|
|
30818
|
+
stageStatus: parsed.stageStatuses[unknownStageKey]
|
|
30819
|
+
};
|
|
30820
|
+
}
|
|
30821
|
+
const stateKey = readLeadGenStateKey(row);
|
|
30822
|
+
return stateKey && stageCatalog[stateKey] ? { stageKey: stateKey, stageStatus: null } : { stageKey: null, stageStatus: null };
|
|
30823
|
+
}
|
|
30824
|
+
|
|
30825
|
+
// src/features/lead-gen/pages/list-detail/helpers.ts
|
|
30856
30826
|
function formatDateTime4(value) {
|
|
30857
30827
|
if (!value) return "Not yet";
|
|
30858
30828
|
return new Date(value).toLocaleString("en-US", {
|
|
@@ -30883,9 +30853,6 @@ function getStatusColor6(status) {
|
|
|
30883
30853
|
return "gray";
|
|
30884
30854
|
}
|
|
30885
30855
|
}
|
|
30886
|
-
function getListDataMode(list) {
|
|
30887
|
-
return list.pipelineConfig?.dataMode === "live" ? "live" : "mock";
|
|
30888
|
-
}
|
|
30889
30856
|
function getMemberStateColor2(stateKey, stageCatalog) {
|
|
30890
30857
|
const stage = stageCatalog[stateKey];
|
|
30891
30858
|
if (stage?.entity === "contact") return "green";
|
|
@@ -30981,24 +30948,6 @@ function getRecordStatusColor(status) {
|
|
|
30981
30948
|
return "blue";
|
|
30982
30949
|
}
|
|
30983
30950
|
}
|
|
30984
|
-
function renderRecordValue(value, column) {
|
|
30985
|
-
if (value === null || value === void 0 || value === "") {
|
|
30986
|
-
return /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "-" });
|
|
30987
|
-
}
|
|
30988
|
-
switch (column.renderType) {
|
|
30989
|
-
case "badge":
|
|
30990
|
-
return /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", color: column.badgeColor ?? getRecordStatusColor(String(value)), children: compactText(value) });
|
|
30991
|
-
case "datetime":
|
|
30992
|
-
return compactText(typeof value === "string" ? formatDateTime4(value) : value);
|
|
30993
|
-
case "count":
|
|
30994
|
-
return Array.isArray(value) ? value.length : compactText(value);
|
|
30995
|
-
case "json":
|
|
30996
|
-
return /* @__PURE__ */ jsx(Text, { size: "xs", lineClamp: 2, children: compactText(value) });
|
|
30997
|
-
case "text":
|
|
30998
|
-
default:
|
|
30999
|
-
return /* @__PURE__ */ jsx(Text, { size: "sm", lineClamp: 2, children: compactText(value) });
|
|
31000
|
-
}
|
|
31001
|
-
}
|
|
31002
30951
|
function getRunStatusColor(status) {
|
|
31003
30952
|
switch (status) {
|
|
31004
30953
|
case "completed":
|
|
@@ -31261,102 +31210,9 @@ function PipelineStagesCard({
|
|
|
31261
31210
|
] })
|
|
31262
31211
|
] }) });
|
|
31263
31212
|
}
|
|
31264
|
-
function ListConfigCard({ list, canManage }) {
|
|
31265
|
-
const updateListConfig = useUpdateListConfig(list.id);
|
|
31266
|
-
const icp = list.icp ?? {};
|
|
31267
|
-
const scraping = list.scrapingConfig ?? {};
|
|
31268
|
-
const hasIcp = Object.values(icp).some((v) => v !== void 0 && v !== null && v !== "");
|
|
31269
|
-
const hasScraping = Object.values(scraping).some((v) => v !== void 0 && v !== null && v !== "");
|
|
31270
|
-
const dataMode = getListDataMode(list);
|
|
31271
|
-
const handleDataModeChange = (value) => {
|
|
31272
|
-
if (!canManage) return;
|
|
31273
|
-
if (value !== "mock" && value !== "live") return;
|
|
31274
|
-
if (value === dataMode) return;
|
|
31275
|
-
updateListConfig.mutate({
|
|
31276
|
-
pipelineConfig: {
|
|
31277
|
-
dataMode: value
|
|
31278
|
-
}
|
|
31279
|
-
});
|
|
31280
|
-
};
|
|
31281
|
-
return /* @__PURE__ */ jsx(Card, { withBorder: true, children: /* @__PURE__ */ jsxs(Stack, { gap: "sm", children: [
|
|
31282
|
-
/* @__PURE__ */ jsxs(Group, { justify: "space-between", align: "flex-end", gap: "sm", children: [
|
|
31283
|
-
/* @__PURE__ */ jsxs(Stack, { gap: 2, children: [
|
|
31284
|
-
/* @__PURE__ */ jsx(Title, { order: 5, children: "List Config" }),
|
|
31285
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Data Mode applies to sourcing, enrichment, and research steps." })
|
|
31286
|
-
] }),
|
|
31287
|
-
/* @__PURE__ */ jsx(
|
|
31288
|
-
Select,
|
|
31289
|
-
{
|
|
31290
|
-
label: "Data Mode",
|
|
31291
|
-
data: DATA_MODE_OPTIONS2,
|
|
31292
|
-
value: dataMode,
|
|
31293
|
-
onChange: handleDataModeChange,
|
|
31294
|
-
disabled: !canManage || updateListConfig.isPending,
|
|
31295
|
-
w: 180,
|
|
31296
|
-
size: "xs"
|
|
31297
|
-
}
|
|
31298
|
-
)
|
|
31299
|
-
] }),
|
|
31300
|
-
!hasIcp && !hasScraping && /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "No ICP rubric or scraping criteria recorded for this list." }),
|
|
31301
|
-
(hasIcp || hasScraping) && /* @__PURE__ */ jsxs(SimpleGrid, { cols: { base: 1, md: 2 }, spacing: "md", children: [
|
|
31302
|
-
hasIcp && /* @__PURE__ */ jsxs(Stack, { gap: 6, children: [
|
|
31303
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", fw: 600, children: "ICP Rubric" }),
|
|
31304
|
-
icp.qualificationRubricKey && /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
|
|
31305
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Rubric Key" }),
|
|
31306
|
-
/* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", children: icp.qualificationRubricKey })
|
|
31307
|
-
] }),
|
|
31308
|
-
icp.targetDescription && /* @__PURE__ */ jsxs(Stack, { gap: 2, children: [
|
|
31309
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Target" }),
|
|
31310
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", children: icp.targetDescription })
|
|
31311
|
-
] }),
|
|
31312
|
-
(icp.minReviewCount !== void 0 || icp.minRating !== void 0) && /* @__PURE__ */ jsxs(Group, { gap: "md", children: [
|
|
31313
|
-
icp.minReviewCount !== void 0 && /* @__PURE__ */ jsxs(Text, { size: "xs", c: "dimmed", children: [
|
|
31314
|
-
"Min reviews:",
|
|
31315
|
-
" ",
|
|
31316
|
-
/* @__PURE__ */ jsx(Text, { span: true, size: "xs", c: "bright", children: icp.minReviewCount })
|
|
31317
|
-
] }),
|
|
31318
|
-
icp.minRating !== void 0 && /* @__PURE__ */ jsxs(Text, { size: "xs", c: "dimmed", children: [
|
|
31319
|
-
"Min rating:",
|
|
31320
|
-
" ",
|
|
31321
|
-
/* @__PURE__ */ jsx(Text, { span: true, size: "xs", c: "bright", children: icp.minRating })
|
|
31322
|
-
] })
|
|
31323
|
-
] }),
|
|
31324
|
-
icp.excludeFranchises !== void 0 && /* @__PURE__ */ jsxs(Text, { size: "xs", c: "dimmed", children: [
|
|
31325
|
-
"Exclude franchises:",
|
|
31326
|
-
" ",
|
|
31327
|
-
/* @__PURE__ */ jsx(Text, { span: true, size: "xs", c: "bright", children: String(icp.excludeFranchises) })
|
|
31328
|
-
] }),
|
|
31329
|
-
icp.customRules && /* @__PURE__ */ jsxs(Stack, { gap: 2, children: [
|
|
31330
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Custom rules" }),
|
|
31331
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", children: icp.customRules })
|
|
31332
|
-
] })
|
|
31333
|
-
] }),
|
|
31334
|
-
hasScraping && /* @__PURE__ */ jsxs(Stack, { gap: 6, children: [
|
|
31335
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", fw: 600, children: "Scraping Criteria" }),
|
|
31336
|
-
scraping.vertical && /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
|
|
31337
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Vertical" }),
|
|
31338
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", children: scraping.vertical })
|
|
31339
|
-
] }),
|
|
31340
|
-
scraping.geography && /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
|
|
31341
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Geography" }),
|
|
31342
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", children: scraping.geography })
|
|
31343
|
-
] }),
|
|
31344
|
-
scraping.size && /* @__PURE__ */ jsxs(Group, { gap: "xs", children: [
|
|
31345
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Size" }),
|
|
31346
|
-
/* @__PURE__ */ jsx(Text, { size: "sm", children: scraping.size })
|
|
31347
|
-
] }),
|
|
31348
|
-
scraping.apifyInput && Object.keys(scraping.apifyInput).length > 0 && /* @__PURE__ */ jsxs(Stack, { gap: 2, children: [
|
|
31349
|
-
/* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "Apify input" }),
|
|
31350
|
-
/* @__PURE__ */ jsx(JsonViewer, { data: scraping.apifyInput, maxHeight: 160, fontSize: "0.75rem" })
|
|
31351
|
-
] })
|
|
31352
|
-
] })
|
|
31353
|
-
] })
|
|
31354
|
-
] }) });
|
|
31355
|
-
}
|
|
31356
31213
|
function OverviewTab({
|
|
31357
31214
|
list,
|
|
31358
31215
|
progress,
|
|
31359
|
-
canManage,
|
|
31360
31216
|
leadGenConfig
|
|
31361
31217
|
}) {
|
|
31362
31218
|
const hasMetadata = list.metadata && Object.keys(list.metadata).length > 0;
|
|
@@ -31372,7 +31228,6 @@ function OverviewTab({
|
|
|
31372
31228
|
/* @__PURE__ */ jsx(StatCard, { label: "Members", value: progress.totalMembers, icon: IconUsers })
|
|
31373
31229
|
] }),
|
|
31374
31230
|
/* @__PURE__ */ jsx(PipelineStagesCard, { list, progress, leadGenConfig }),
|
|
31375
|
-
/* @__PURE__ */ jsx(ListConfigCard, { list, canManage }),
|
|
31376
31231
|
hasMetadata && /* @__PURE__ */ jsx(Card, { withBorder: true, children: /* @__PURE__ */ jsxs(Stack, { gap: "xs", children: [
|
|
31377
31232
|
/* @__PURE__ */ jsx(Title, { order: 5, children: "Metadata" }),
|
|
31378
31233
|
/* @__PURE__ */ jsx(JsonViewer, { data: list.metadata, maxHeight: 320 })
|
|
@@ -31381,6 +31236,171 @@ function OverviewTab({
|
|
|
31381
31236
|
}
|
|
31382
31237
|
);
|
|
31383
31238
|
}
|
|
31239
|
+
function MembersTab({
|
|
31240
|
+
listId,
|
|
31241
|
+
progress,
|
|
31242
|
+
stageCatalog,
|
|
31243
|
+
onMemberClick
|
|
31244
|
+
}) {
|
|
31245
|
+
const [memberTab, setMemberTab] = useState("contacts");
|
|
31246
|
+
const contactsQuery = useContacts({ listId, limit: 100, offset: 0 });
|
|
31247
|
+
const companiesQuery = useCompanies({ listId, limit: 100, offset: 0 });
|
|
31248
|
+
const contacts = contactsQuery.data?.data ?? [];
|
|
31249
|
+
const companies = companiesQuery.data?.data ?? [];
|
|
31250
|
+
const activeQuery = memberTab === "contacts" ? contactsQuery : companiesQuery;
|
|
31251
|
+
const activeError = activeQuery.error ?? activeQuery.failureReason;
|
|
31252
|
+
const activeIsInitialLoading = activeQuery.isLoading && !activeError;
|
|
31253
|
+
return /* @__PURE__ */ jsxs(
|
|
31254
|
+
TabSection,
|
|
31255
|
+
{
|
|
31256
|
+
icon: /* @__PURE__ */ jsx(IconAddressBook, { size: 16 }),
|
|
31257
|
+
title: "Members",
|
|
31258
|
+
description: "Contacts and companies attached to this list.",
|
|
31259
|
+
rightSection: /* @__PURE__ */ jsx(
|
|
31260
|
+
SegmentedControl,
|
|
31261
|
+
{
|
|
31262
|
+
value: memberTab,
|
|
31263
|
+
onChange: (value) => setMemberTab(value),
|
|
31264
|
+
size: "xs",
|
|
31265
|
+
data: [
|
|
31266
|
+
{ label: `Members (${progress.totalMembers})`, value: "contacts" },
|
|
31267
|
+
{ label: `Companies (${progress.totalCompanies})`, value: "companies" }
|
|
31268
|
+
]
|
|
31269
|
+
}
|
|
31270
|
+
),
|
|
31271
|
+
children: [
|
|
31272
|
+
memberTab === "contacts" && /* @__PURE__ */ jsx(Fragment, { children: activeError ? /* @__PURE__ */ jsx(CenteredErrorState, { error: activeError, title: "Failed to load members", h: 160 }) : activeIsInitialLoading ? /* @__PURE__ */ jsx(Center, { p: "md", children: /* @__PURE__ */ jsx(Loader, { size: "sm" }) }) : !contacts.length ? /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "No contacts attached to this list yet." }) : /* @__PURE__ */ jsxs(Table, { highlightOnHover: true, children: [
|
|
31273
|
+
/* @__PURE__ */ jsx(Table.Thead, { children: /* @__PURE__ */ jsxs(Table.Tr, { children: [
|
|
31274
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Name" }),
|
|
31275
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Email" }),
|
|
31276
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Title" }),
|
|
31277
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Company" }),
|
|
31278
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Status" }),
|
|
31279
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "State" }),
|
|
31280
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Created" })
|
|
31281
|
+
] }) }),
|
|
31282
|
+
/* @__PURE__ */ jsx(Table.Tbody, { children: contacts.map((contact) => {
|
|
31283
|
+
const handleRowClick = () => onMemberClick?.(contact.id, "contact");
|
|
31284
|
+
const memberStage = displayMemberStageFor(contact, "contact", stageCatalog);
|
|
31285
|
+
return /* @__PURE__ */ jsxs(Table.Tr, { onClick: handleRowClick, style: { cursor: "pointer" }, children: [
|
|
31286
|
+
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Text, { fw: 500, children: contactDisplayName(contact.firstName, contact.lastName) }) }),
|
|
31287
|
+
/* @__PURE__ */ jsx(Table.Td, { children: contact.email }),
|
|
31288
|
+
/* @__PURE__ */ jsx(Table.Td, { children: contact.title ?? "\u2014" }),
|
|
31289
|
+
/* @__PURE__ */ jsx(Table.Td, { children: contact.company?.name ?? "\u2014" }),
|
|
31290
|
+
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", color: getStatusColor6(contact.status), children: contact.status }) }),
|
|
31291
|
+
/* @__PURE__ */ jsx(Table.Td, { children: memberStage ? /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "dot", color: getMemberStateColor2(memberStage.key, stageCatalog), children: memberStage.label }) : /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "\u2014" }) }),
|
|
31292
|
+
/* @__PURE__ */ jsx(Table.Td, { children: formatDateTime4(contact.createdAt) })
|
|
31293
|
+
] }, contact.id);
|
|
31294
|
+
}) })
|
|
31295
|
+
] }) }),
|
|
31296
|
+
memberTab === "companies" && /* @__PURE__ */ jsx(Fragment, { children: activeError ? /* @__PURE__ */ jsx(CenteredErrorState, { error: activeError, title: "Failed to load companies", h: 160 }) : activeIsInitialLoading ? /* @__PURE__ */ jsx(Center, { p: "md", children: /* @__PURE__ */ jsx(Loader, { size: "sm" }) }) : !companies.length ? /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "No companies attached to this list yet." }) : /* @__PURE__ */ jsxs(Table, { highlightOnHover: true, children: [
|
|
31297
|
+
/* @__PURE__ */ jsx(Table.Thead, { children: /* @__PURE__ */ jsxs(Table.Tr, { children: [
|
|
31298
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Name" }),
|
|
31299
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Domain" }),
|
|
31300
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Segment" }),
|
|
31301
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Contacts" }),
|
|
31302
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Status" }),
|
|
31303
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "State" }),
|
|
31304
|
+
/* @__PURE__ */ jsx(Table.Th, { children: "Created" })
|
|
31305
|
+
] }) }),
|
|
31306
|
+
/* @__PURE__ */ jsx(Table.Tbody, { children: companies.map((company) => {
|
|
31307
|
+
const handleRowClick = () => onMemberClick?.(company.id, "company");
|
|
31308
|
+
const memberStage = displayMemberStageFor(company, "company", stageCatalog);
|
|
31309
|
+
return /* @__PURE__ */ jsxs(Table.Tr, { onClick: handleRowClick, style: { cursor: "pointer" }, children: [
|
|
31310
|
+
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Text, { fw: 500, children: company.name }) }),
|
|
31311
|
+
/* @__PURE__ */ jsx(Table.Td, { children: company.domain ?? "\u2014" }),
|
|
31312
|
+
/* @__PURE__ */ jsx(Table.Td, { children: company.segment ?? "\u2014" }),
|
|
31313
|
+
/* @__PURE__ */ jsx(Table.Td, { children: company.contactCount }),
|
|
31314
|
+
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", color: getStatusColor6(company.status), children: company.status }) }),
|
|
31315
|
+
/* @__PURE__ */ jsx(Table.Td, { children: memberStage ? /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "dot", color: getMemberStateColor2(memberStage.key, stageCatalog), children: memberStage.label }) : /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "\u2014" }) }),
|
|
31316
|
+
/* @__PURE__ */ jsx(Table.Td, { children: formatDateTime4(company.createdAt) })
|
|
31317
|
+
] }, company.id);
|
|
31318
|
+
}) })
|
|
31319
|
+
] }) })
|
|
31320
|
+
]
|
|
31321
|
+
}
|
|
31322
|
+
);
|
|
31323
|
+
}
|
|
31324
|
+
var panelStyle = {
|
|
31325
|
+
flex: 1,
|
|
31326
|
+
minHeight: 0,
|
|
31327
|
+
minWidth: 0,
|
|
31328
|
+
overflowX: "hidden",
|
|
31329
|
+
overflowY: "auto",
|
|
31330
|
+
paddingTop: "var(--mantine-spacing-sm)"
|
|
31331
|
+
};
|
|
31332
|
+
function StepDetailRightColumn({
|
|
31333
|
+
configuration,
|
|
31334
|
+
records,
|
|
31335
|
+
advanced,
|
|
31336
|
+
runs,
|
|
31337
|
+
action,
|
|
31338
|
+
activeTab,
|
|
31339
|
+
onTabChange
|
|
31340
|
+
}) {
|
|
31341
|
+
return /* @__PURE__ */ jsxs(
|
|
31342
|
+
Stack,
|
|
31343
|
+
{
|
|
31344
|
+
gap: "sm",
|
|
31345
|
+
style: {
|
|
31346
|
+
flex: 1,
|
|
31347
|
+
minHeight: 0,
|
|
31348
|
+
minWidth: 0
|
|
31349
|
+
},
|
|
31350
|
+
children: [
|
|
31351
|
+
/* @__PURE__ */ jsxs(
|
|
31352
|
+
Tabs,
|
|
31353
|
+
{
|
|
31354
|
+
value: activeTab,
|
|
31355
|
+
onChange: (value) => {
|
|
31356
|
+
if (value === "configuration" || value === "records" || value === "advanced" || value === "runs") {
|
|
31357
|
+
onTabChange(value);
|
|
31358
|
+
}
|
|
31359
|
+
},
|
|
31360
|
+
style: {
|
|
31361
|
+
flex: 1,
|
|
31362
|
+
minHeight: 0,
|
|
31363
|
+
minWidth: 0,
|
|
31364
|
+
display: "flex",
|
|
31365
|
+
flexDirection: "column"
|
|
31366
|
+
},
|
|
31367
|
+
children: [
|
|
31368
|
+
/* @__PURE__ */ jsxs(Tabs.List, { children: [
|
|
31369
|
+
/* @__PURE__ */ jsx(Tabs.Tab, { value: "configuration", children: "Configuration" }),
|
|
31370
|
+
/* @__PURE__ */ jsx(Tabs.Tab, { value: "records", children: "Records" }),
|
|
31371
|
+
/* @__PURE__ */ jsx(Tabs.Tab, { value: "advanced", children: "Advanced" }),
|
|
31372
|
+
/* @__PURE__ */ jsx(Tabs.Tab, { value: "runs", children: "Runs" })
|
|
31373
|
+
] }),
|
|
31374
|
+
/* @__PURE__ */ jsx(Tabs.Panel, { value: "configuration", style: panelStyle, children: configuration }),
|
|
31375
|
+
/* @__PURE__ */ jsx(Tabs.Panel, { value: "records", style: panelStyle, children: records ?? /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "No records view configured for this step." }) }),
|
|
31376
|
+
/* @__PURE__ */ jsx(Tabs.Panel, { value: "advanced", style: panelStyle, children: advanced ?? /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "No advanced settings for this step." }) }),
|
|
31377
|
+
/* @__PURE__ */ jsx(Tabs.Panel, { value: "runs", style: panelStyle, children: runs })
|
|
31378
|
+
]
|
|
31379
|
+
}
|
|
31380
|
+
),
|
|
31381
|
+
/* @__PURE__ */ jsx(Stack, { gap: "xs", style: { flexShrink: 0, minWidth: 0, overflowX: "hidden" }, children: action })
|
|
31382
|
+
]
|
|
31383
|
+
}
|
|
31384
|
+
);
|
|
31385
|
+
}
|
|
31386
|
+
function renderRecordValue(value, column) {
|
|
31387
|
+
if (value === null || value === void 0 || value === "") {
|
|
31388
|
+
return /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "-" });
|
|
31389
|
+
}
|
|
31390
|
+
switch (column.renderType) {
|
|
31391
|
+
case "badge":
|
|
31392
|
+
return /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", color: column.badgeColor ?? getRecordStatusColor(String(value)), children: compactText(value) });
|
|
31393
|
+
case "datetime":
|
|
31394
|
+
return compactText(typeof value === "string" ? formatDateTime4(value) : value);
|
|
31395
|
+
case "count":
|
|
31396
|
+
return Array.isArray(value) ? value.length : compactText(value);
|
|
31397
|
+
case "json":
|
|
31398
|
+
return /* @__PURE__ */ jsx(Text, { size: "xs", lineClamp: 2, children: compactText(value) });
|
|
31399
|
+
case "text":
|
|
31400
|
+
default:
|
|
31401
|
+
return /* @__PURE__ */ jsx(Text, { size: "sm", lineClamp: 2, children: compactText(value) });
|
|
31402
|
+
}
|
|
31403
|
+
}
|
|
31384
31404
|
function getBuildToneStyle(tone) {
|
|
31385
31405
|
switch (tone) {
|
|
31386
31406
|
case "complete":
|
|
@@ -32248,90 +32268,12 @@ function BuildTab({
|
|
|
32248
32268
|
}
|
|
32249
32269
|
);
|
|
32250
32270
|
}
|
|
32251
|
-
|
|
32252
|
-
|
|
32253
|
-
|
|
32254
|
-
|
|
32255
|
-
|
|
32256
|
-
|
|
32257
|
-
const [memberTab, setMemberTab] = useState("contacts");
|
|
32258
|
-
const contactsQuery = useContacts({ listId, limit: 100, offset: 0 });
|
|
32259
|
-
const companiesQuery = useCompanies({ listId, limit: 100, offset: 0 });
|
|
32260
|
-
const contacts = contactsQuery.data?.data ?? [];
|
|
32261
|
-
const companies = companiesQuery.data?.data ?? [];
|
|
32262
|
-
const activeQuery = memberTab === "contacts" ? contactsQuery : companiesQuery;
|
|
32263
|
-
const activeError = activeQuery.error ?? activeQuery.failureReason;
|
|
32264
|
-
const activeIsInitialLoading = activeQuery.isLoading && !activeError;
|
|
32265
|
-
return /* @__PURE__ */ jsxs(
|
|
32266
|
-
TabSection,
|
|
32267
|
-
{
|
|
32268
|
-
icon: /* @__PURE__ */ jsx(IconAddressBook, { size: 16 }),
|
|
32269
|
-
title: "Members",
|
|
32270
|
-
description: "Contacts and companies attached to this list.",
|
|
32271
|
-
rightSection: /* @__PURE__ */ jsx(
|
|
32272
|
-
SegmentedControl,
|
|
32273
|
-
{
|
|
32274
|
-
value: memberTab,
|
|
32275
|
-
onChange: (value) => setMemberTab(value),
|
|
32276
|
-
size: "xs",
|
|
32277
|
-
data: [
|
|
32278
|
-
{ label: `Members (${progress.totalMembers})`, value: "contacts" },
|
|
32279
|
-
{ label: `Companies (${progress.totalCompanies})`, value: "companies" }
|
|
32280
|
-
]
|
|
32281
|
-
}
|
|
32282
|
-
),
|
|
32283
|
-
children: [
|
|
32284
|
-
memberTab === "contacts" && /* @__PURE__ */ jsx(Fragment, { children: activeError ? /* @__PURE__ */ jsx(CenteredErrorState, { error: activeError, title: "Failed to load members", h: 160 }) : activeIsInitialLoading ? /* @__PURE__ */ jsx(Center, { p: "md", children: /* @__PURE__ */ jsx(Loader, { size: "sm" }) }) : !contacts.length ? /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "No contacts attached to this list yet." }) : /* @__PURE__ */ jsxs(Table, { highlightOnHover: true, children: [
|
|
32285
|
-
/* @__PURE__ */ jsx(Table.Thead, { children: /* @__PURE__ */ jsxs(Table.Tr, { children: [
|
|
32286
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Name" }),
|
|
32287
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Email" }),
|
|
32288
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Title" }),
|
|
32289
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Company" }),
|
|
32290
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Status" }),
|
|
32291
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "State" }),
|
|
32292
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Created" })
|
|
32293
|
-
] }) }),
|
|
32294
|
-
/* @__PURE__ */ jsx(Table.Tbody, { children: contacts.map((contact) => {
|
|
32295
|
-
const handleRowClick = () => onMemberClick?.(contact.id, "contact");
|
|
32296
|
-
const memberStage = displayMemberStageFor(contact, "contact", stageCatalog);
|
|
32297
|
-
return /* @__PURE__ */ jsxs(Table.Tr, { onClick: handleRowClick, style: { cursor: "pointer" }, children: [
|
|
32298
|
-
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Text, { fw: 500, children: contactDisplayName(contact.firstName, contact.lastName) }) }),
|
|
32299
|
-
/* @__PURE__ */ jsx(Table.Td, { children: contact.email }),
|
|
32300
|
-
/* @__PURE__ */ jsx(Table.Td, { children: contact.title ?? "\u2014" }),
|
|
32301
|
-
/* @__PURE__ */ jsx(Table.Td, { children: contact.company?.name ?? "\u2014" }),
|
|
32302
|
-
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", color: getStatusColor6(contact.status), children: contact.status }) }),
|
|
32303
|
-
/* @__PURE__ */ jsx(Table.Td, { children: memberStage ? /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "dot", color: getMemberStateColor2(memberStage.key, stageCatalog), children: memberStage.label }) : /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "\u2014" }) }),
|
|
32304
|
-
/* @__PURE__ */ jsx(Table.Td, { children: formatDateTime4(contact.createdAt) })
|
|
32305
|
-
] }, contact.id);
|
|
32306
|
-
}) })
|
|
32307
|
-
] }) }),
|
|
32308
|
-
memberTab === "companies" && /* @__PURE__ */ jsx(Fragment, { children: activeError ? /* @__PURE__ */ jsx(CenteredErrorState, { error: activeError, title: "Failed to load companies", h: 160 }) : activeIsInitialLoading ? /* @__PURE__ */ jsx(Center, { p: "md", children: /* @__PURE__ */ jsx(Loader, { size: "sm" }) }) : !companies.length ? /* @__PURE__ */ jsx(Text, { size: "sm", c: "dimmed", children: "No companies attached to this list yet." }) : /* @__PURE__ */ jsxs(Table, { highlightOnHover: true, children: [
|
|
32309
|
-
/* @__PURE__ */ jsx(Table.Thead, { children: /* @__PURE__ */ jsxs(Table.Tr, { children: [
|
|
32310
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Name" }),
|
|
32311
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Domain" }),
|
|
32312
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Segment" }),
|
|
32313
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Contacts" }),
|
|
32314
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Status" }),
|
|
32315
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "State" }),
|
|
32316
|
-
/* @__PURE__ */ jsx(Table.Th, { children: "Created" })
|
|
32317
|
-
] }) }),
|
|
32318
|
-
/* @__PURE__ */ jsx(Table.Tbody, { children: companies.map((company) => {
|
|
32319
|
-
const handleRowClick = () => onMemberClick?.(company.id, "company");
|
|
32320
|
-
const memberStage = displayMemberStageFor(company, "company", stageCatalog);
|
|
32321
|
-
return /* @__PURE__ */ jsxs(Table.Tr, { onClick: handleRowClick, style: { cursor: "pointer" }, children: [
|
|
32322
|
-
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Text, { fw: 500, children: company.name }) }),
|
|
32323
|
-
/* @__PURE__ */ jsx(Table.Td, { children: company.domain ?? "\u2014" }),
|
|
32324
|
-
/* @__PURE__ */ jsx(Table.Td, { children: company.segment ?? "\u2014" }),
|
|
32325
|
-
/* @__PURE__ */ jsx(Table.Td, { children: company.contactCount }),
|
|
32326
|
-
/* @__PURE__ */ jsx(Table.Td, { children: /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "light", color: getStatusColor6(company.status), children: company.status }) }),
|
|
32327
|
-
/* @__PURE__ */ jsx(Table.Td, { children: memberStage ? /* @__PURE__ */ jsx(Badge, { size: "sm", variant: "dot", color: getMemberStateColor2(memberStage.key, stageCatalog), children: memberStage.label }) : /* @__PURE__ */ jsx(Text, { size: "xs", c: "dimmed", children: "\u2014" }) }),
|
|
32328
|
-
/* @__PURE__ */ jsx(Table.Td, { children: formatDateTime4(company.createdAt) })
|
|
32329
|
-
] }, company.id);
|
|
32330
|
-
}) })
|
|
32331
|
-
] }) })
|
|
32332
|
-
]
|
|
32333
|
-
}
|
|
32334
|
-
);
|
|
32271
|
+
var LIST_DETAIL_TABS = ["overview", "members", "build", "runs"];
|
|
32272
|
+
function isListDetailTab(value) {
|
|
32273
|
+
return typeof value === "string" && LIST_DETAIL_TABS.includes(value);
|
|
32274
|
+
}
|
|
32275
|
+
function normalizeListDetailTab(value) {
|
|
32276
|
+
return isListDetailTab(value) ? value : "overview";
|
|
32335
32277
|
}
|
|
32336
32278
|
function ListDetailHeader({
|
|
32337
32279
|
title,
|
package/dist/components/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
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-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ProtectedRoute, AppearanceContext, AppShellError, useAppearance } from '../../chunk-
|
|
2
|
-
export { AccessGuard } from '../../chunk-
|
|
1
|
+
import { ProtectedRoute, AppearanceContext, AppShellError, useAppearance } from '../../chunk-5KPQPKGU.js';
|
|
2
|
+
export { AccessGuard } from '../../chunk-5KPQPKGU.js';
|
|
3
3
|
import '../../chunk-NZ2F5RQ4.js';
|
|
4
4
|
import '../../chunk-OJJK27GC.js';
|
|
5
5
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
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-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
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-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-
|
|
1
|
+
export { Dashboard, DashboardOperationsOverview, OperationsOverview, RecentExecutionsByResource, ResourceOverview, UnresolvedErrorsTeaser } from '../../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
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-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { EMPTY_LIST_ACTIONS, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenReadinessAlert, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListActionsProvider, ListBuilderIndexPage, ListBuilderPage, ORPHAN_STAGE_ORDER, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, deriveBusinessProgress, findListActionByAction, formatDate, getEnrichmentColor, getEnrichmentStatus, getLeadGenApiInterfaceReadiness, getLeadGenExportWorkflowId, getListActionWorkflowId, getStateKeyColor, getStatusColor, getStepActionLabel, isLeadGenExportAction, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, resolveBuildPlanSteps, resolveBuildState, sortStageKeys, useArtifacts, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateArtifact, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useDeriveActions, useLeadGenActionRegistry, useLeadGenBulkActions, useLeadGenConfig, useLeadGenHeaderActions, useLeadGenRowActions, useListActions, useListMember, useListMembers, useListProgress, useTransitionListCompany, useTransitionListMember, useUpdateCompany, useUpdateContact, useUpdateListStatus } from '../../chunk-
|
|
1
|
+
export { EMPTY_LIST_ACTIONS, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenReadinessAlert, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListActionsProvider, ListBuilderIndexPage, ListBuilderPage, ORPHAN_STAGE_ORDER, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, deriveBusinessProgress, findListActionByAction, formatDate, getEnrichmentColor, getEnrichmentStatus, getLeadGenApiInterfaceReadiness, getLeadGenExportWorkflowId, getListActionWorkflowId, getStateKeyColor, getStatusColor, getStepActionLabel, isLeadGenExportAction, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, resolveBuildPlanSteps, resolveBuildState, sortStageKeys, useArtifacts, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateArtifact, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useDeriveActions, useLeadGenActionRegistry, useLeadGenBulkActions, useLeadGenConfig, useLeadGenHeaderActions, useLeadGenRowActions, useListActions, useListMember, useListMembers, useListProgress, useTransitionListCompany, useTransitionListMember, useUpdateCompany, useUpdateContact, useUpdateListStatus } from '../../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ConfirmationModal, RequestModal, usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, PageTitleCaption, FilterBar, TableSelectionToolbar, CustomModal, useRequest, ContextViewer, JsonViewer } from '../../../chunk-
|
|
2
|
-
export { RequestActionIcon, RequestModal, requestTopbarActionManifest } from '../../../chunk-
|
|
1
|
+
import { ConfirmationModal, RequestModal, usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, PageTitleCaption, FilterBar, TableSelectionToolbar, CustomModal, useRequest, ContextViewer, JsonViewer } from '../../../chunk-5KPQPKGU.js';
|
|
2
|
+
export { RequestActionIcon, RequestModal, requestTopbarActionManifest } from '../../../chunk-5KPQPKGU.js';
|
|
3
3
|
import '../../../chunk-NZ2F5RQ4.js';
|
|
4
4
|
import '../../../chunk-OJJK27GC.js';
|
|
5
5
|
import '../../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionConversationView, SessionDetailsPanel, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionConversationView, SessionDetailsPanel, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-ZTWA5H77.js';
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
1
|
+
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
1
|
+
export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { createElevasisQueryClient } from './chunk-YM6LMYOE.js';
|
|
2
|
-
export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-BUVFSG7A.js';
|
|
2
|
+
export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-5KPQPKGU.js';
|
|
3
3
|
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride, useAvailablePresets, usePresetsContext } from './chunk-NZ2F5RQ4.js';
|
|
4
4
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground, generateShades, getPreset, PRESETS as presets } from './chunk-OJJK27GC.js';
|
|
5
5
|
import './chunk-ZTWA5H77.js';
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { getConceptDefinition, normaliseConceptKey, SemanticIcon, getKnowledgeIconToken, PageContainer, getKnowledgeGraphNodeCommand, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, findOmTreeGroup, SubshellContentContainer, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, SurfaceDefinitionSchema, RoleSchema, PolicySchema, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, buildKnowledgeOmTreeData, findKnowledgeTreeNodeByValue, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-
|
|
2
|
-
export { FILTERABLE_DOMAIN_KEYS, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, SemanticIcon, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent } from '../chunk-
|
|
1
|
+
import { getConceptDefinition, normaliseConceptKey, SemanticIcon, getKnowledgeIconToken, PageContainer, getKnowledgeGraphNodeCommand, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, findOmTreeGroup, SubshellContentContainer, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, SurfaceDefinitionSchema, RoleSchema, PolicySchema, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, buildKnowledgeOmTreeData, findKnowledgeTreeNodeByValue, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-5KPQPKGU.js';
|
|
2
|
+
export { FILTERABLE_DOMAIN_KEYS, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, SemanticIcon, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent } from '../chunk-5KPQPKGU.js';
|
|
3
3
|
import { usePresetsContext } from '../chunk-NZ2F5RQ4.js';
|
|
4
4
|
import '../chunk-OJJK27GC.js';
|
|
5
5
|
import '../chunk-ZTWA5H77.js';
|
package/dist/layout/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-
|
|
1
|
+
export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-
|
|
1
|
+
export { OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/dist/provider/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppearanceProvider, CrmActionsProvider, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, ListActionsProvider, NotificationProvider, SystemShell, createTestSystemsProvider, useAppearance, useCrmActions, useElevasisSystems, useListActions, useNotificationAdapter, useOptionalElevasisSystems, useResolvedOrganizationModel } from '../chunk-
|
|
1
|
+
export { AppearanceProvider, CrmActionsProvider, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, ListActionsProvider, NotificationProvider, SystemShell, createTestSystemsProvider, useAppearance, useCrmActions, useElevasisSystems, useListActions, useNotificationAdapter, useOptionalElevasisSystems, useResolvedOrganizationModel } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-
|
|
1
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-5KPQPKGU.js';
|
|
2
2
|
import '../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../chunk-OJJK27GC.js';
|
|
4
4
|
import '../chunk-ZTWA5H77.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.61.
|
|
3
|
+
"version": "2.61.3",
|
|
4
4
|
"description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -274,11 +274,11 @@
|
|
|
274
274
|
"typescript": "5.9.2",
|
|
275
275
|
"vite": "^7.0.0",
|
|
276
276
|
"vitest": "^3.2.4",
|
|
277
|
-
"@elevasis/sdk": "1.37.0",
|
|
278
277
|
"@repo/core": "0.53.0",
|
|
279
|
-
"@repo/
|
|
278
|
+
"@repo/typescript-config": "0.0.0",
|
|
280
279
|
"@repo/elevasis-core": "1.0.0",
|
|
281
|
-
"@repo/
|
|
280
|
+
"@repo/eslint-config": "0.0.0",
|
|
281
|
+
"@elevasis/sdk": "1.37.0"
|
|
282
282
|
},
|
|
283
283
|
"dependencies": {
|
|
284
284
|
"@dagrejs/dagre": "^1.1.4",
|