@elevasis/ui 2.2.1 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/{chunk-F6RBK7NJ.js → chunk-22UVE3RA.js} +1 -1
  2. package/dist/{chunk-O6KZ46EJ.js → chunk-2VEXBZNO.js} +5 -5
  3. package/dist/{chunk-2JTCPVZX.js → chunk-3MQKSLZ7.js} +2 -2
  4. package/dist/{chunk-3WMJWXZY.js → chunk-47YILFON.js} +96 -68
  5. package/dist/{chunk-J5TBNCMD.js → chunk-IPRMGSCV.js} +4 -4
  6. package/dist/{chunk-MZPVNRPL.js → chunk-ISHNN42L.js} +134 -10
  7. package/dist/{chunk-LH7RCX4Y.js → chunk-JT7WDIZI.js} +2 -2
  8. package/dist/{chunk-JT3FN6TE.js → chunk-PEZ4WOPF.js} +2 -2
  9. package/dist/{chunk-YOZEGIZA.js → chunk-U2CEWNXK.js} +3893 -1559
  10. package/dist/{chunk-M66JAN7R.js → chunk-VNUOQQNY.js} +1 -1
  11. package/dist/{chunk-5KBVISVJ.js → chunk-WN764MR7.js} +3 -3
  12. package/dist/{chunk-PFONCU6C.js → chunk-ZG7MLOBE.js} +1 -1
  13. package/dist/components/index.css +17 -14
  14. package/dist/components/index.d.ts +12 -1
  15. package/dist/components/index.js +852 -43
  16. package/dist/features/auth/index.css +17 -14
  17. package/dist/features/dashboard/index.css +17 -14
  18. package/dist/features/dashboard/index.d.ts +4 -0
  19. package/dist/features/dashboard/index.js +7 -7
  20. package/dist/features/monitoring/index.css +17 -14
  21. package/dist/features/monitoring/index.d.ts +4 -0
  22. package/dist/features/monitoring/index.js +8 -8
  23. package/dist/features/operations/index.css +17 -14
  24. package/dist/features/operations/index.d.ts +26 -14
  25. package/dist/features/operations/index.js +9 -9
  26. package/dist/features/settings/index.css +17 -14
  27. package/dist/features/settings/index.d.ts +4 -0
  28. package/dist/features/settings/index.js +8 -8
  29. package/dist/graph/index.css +0 -14
  30. package/dist/graph/index.js +1 -1
  31. package/dist/hooks/index.css +17 -14
  32. package/dist/hooks/index.d.ts +4 -1
  33. package/dist/hooks/index.js +6 -6
  34. package/dist/hooks/published.css +17 -14
  35. package/dist/hooks/published.d.ts +4 -1
  36. package/dist/hooks/published.js +5 -5
  37. package/dist/index.css +17 -14
  38. package/dist/index.d.ts +307 -249
  39. package/dist/index.js +7 -7
  40. package/dist/provider/index.css +7 -0
  41. package/dist/provider/index.d.ts +58 -2
  42. package/dist/provider/index.js +3 -3
  43. package/dist/provider/published.d.ts +58 -2
  44. package/dist/provider/published.js +1 -1
  45. package/dist/theme/index.js +2 -2
  46. package/package.json +9 -3
package/dist/index.d.ts CHANGED
@@ -6911,255 +6911,46 @@ declare function ScrollToTop(): react_jsx_runtime.JSX.Element;
6911
6911
  */
6912
6912
  declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, notifications, children }: ElevasisCoreProviderProps): react_jsx_runtime.JSX.Element;
6913
6913
 
6914
- interface EventSourceMessage {
6915
- id: string;
6916
- event: string;
6917
- data: string;
6918
- retry?: number;
6919
- }
6920
-
6921
- interface FetchEventSourceWithTokenRefreshOptions {
6922
- url: string;
6923
- getToken: () => Promise<string | undefined>;
6924
- headers?: Record<string, string>;
6925
- signal: AbortSignal;
6926
- /** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
6927
- tokenRefreshDelayMs?: number;
6928
- onopen?: (response: Response) => void | Promise<void>;
6929
- onmessage?: (event: EventSourceMessage) => void;
6930
- onerror?: (error: unknown) => void;
6931
- onclose?: () => void;
6932
- }
6933
-
6934
- interface SSEConnectionManagerLike {
6935
- subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
6936
- closeConnection(key: string): void;
6937
- getConnectionInfo(): Map<string, {
6938
- url: string;
6939
- subscribers: number;
6940
- }>;
6941
- }
6942
-
6943
- interface FeatureNavLink {
6944
- label: string;
6945
- link: string;
6946
- featureKey?: string;
6947
- onClick?: () => void;
6948
- links?: FeatureNavLink[];
6949
- }
6950
- interface FeatureNavEntry {
6951
- label: string;
6952
- icon: ComponentType;
6953
- link?: string;
6954
- featureKey?: string;
6955
- requiresAdmin?: boolean;
6956
- dataOnboardingTourId?: string;
6957
- links?: FeatureNavLink[];
6958
- }
6959
- type FeatureSidebarComponent = ComponentType;
6960
- interface FeatureModule {
6961
- key: string;
6962
- label?: string;
6963
- navEntry?: FeatureNavEntry;
6964
- sidebar?: FeatureSidebarComponent;
6965
- subshellRoutes?: string[];
6966
- }
6967
- type FeatureRouteState = 'enabled' | 'disabled' | 'missing';
6968
- interface FeatureRouteResolution {
6969
- state: FeatureRouteState;
6970
- path: string;
6971
- feature?: FeatureModule;
6972
- navEntry?: FeatureNavEntry;
6973
- navLink?: FeatureNavLink;
6974
- }
6975
- interface FeatureRegistry {
6976
- features: FeatureModule[];
6977
- }
6978
- interface ElevasisFeaturesProviderProps {
6979
- features: FeatureModule[];
6980
- timeRange?: TimeRange;
6981
- operationsApiUrl?: string;
6982
- operationsSSEManager?: SSEConnectionManagerLike;
6983
- disabledSubsectionPaths?: string[];
6984
- children: ReactNode;
6985
- }
6986
- interface ElevasisFeaturesContextValue {
6987
- navItems: FeatureNavEntry[];
6988
- enabledFeatures: FeatureModule[];
6989
- allFeatures: FeatureModule[];
6990
- timeRange?: TimeRange;
6991
- operationsApiUrl?: string;
6992
- operationsSSEManager?: SSEConnectionManagerLike;
6993
- disabledSubsectionPaths: string[];
6994
- isFeatureEnabled: (key: string) => boolean;
6995
- getFeature: (key: string) => FeatureModule | undefined;
6996
- resolveNavRoute: (path: string) => FeatureRouteResolution;
6997
- }
6998
-
6999
- declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
7000
- declare function useOptionalElevasisFeatures(): ElevasisFeaturesContextValue | null;
7001
- declare function ElevasisFeaturesProvider({ features, timeRange, operationsApiUrl, operationsSSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
7002
-
7003
- declare function FeatureShell({ children }: {
7004
- children: ReactNode;
7005
- }): react_jsx_runtime.JSX.Element;
7006
-
7007
- interface AppearanceConfig {
7008
- /** Background layers rendered behind app content. Defaults to Elevasis background. */
7009
- background?: ReactNode;
7010
- /** Loader element rendered during loading states. Defaults to Elevasis chevron loader. */
7011
- loader?: ReactNode;
7012
- }
7013
- declare function AppearanceProvider({ value, children }: {
7014
- value: Required<AppearanceConfig>;
7015
- children: ReactNode;
7016
- }): react_jsx_runtime.JSX.Element;
7017
- declare function useAppearance(): Required<AppearanceConfig>;
7018
-
7019
- /**
7020
- * Hook to access the ElevasisServiceProvider context.
7021
- * Provides apiRequest, organizationId, and isReady.
7022
- *
7023
- * Throws if used outside of an ElevasisServiceProvider or ElevasisUIProvider (with apiUrl).
7024
- */
7025
- declare function useElevasisServices(): ElevasisServiceContextValue;
7026
- /**
7027
- * Standalone service provider for testing, embedding, or advanced consumers.
7028
- *
7029
- * Accepts apiRequest, organizationId, and isReady directly as props.
7030
- * ElevasisUIProvider composes this internally when apiUrl is provided.
7031
- *
7032
- * @example Testing
7033
- * ```tsx
7034
- * <ElevasisServiceProvider apiRequest={mockApiRequest} organizationId="org-1" isReady={true}>
7035
- * <ComponentUnderTest />
7036
- * </ElevasisServiceProvider>
7037
- * ```
7038
- *
7039
- * @example Embedding
7040
- * ```tsx
7041
- * <ElevasisServiceProvider apiRequest={myFetcher} organizationId={orgId} isReady={!!orgId}>
7042
- * <CommandQueuePanel />
7043
- * </ElevasisServiceProvider>
7044
- * ```
7045
- */
7046
- declare function ElevasisServiceProvider({ apiRequest, organizationId, isReady, children }: ElevasisServiceProviderProps): react_jsx_runtime.JSX.Element;
7047
-
7048
- /**
7049
- * Mantine-specific theme config — extends the headless core config with
7050
- * visual appearance and a full Mantine theme override escape hatch.
7051
- */
7052
- interface ElevasisThemeConfig extends ElevasisCoreThemeConfig {
7053
- /** Full Mantine theme override — merged on top of Elevasis defaults. */
7054
- mantine?: MantineThemeOverride;
7055
- /** Background layers rendered behind app content. Defaults to Elevasis background (PerspectiveGrid + RadiantGlow + FloatingOrbs + FilmGrain). */
7056
- background?: ReactNode;
7057
- /** Loader element rendered during loading states. Defaults to Elevasis chevron loader (xl). */
7058
- loader?: ReactNode;
7059
- }
7060
- /**
7061
- * Props for ElevasisUIProvider (Mantine variant).
7062
- * Extends ElevasisCoreProviderProps with Mantine-aware theme config.
7063
- */
7064
- interface ElevasisUIProviderProps extends Omit<ElevasisCoreProviderProps, 'theme' | 'notifications'> {
7065
- theme?: ElevasisThemeConfig;
7066
- }
7067
- declare function ElevasisUIProvider({ theme, children, ...coreProps }: ElevasisUIProviderProps): react_jsx_runtime.JSX.Element;
7068
-
7069
- declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeRange, priorityMin, priorityMax, }?: {
7070
- status?: TaskStatus$1;
7071
- limit?: number;
7072
- offset?: number;
7073
- humanCheckpoint?: string;
7074
- timeRange?: TimeRange;
7075
- priorityMin?: number;
7076
- priorityMax?: number;
7077
- }): _tanstack_react_query.UseQueryResult<{
7078
- createdAt: Date;
7079
- completedAt: Date | undefined;
7080
- expiresAt: Date | undefined;
7081
- id: string;
7082
- organizationId: string;
7083
- actions: ActionConfig[];
7084
- context: unknown;
7085
- selectedAction?: string;
7086
- actionPayload?: unknown;
7087
- description?: string;
7088
- priority: number;
7089
- humanCheckpoint?: string;
7090
- status: TaskStatus$1;
7091
- targetResourceId?: string;
7092
- targetResourceType?: "agent" | "workflow";
7093
- targetExecutionId?: string;
7094
- completedBy?: string;
7095
- idempotencyKey?: string | null;
7096
- originExecutionId: string;
7097
- originResourceType: OriginResourceType;
7098
- originResourceId: string;
7099
- }[], Error>;
7100
-
7101
- interface SubmitActionRequest {
7102
- taskId: string;
7103
- actionId: string;
7104
- payload?: unknown;
7105
- notes?: string;
7106
- }
7107
- interface OptimisticContext {
7108
- previousData: Map<readonly unknown[], Task[] | undefined>;
7109
- }
7110
- interface ExecutionErrorDetails {
7111
- message: string;
7112
- type: string;
7113
- severity: 'critical' | 'warning' | 'info';
7114
- category: 'llm' | 'tool' | 'workflow' | 'agent' | 'validation' | 'system';
7115
- details?: string;
7116
- }
7117
- interface SubmitActionResponse {
7118
- task: unknown;
7119
- execution?: {
7120
- executionId: string;
7121
- success: boolean;
7122
- data?: unknown;
7123
- error?: ExecutionErrorDetails;
7124
- };
7125
- }
7126
- declare function useSubmitAction(): _tanstack_react_query.UseMutationResult<SubmitActionResponse, Error, SubmitActionRequest, OptimisticContext>;
7127
-
7128
- declare function useDeleteTask$1(): _tanstack_react_query.UseMutationResult<void, Error, string, {
7129
- previousData: Map<readonly unknown[], Task[] | undefined>;
7130
- }>;
7131
-
7132
- interface UseCommandQueueTotalsOptions {
7133
- timeRange?: TimeRange;
7134
- priorityMin?: number;
7135
- priorityMax?: number;
7136
- /** When set, priorityCounts are scoped to this status only */
7137
- status?: 'pending' | 'completed' | 'expired';
7138
- }
7139
- /**
7140
- * Fetches command queue totals and checkpoint groupings
7141
- *
7142
- * Returns distinct human checkpoints with task counts and status breakdown.
7143
- * Used for sidebar grouping and donut charts (true totals, not paginated).
7144
- */
7145
- declare function useCommandQueueTotals({ timeRange, priorityMin, priorityMax, status }?: UseCommandQueueTotalsOptions): _tanstack_react_query.UseQueryResult<CheckpointListResponse, Error>;
6914
+ declare const FeatureKeySchema = z.enum([
6915
+ 'acquisition',
6916
+ 'delivery',
6917
+ 'operations',
6918
+ 'monitoring',
6919
+ 'settings',
6920
+ 'seo',
6921
+ 'calibration'
6922
+ ])
6923
+
6924
+ declare const SurfaceDefinitionSchema = z.object({
6925
+ id: ModelIdSchema,
6926
+ label: LabelSchema,
6927
+ path: PathSchema,
6928
+ surfaceType: SurfaceTypeSchema,
6929
+ description: DescriptionSchema.optional(),
6930
+ icon: IconNameSchema.optional(),
6931
+ featureKey: FeatureKeySchema.optional(),
6932
+ domainIds: ReferenceIdsSchema,
6933
+ entityIds: ReferenceIdsSchema,
6934
+ resourceIds: ReferenceIdsSchema,
6935
+ capabilityIds: ReferenceIdsSchema,
6936
+ parentId: ModelIdSchema.optional()
6937
+ })
7146
6938
 
7147
- declare function usePatchTask(): _tanstack_react_query.UseMutationResult<Task, Error, {
7148
- taskId: string;
7149
- params: PatchTaskParams;
7150
- }, unknown>;
6939
+ declare const OrganizationModelSchema = z.object({
6940
+ version: z.literal(1).default(1),
6941
+ domains: z.array(SemanticDomainSchema).default([]),
6942
+ branding: OrganizationModelBrandingSchema,
6943
+ features: OrganizationModelFeaturesSchema,
6944
+ navigation: OrganizationModelNavigationSchema,
6945
+ crm: OrganizationModelCrmSchema,
6946
+ leadGen: OrganizationModelLeadGenSchema,
6947
+ delivery: OrganizationModelDeliverySchema,
6948
+ resourceMappings: z.array(ResourceMappingSchema).default([])
6949
+ })
7151
6950
 
7152
- /**
7153
- * Query key factory for executions TanStack Query hooks.
7154
- * Uses organization UUID (not name) for cache isolation.
7155
- */
7156
- declare const executionsKeys: {
7157
- all: readonly ["executions"];
7158
- resources: (orgId: string | null) => readonly ["executions", "resources", string | null];
7159
- resourceDefinition: (orgId: string | null, resourceId: string) => readonly ["executions", "definition", string | null, string];
7160
- executions: (orgId: string | null, resourceId: string) => readonly ["executions", "list", string | null, string];
7161
- execution: (orgId: string | null, resourceId: string, executionId: string) => readonly ["executions", "execution", string | null, string, string];
7162
- };
6951
+ type OrganizationModel = z.infer<typeof OrganizationModelSchema>
6952
+ type OrganizationModelFeatureKey = z.infer<typeof FeatureKeySchema>
6953
+ type OrganizationModelSurface = z.infer<typeof SurfaceDefinitionSchema>
7163
6954
 
7164
6955
  /**
7165
6956
  * Workflow-specific logging types and utilities
@@ -10016,6 +9807,270 @@ type ResourceStatus = 'dev' | 'prod'
10016
9807
  */
10017
9808
  type ResourceType = 'agent' | 'workflow' | 'trigger' | 'integration' | 'external' | 'human'
10018
9809
 
9810
+ interface EventSourceMessage {
9811
+ id: string;
9812
+ event: string;
9813
+ data: string;
9814
+ retry?: number;
9815
+ }
9816
+
9817
+ interface FetchEventSourceWithTokenRefreshOptions {
9818
+ url: string;
9819
+ getToken: () => Promise<string | undefined>;
9820
+ headers?: Record<string, string>;
9821
+ signal: AbortSignal;
9822
+ /** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
9823
+ tokenRefreshDelayMs?: number;
9824
+ onopen?: (response: Response) => void | Promise<void>;
9825
+ onmessage?: (event: EventSourceMessage) => void;
9826
+ onerror?: (error: unknown) => void;
9827
+ onclose?: () => void;
9828
+ }
9829
+
9830
+ interface SSEConnectionManagerLike {
9831
+ subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
9832
+ closeConnection(key: string): void;
9833
+ getConnectionInfo(): Map<string, {
9834
+ url: string;
9835
+ subscribers: number;
9836
+ }>;
9837
+ }
9838
+
9839
+ interface FeatureNavLink {
9840
+ label: string;
9841
+ link: string;
9842
+ featureKey?: string;
9843
+ onClick?: () => void;
9844
+ links?: FeatureNavLink[];
9845
+ }
9846
+ interface FeatureNavEntry {
9847
+ label: string;
9848
+ icon: ComponentType;
9849
+ link?: string;
9850
+ featureKey?: string;
9851
+ requiresAdmin?: boolean;
9852
+ dataOnboardingTourId?: string;
9853
+ links?: FeatureNavLink[];
9854
+ }
9855
+ type FeatureSidebarComponent = ComponentType;
9856
+ interface FeatureModule {
9857
+ key: string;
9858
+ label?: string;
9859
+ navEntry?: FeatureNavEntry;
9860
+ sidebar?: FeatureSidebarComponent;
9861
+ subshellRoutes?: string[];
9862
+ organizationGraph?: OrganizationGraphFeatureBridge;
9863
+ }
9864
+ interface OrganizationGraphFeatureBridge {
9865
+ surfaceId: string;
9866
+ }
9867
+ interface OrganizationGraphContextValue {
9868
+ available: boolean;
9869
+ surfaceId?: string;
9870
+ surfacePath?: string;
9871
+ surfaceType?: OrganizationModelSurface['surfaceType'];
9872
+ featureKey?: OrganizationModelFeatureKey;
9873
+ }
9874
+ type FeatureRouteState = 'enabled' | 'disabled' | 'missing';
9875
+ interface FeatureRouteResolution {
9876
+ state: FeatureRouteState;
9877
+ path: string;
9878
+ feature?: FeatureModule;
9879
+ navEntry?: FeatureNavEntry;
9880
+ navLink?: FeatureNavLink;
9881
+ }
9882
+ interface FeatureRegistry {
9883
+ features: FeatureModule[];
9884
+ }
9885
+ interface ElevasisFeaturesProviderProps {
9886
+ features: FeatureModule[];
9887
+ organizationModel?: OrganizationModel;
9888
+ timeRange?: TimeRange;
9889
+ operationsApiUrl?: string;
9890
+ operationsSSEManager?: SSEConnectionManagerLike;
9891
+ disabledSubsectionPaths?: string[];
9892
+ children: ReactNode;
9893
+ }
9894
+ interface ElevasisFeaturesContextValue {
9895
+ navItems: FeatureNavEntry[];
9896
+ enabledFeatures: FeatureModule[];
9897
+ allFeatures: FeatureModule[];
9898
+ organizationGraph: OrganizationGraphContextValue;
9899
+ organizationModel?: OrganizationModel;
9900
+ timeRange?: TimeRange;
9901
+ operationsApiUrl?: string;
9902
+ operationsSSEManager?: SSEConnectionManagerLike;
9903
+ disabledSubsectionPaths: string[];
9904
+ isFeatureEnabled: (key: string) => boolean;
9905
+ getFeature: (key: string) => FeatureModule | undefined;
9906
+ resolveNavRoute: (path: string) => FeatureRouteResolution;
9907
+ }
9908
+
9909
+ declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
9910
+ declare function useOptionalElevasisFeatures(): ElevasisFeaturesContextValue | null;
9911
+ declare function ElevasisFeaturesProvider({ features, organizationModel, timeRange, operationsApiUrl, operationsSSEManager, disabledSubsectionPaths, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
9912
+
9913
+ declare function FeatureShell({ children }: {
9914
+ children: ReactNode;
9915
+ }): react_jsx_runtime.JSX.Element;
9916
+
9917
+ interface AppearanceConfig {
9918
+ /** Background layers rendered behind app content. Defaults to Elevasis background. */
9919
+ background?: ReactNode;
9920
+ /** Loader element rendered during loading states. Defaults to Elevasis chevron loader. */
9921
+ loader?: ReactNode;
9922
+ }
9923
+ declare function AppearanceProvider({ value, children }: {
9924
+ value: Required<AppearanceConfig>;
9925
+ children: ReactNode;
9926
+ }): react_jsx_runtime.JSX.Element;
9927
+ declare function useAppearance(): Required<AppearanceConfig>;
9928
+
9929
+ /**
9930
+ * Hook to access the ElevasisServiceProvider context.
9931
+ * Provides apiRequest, organizationId, and isReady.
9932
+ *
9933
+ * Throws if used outside of an ElevasisServiceProvider or ElevasisUIProvider (with apiUrl).
9934
+ */
9935
+ declare function useElevasisServices(): ElevasisServiceContextValue;
9936
+ /**
9937
+ * Standalone service provider for testing, embedding, or advanced consumers.
9938
+ *
9939
+ * Accepts apiRequest, organizationId, and isReady directly as props.
9940
+ * ElevasisUIProvider composes this internally when apiUrl is provided.
9941
+ *
9942
+ * @example Testing
9943
+ * ```tsx
9944
+ * <ElevasisServiceProvider apiRequest={mockApiRequest} organizationId="org-1" isReady={true}>
9945
+ * <ComponentUnderTest />
9946
+ * </ElevasisServiceProvider>
9947
+ * ```
9948
+ *
9949
+ * @example Embedding
9950
+ * ```tsx
9951
+ * <ElevasisServiceProvider apiRequest={myFetcher} organizationId={orgId} isReady={!!orgId}>
9952
+ * <CommandQueuePanel />
9953
+ * </ElevasisServiceProvider>
9954
+ * ```
9955
+ */
9956
+ declare function ElevasisServiceProvider({ apiRequest, organizationId, isReady, children }: ElevasisServiceProviderProps): react_jsx_runtime.JSX.Element;
9957
+
9958
+ /**
9959
+ * Mantine-specific theme config — extends the headless core config with
9960
+ * visual appearance and a full Mantine theme override escape hatch.
9961
+ */
9962
+ interface ElevasisThemeConfig extends ElevasisCoreThemeConfig {
9963
+ /** Full Mantine theme override — merged on top of Elevasis defaults. */
9964
+ mantine?: MantineThemeOverride;
9965
+ /** Background layers rendered behind app content. Defaults to Elevasis background (PerspectiveGrid + RadiantGlow + FloatingOrbs + FilmGrain). */
9966
+ background?: ReactNode;
9967
+ /** Loader element rendered during loading states. Defaults to Elevasis chevron loader (xl). */
9968
+ loader?: ReactNode;
9969
+ }
9970
+ /**
9971
+ * Props for ElevasisUIProvider (Mantine variant).
9972
+ * Extends ElevasisCoreProviderProps with Mantine-aware theme config.
9973
+ */
9974
+ interface ElevasisUIProviderProps extends Omit<ElevasisCoreProviderProps, 'theme' | 'notifications'> {
9975
+ theme?: ElevasisThemeConfig;
9976
+ }
9977
+ declare function ElevasisUIProvider({ theme, children, ...coreProps }: ElevasisUIProviderProps): react_jsx_runtime.JSX.Element;
9978
+
9979
+ declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeRange, priorityMin, priorityMax, }?: {
9980
+ status?: TaskStatus$1;
9981
+ limit?: number;
9982
+ offset?: number;
9983
+ humanCheckpoint?: string;
9984
+ timeRange?: TimeRange;
9985
+ priorityMin?: number;
9986
+ priorityMax?: number;
9987
+ }): _tanstack_react_query.UseQueryResult<{
9988
+ createdAt: Date;
9989
+ completedAt: Date | undefined;
9990
+ expiresAt: Date | undefined;
9991
+ id: string;
9992
+ organizationId: string;
9993
+ actions: ActionConfig[];
9994
+ context: unknown;
9995
+ selectedAction?: string;
9996
+ actionPayload?: unknown;
9997
+ description?: string;
9998
+ priority: number;
9999
+ humanCheckpoint?: string;
10000
+ status: TaskStatus$1;
10001
+ targetResourceId?: string;
10002
+ targetResourceType?: "agent" | "workflow";
10003
+ targetExecutionId?: string;
10004
+ completedBy?: string;
10005
+ idempotencyKey?: string | null;
10006
+ originExecutionId: string;
10007
+ originResourceType: OriginResourceType;
10008
+ originResourceId: string;
10009
+ }[], Error>;
10010
+
10011
+ interface SubmitActionRequest {
10012
+ taskId: string;
10013
+ actionId: string;
10014
+ payload?: unknown;
10015
+ notes?: string;
10016
+ }
10017
+ interface OptimisticContext {
10018
+ previousData: Map<readonly unknown[], Task[] | undefined>;
10019
+ }
10020
+ interface ExecutionErrorDetails {
10021
+ message: string;
10022
+ type: string;
10023
+ severity: 'critical' | 'warning' | 'info';
10024
+ category: 'llm' | 'tool' | 'workflow' | 'agent' | 'validation' | 'system';
10025
+ details?: string;
10026
+ }
10027
+ interface SubmitActionResponse {
10028
+ task: unknown;
10029
+ execution?: {
10030
+ executionId: string;
10031
+ success: boolean;
10032
+ data?: unknown;
10033
+ error?: ExecutionErrorDetails;
10034
+ };
10035
+ }
10036
+ declare function useSubmitAction(): _tanstack_react_query.UseMutationResult<SubmitActionResponse, Error, SubmitActionRequest, OptimisticContext>;
10037
+
10038
+ declare function useDeleteTask$1(): _tanstack_react_query.UseMutationResult<void, Error, string, {
10039
+ previousData: Map<readonly unknown[], Task[] | undefined>;
10040
+ }>;
10041
+
10042
+ interface UseCommandQueueTotalsOptions {
10043
+ timeRange?: TimeRange;
10044
+ priorityMin?: number;
10045
+ priorityMax?: number;
10046
+ /** When set, priorityCounts are scoped to this status only */
10047
+ status?: 'pending' | 'completed' | 'expired';
10048
+ }
10049
+ /**
10050
+ * Fetches command queue totals and checkpoint groupings
10051
+ *
10052
+ * Returns distinct human checkpoints with task counts and status breakdown.
10053
+ * Used for sidebar grouping and donut charts (true totals, not paginated).
10054
+ */
10055
+ declare function useCommandQueueTotals({ timeRange, priorityMin, priorityMax, status }?: UseCommandQueueTotalsOptions): _tanstack_react_query.UseQueryResult<CheckpointListResponse, Error>;
10056
+
10057
+ declare function usePatchTask(): _tanstack_react_query.UseMutationResult<Task, Error, {
10058
+ taskId: string;
10059
+ params: PatchTaskParams;
10060
+ }, unknown>;
10061
+
10062
+ /**
10063
+ * Query key factory for executions TanStack Query hooks.
10064
+ * Uses organization UUID (not name) for cache isolation.
10065
+ */
10066
+ declare const executionsKeys: {
10067
+ all: readonly ["executions"];
10068
+ resources: (orgId: string | null) => readonly ["executions", "resources", string | null];
10069
+ resourceDefinition: (orgId: string | null, resourceId: string) => readonly ["executions", "definition", string | null, string];
10070
+ executions: (orgId: string | null, resourceId: string) => readonly ["executions", "list", string | null, string];
10071
+ execution: (orgId: string | null, resourceId: string, executionId: string) => readonly ["executions", "execution", string | null, string, string];
10072
+ };
10073
+
10019
10074
  // Execution status type shared between API and UI
10020
10075
  type ExecutionStatus = 'pending' | 'running' | 'completed' | 'failed' | 'warning'
10021
10076
 
@@ -11849,6 +11904,9 @@ declare function useDeploymentDocs(selectedDeploymentId?: string): {
11849
11904
  */
11850
11905
  declare function useCommandViewData(): _tanstack_react_query.UseQueryResult<CommandViewData, Error>;
11851
11906
 
11907
+ interface UseCommandViewStatsOptions {
11908
+ enabled?: boolean;
11909
+ }
11852
11910
  /**
11853
11911
  * Fetches Command View stats for the current organization
11854
11912
  *
@@ -11858,7 +11916,7 @@ declare function useCommandViewData(): _tanstack_react_query.UseQueryResult<Comm
11858
11916
  * @param timeRange - Time range for stats aggregation ('24h' or '7d')
11859
11917
  * @returns TanStack Query result with CommandViewStatsResponse
11860
11918
  */
11861
- declare function useCommandViewStats(timeRange?: StatsTimeRange): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
11919
+ declare function useCommandViewStats(timeRange?: StatsTimeRange, options?: UseCommandViewStatsOptions): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
11862
11920
 
11863
11921
  /**
11864
11922
  * Command View Types
@@ -13683,4 +13741,4 @@ declare function InitializationProvider({ children }: {
13683
13741
  }): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
13684
13742
 
13685
13743
  export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calculateBarPosition, calculateGraphHeight, calibrationKeys, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectKeys, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAgentIterationData, useAllCalibrationProjects, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphHighlighting, useGraphStats, useInitialization, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectNotes, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
13686
- export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureRouteResolution, FeatureRouteState, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
13744
+ export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureRouteResolution, FeatureRouteState, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
package/dist/index.js CHANGED
@@ -1,14 +1,14 @@
1
1
  import './chunk-XCYKC6OZ.js';
2
- export { useAvailablePresets } from './chunk-M66JAN7R.js';
3
- export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from './chunk-JT3FN6TE.js';
4
- export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from './chunk-J5TBNCMD.js';
2
+ export { useAvailablePresets } from './chunk-VNUOQQNY.js';
3
+ export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from './chunk-PEZ4WOPF.js';
4
+ export { OperationsService, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateCompany, useCreateContact, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteCompanies, useDeleteContacts, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from './chunk-IPRMGSCV.js';
5
5
  export { observabilityKeys, useErrorTrends } from './chunk-LXHZYSMQ.js';
6
- export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-F6RBK7NJ.js';
6
+ export { GRAPH_CONSTANTS, calculateGraphHeight, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-22UVE3RA.js';
7
7
  export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-XA34RETF.js';
8
- export { ElevasisUIProvider } from './chunk-LH7RCX4Y.js';
9
- export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-3WMJWXZY.js';
8
+ export { ElevasisUIProvider } from './chunk-JT7WDIZI.js';
9
+ export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from './chunk-47YILFON.js';
10
10
  import './chunk-CYXZHBP4.js';
11
- export { ElevasisCoreProvider, ElevasisFeaturesProvider, FeatureShell, NotificationProvider, createUseFeatureAccess, useElevasisFeatures, useNotificationAdapter, useOptionalElevasisFeatures } from './chunk-MZPVNRPL.js';
11
+ export { ElevasisCoreProvider, ElevasisFeaturesProvider, FeatureShell, NotificationProvider, createUseFeatureAccess, useElevasisFeatures, useNotificationAdapter, useOptionalElevasisFeatures } from './chunk-ISHNN42L.js';
12
12
  import './chunk-RX4UWZZR.js';
13
13
  import './chunk-Y3D3WFJG.js';
14
14
  import './chunk-3KMDHCAR.js';
@@ -196,3 +196,10 @@
196
196
  .recharts-surface:focus {
197
197
  outline: none;
198
198
  }
199
+ .hide-scrollbar {
200
+ scrollbar-width: none;
201
+ -ms-overflow-style: none;
202
+ }
203
+ .hide-scrollbar::-webkit-scrollbar {
204
+ display: none;
205
+ }