@elevasis/ui 1.28.0 → 1.28.2

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.
@@ -6765,51 +6765,9 @@ interface FetchEventSourceWithTokenRefreshOptions {
6765
6765
  onclose?: () => void;
6766
6766
  }
6767
6767
 
6768
- interface SSEConnectionManagerOptions {
6769
- /** Grace period in ms before closing idle connections. Defaults to 5000. */
6770
- closeGracePeriodMs?: number;
6771
- }
6772
- /**
6773
- * SSE Connection Manager
6774
- *
6775
- * Ensures only ONE SSE connection exists per endpoint, preventing duplicate
6776
- * connections when components re-render or remount.
6777
- *
6778
- * Benefits:
6779
- * - Prevents resource waste from duplicate connections
6780
- * - Eliminates race conditions from overlapping connections
6781
- * - Automatically manages connection lifecycle
6782
- * - Shares single connection across multiple subscribers
6783
- */
6784
- declare class SSEConnectionManager {
6785
- private connections;
6786
- private closeGracePeriodMs;
6787
- constructor(options?: SSEConnectionManagerOptions);
6788
- /**
6789
- * Subscribe to an SSE endpoint
6790
- *
6791
- * If a connection already exists for this endpoint, reuses it.
6792
- * Otherwise, creates a new connection.
6793
- *
6794
- * @param key - Unique identifier for the connection (e.g., 'notifications', 'resource-executive-agent')
6795
- * @param subscriberId - Unique identifier for this subscriber (usually component instance)
6796
- * @param options - SSE connection options
6797
- * @returns Unsubscribe function to call when component unmounts
6798
- */
6768
+ interface SSEConnectionManagerLike {
6799
6769
  subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
6800
- /**
6801
- * Unsubscribe from an SSE endpoint
6802
- *
6803
- * If this is the last subscriber, closes the connection after grace period.
6804
- */
6805
- private unsubscribe;
6806
- /**
6807
- * Force close a connection and all its subscribers
6808
- */
6809
6770
  closeConnection(key: string): void;
6810
- /**
6811
- * Get current connection status
6812
- */
6813
6771
  getConnectionInfo(): Map<string, {
6814
6772
  url: string;
6815
6773
  subscribers: number;
@@ -6817,7 +6775,7 @@ declare class SSEConnectionManager {
6817
6775
  }
6818
6776
 
6819
6777
  interface UseSSEConnectionOptions {
6820
- manager: SSEConnectionManager;
6778
+ manager: SSEConnectionManagerLike;
6821
6779
  /** Shared connection key — all subscribers with the same key share ONE connection. */
6822
6780
  connectionKey: string;
6823
6781
  url: string;
@@ -7027,7 +6985,7 @@ declare const operationsKeys: {
7027
6985
  session: (org: string, sessionId: string) => readonly ["operations", "session", string, string];
7028
6986
  };
7029
6987
 
7030
- declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManager, apiUrl: string): {
6988
+ declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManagerLike, apiUrl: string): {
7031
6989
  liveExecutions: Set<string>;
7032
6990
  connected: boolean;
7033
6991
  error: string | null;
@@ -7038,7 +6996,7 @@ declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionMa
7038
6996
 
7039
6997
  interface UseExecutionPanelStateOptions {
7040
6998
  resourceId: string;
7041
- manager: SSEConnectionManager;
6999
+ manager: SSEConnectionManagerLike;
7042
7000
  /**
7043
7001
  * Base URL of the API server (e.g. 'https://api.elevasis.io' or 'http://localhost:5170').
7044
7002
  * Provided by the consuming app -- the library does not read environment variables directly.
@@ -7481,7 +7439,7 @@ interface CalibrationProgress {
7481
7439
  }
7482
7440
  interface UseCalibrationSSEOptions {
7483
7441
  runId: string;
7484
- manager: SSEConnectionManager;
7442
+ manager: SSEConnectionManagerLike;
7485
7443
  apiUrl: string;
7486
7444
  enabled?: boolean;
7487
7445
  }
@@ -7608,6 +7566,351 @@ interface CompleteDealTaskParams {
7608
7566
  */
7609
7567
  declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
7610
7568
 
7569
+ declare const acquisitionListKeys: {
7570
+ all: readonly ["acquisition-lists"];
7571
+ list: (organizationId: string | null) => readonly ["acquisition-lists", string | null];
7572
+ detail: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", string | null, string];
7573
+ telemetry: (organizationId: string | null) => readonly ["acquisition-lists", "telemetry", string | null];
7574
+ progress: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "progress", string | null, string];
7575
+ executions: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "executions", string | null, string];
7576
+ };
7577
+ declare function useLists(): _tanstack_react_query.UseQueryResult<{
7578
+ id: string;
7579
+ organizationId: string;
7580
+ name: string;
7581
+ description: string | null;
7582
+ type: string;
7583
+ batchIds: string[];
7584
+ instantlyCampaignId: string | null;
7585
+ status: string;
7586
+ metadata: Record<string, unknown>;
7587
+ launchedAt: string | null;
7588
+ completedAt: string | null;
7589
+ createdAt: string;
7590
+ config: {
7591
+ qualification: {
7592
+ targetDescription: string;
7593
+ minReviewCount: number;
7594
+ minRating: number;
7595
+ excludeFranchises: boolean;
7596
+ customRules: string;
7597
+ };
7598
+ enrichment?: {
7599
+ emailDiscovery?: {
7600
+ primary: "tomba" | "anymailfinder";
7601
+ credentialName?: string | undefined;
7602
+ } | undefined;
7603
+ emailVerification?: {
7604
+ provider: "millionverifier";
7605
+ threshold?: "ok" | "ok+catch_all" | undefined;
7606
+ } | undefined;
7607
+ } | undefined;
7608
+ personalization?: {
7609
+ industryContext?: string | undefined;
7610
+ emailBody?: string | undefined;
7611
+ creativeDirection?: string | undefined;
7612
+ exclusionRules?: string[] | undefined;
7613
+ } | undefined;
7614
+ pipeline?: {
7615
+ steps: {
7616
+ key: string;
7617
+ label: string;
7618
+ resourceId: string;
7619
+ inputTemplate: Record<string, unknown>;
7620
+ enabled: boolean;
7621
+ order: number;
7622
+ }[];
7623
+ } | undefined;
7624
+ };
7625
+ }[], Error>;
7626
+ declare function useList(listId: string): _tanstack_react_query.UseQueryResult<{
7627
+ id: string;
7628
+ organizationId: string;
7629
+ name: string;
7630
+ description: string | null;
7631
+ type: string;
7632
+ batchIds: string[];
7633
+ instantlyCampaignId: string | null;
7634
+ status: string;
7635
+ metadata: Record<string, unknown>;
7636
+ launchedAt: string | null;
7637
+ completedAt: string | null;
7638
+ createdAt: string;
7639
+ config: {
7640
+ qualification: {
7641
+ targetDescription: string;
7642
+ minReviewCount: number;
7643
+ minRating: number;
7644
+ excludeFranchises: boolean;
7645
+ customRules: string;
7646
+ };
7647
+ enrichment?: {
7648
+ emailDiscovery?: {
7649
+ primary: "tomba" | "anymailfinder";
7650
+ credentialName?: string | undefined;
7651
+ } | undefined;
7652
+ emailVerification?: {
7653
+ provider: "millionverifier";
7654
+ threshold?: "ok" | "ok+catch_all" | undefined;
7655
+ } | undefined;
7656
+ } | undefined;
7657
+ personalization?: {
7658
+ industryContext?: string | undefined;
7659
+ emailBody?: string | undefined;
7660
+ creativeDirection?: string | undefined;
7661
+ exclusionRules?: string[] | undefined;
7662
+ } | undefined;
7663
+ pipeline?: {
7664
+ steps: {
7665
+ key: string;
7666
+ label: string;
7667
+ resourceId: string;
7668
+ inputTemplate: Record<string, unknown>;
7669
+ enabled: boolean;
7670
+ order: number;
7671
+ }[];
7672
+ } | undefined;
7673
+ };
7674
+ }, Error>;
7675
+ declare function useListsTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
7676
+ declare function useListProgress(listId: string): _tanstack_react_query.UseQueryResult<ListTelemetry, Error>;
7677
+ declare function useListExecutions(listId: string): _tanstack_react_query.UseQueryResult<{
7678
+ executionId: string;
7679
+ resourceId: string;
7680
+ status: string;
7681
+ createdAt: string;
7682
+ completedAt: string | null;
7683
+ durationMs: number | null;
7684
+ }[], Error>;
7685
+ declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
7686
+ id: string;
7687
+ organizationId: string;
7688
+ name: string;
7689
+ description: string | null;
7690
+ type: string;
7691
+ batchIds: string[];
7692
+ instantlyCampaignId: string | null;
7693
+ status: string;
7694
+ metadata: Record<string, unknown>;
7695
+ launchedAt: string | null;
7696
+ completedAt: string | null;
7697
+ createdAt: string;
7698
+ config: {
7699
+ qualification: {
7700
+ targetDescription: string;
7701
+ minReviewCount: number;
7702
+ minRating: number;
7703
+ excludeFranchises: boolean;
7704
+ customRules: string;
7705
+ };
7706
+ enrichment?: {
7707
+ emailDiscovery?: {
7708
+ primary: "tomba" | "anymailfinder";
7709
+ credentialName?: string | undefined;
7710
+ } | undefined;
7711
+ emailVerification?: {
7712
+ provider: "millionverifier";
7713
+ threshold?: "ok" | "ok+catch_all" | undefined;
7714
+ } | undefined;
7715
+ } | undefined;
7716
+ personalization?: {
7717
+ industryContext?: string | undefined;
7718
+ emailBody?: string | undefined;
7719
+ creativeDirection?: string | undefined;
7720
+ exclusionRules?: string[] | undefined;
7721
+ } | undefined;
7722
+ pipeline?: {
7723
+ steps: {
7724
+ key: string;
7725
+ label: string;
7726
+ resourceId: string;
7727
+ inputTemplate: Record<string, unknown>;
7728
+ enabled: boolean;
7729
+ order: number;
7730
+ }[];
7731
+ } | undefined;
7732
+ };
7733
+ }, Error, {
7734
+ name: string;
7735
+ type: string;
7736
+ description?: string | null | undefined;
7737
+ config?: {
7738
+ qualification: {
7739
+ targetDescription: string;
7740
+ minReviewCount: number;
7741
+ minRating: number;
7742
+ excludeFranchises: boolean;
7743
+ customRules: string;
7744
+ };
7745
+ enrichment?: {
7746
+ emailDiscovery?: {
7747
+ primary: "tomba" | "anymailfinder";
7748
+ credentialName?: string | undefined;
7749
+ } | undefined;
7750
+ emailVerification?: {
7751
+ provider: "millionverifier";
7752
+ threshold?: "ok" | "ok+catch_all" | undefined;
7753
+ } | undefined;
7754
+ } | undefined;
7755
+ personalization?: {
7756
+ industryContext?: string | undefined;
7757
+ emailBody?: string | undefined;
7758
+ creativeDirection?: string | undefined;
7759
+ exclusionRules?: string[] | undefined;
7760
+ } | undefined;
7761
+ pipeline?: {
7762
+ steps: {
7763
+ key: string;
7764
+ label: string;
7765
+ resourceId: string;
7766
+ inputTemplate: Record<string, unknown>;
7767
+ enabled: boolean;
7768
+ order: number;
7769
+ }[];
7770
+ } | undefined;
7771
+ } | undefined;
7772
+ }, unknown>;
7773
+ declare function useUpdateList(listId: string): _tanstack_react_query.UseMutationResult<{
7774
+ id: string;
7775
+ organizationId: string;
7776
+ name: string;
7777
+ description: string | null;
7778
+ type: string;
7779
+ batchIds: string[];
7780
+ instantlyCampaignId: string | null;
7781
+ status: string;
7782
+ metadata: Record<string, unknown>;
7783
+ launchedAt: string | null;
7784
+ completedAt: string | null;
7785
+ createdAt: string;
7786
+ config: {
7787
+ qualification: {
7788
+ targetDescription: string;
7789
+ minReviewCount: number;
7790
+ minRating: number;
7791
+ excludeFranchises: boolean;
7792
+ customRules: string;
7793
+ };
7794
+ enrichment?: {
7795
+ emailDiscovery?: {
7796
+ primary: "tomba" | "anymailfinder";
7797
+ credentialName?: string | undefined;
7798
+ } | undefined;
7799
+ emailVerification?: {
7800
+ provider: "millionverifier";
7801
+ threshold?: "ok" | "ok+catch_all" | undefined;
7802
+ } | undefined;
7803
+ } | undefined;
7804
+ personalization?: {
7805
+ industryContext?: string | undefined;
7806
+ emailBody?: string | undefined;
7807
+ creativeDirection?: string | undefined;
7808
+ exclusionRules?: string[] | undefined;
7809
+ } | undefined;
7810
+ pipeline?: {
7811
+ steps: {
7812
+ key: string;
7813
+ label: string;
7814
+ resourceId: string;
7815
+ inputTemplate: Record<string, unknown>;
7816
+ enabled: boolean;
7817
+ order: number;
7818
+ }[];
7819
+ } | undefined;
7820
+ };
7821
+ }, Error, {
7822
+ name?: string | undefined;
7823
+ description?: string | null | undefined;
7824
+ status?: string | undefined;
7825
+ }, unknown>;
7826
+ declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseMutationResult<{
7827
+ id: string;
7828
+ organizationId: string;
7829
+ name: string;
7830
+ description: string | null;
7831
+ type: string;
7832
+ batchIds: string[];
7833
+ instantlyCampaignId: string | null;
7834
+ status: string;
7835
+ metadata: Record<string, unknown>;
7836
+ launchedAt: string | null;
7837
+ completedAt: string | null;
7838
+ createdAt: string;
7839
+ config: {
7840
+ qualification: {
7841
+ targetDescription: string;
7842
+ minReviewCount: number;
7843
+ minRating: number;
7844
+ excludeFranchises: boolean;
7845
+ customRules: string;
7846
+ };
7847
+ enrichment?: {
7848
+ emailDiscovery?: {
7849
+ primary: "tomba" | "anymailfinder";
7850
+ credentialName?: string | undefined;
7851
+ } | undefined;
7852
+ emailVerification?: {
7853
+ provider: "millionverifier";
7854
+ threshold?: "ok" | "ok+catch_all" | undefined;
7855
+ } | undefined;
7856
+ } | undefined;
7857
+ personalization?: {
7858
+ industryContext?: string | undefined;
7859
+ emailBody?: string | undefined;
7860
+ creativeDirection?: string | undefined;
7861
+ exclusionRules?: string[] | undefined;
7862
+ } | undefined;
7863
+ pipeline?: {
7864
+ steps: {
7865
+ key: string;
7866
+ label: string;
7867
+ resourceId: string;
7868
+ inputTemplate: Record<string, unknown>;
7869
+ enabled: boolean;
7870
+ order: number;
7871
+ }[];
7872
+ } | undefined;
7873
+ };
7874
+ }, Error, {
7875
+ qualification?: {
7876
+ targetDescription?: string | undefined;
7877
+ minReviewCount?: number | undefined;
7878
+ minRating?: number | undefined;
7879
+ excludeFranchises?: boolean | undefined;
7880
+ customRules?: string | undefined;
7881
+ } | undefined;
7882
+ enrichment?: {
7883
+ emailDiscovery?: {
7884
+ primary: "tomba" | "anymailfinder";
7885
+ credentialName?: string | undefined;
7886
+ } | undefined;
7887
+ emailVerification?: {
7888
+ provider: "millionverifier";
7889
+ threshold?: "ok" | "ok+catch_all" | undefined;
7890
+ } | undefined;
7891
+ } | undefined;
7892
+ personalization?: {
7893
+ industryContext?: string | undefined;
7894
+ emailBody?: string | undefined;
7895
+ creativeDirection?: string | undefined;
7896
+ exclusionRules?: string[] | undefined;
7897
+ } | undefined;
7898
+ pipeline?: {
7899
+ steps?: {
7900
+ key: string;
7901
+ label: string;
7902
+ resourceId: string;
7903
+ inputTemplate: Record<string, unknown>;
7904
+ enabled: boolean;
7905
+ order: number;
7906
+ }[] | undefined;
7907
+ } | undefined;
7908
+ }, unknown>;
7909
+ declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
7910
+
7911
+ /**
7912
+ * Deprecated alias retained until the remaining batch-oriented callers are removed.
7913
+ */
7611
7914
  declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
7612
7915
 
7613
7916
  /**
@@ -7669,5 +7972,5 @@ declare function useSessionWebSocket(sessionId: string, apiUrl: string): {
7669
7972
  lastTokenUsage: SessionTokenUsage | null;
7670
7973
  };
7671
7974
 
7672
- export { OperationsService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, calibrationKeys, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, observabilityKeys, 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, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteDeal, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListSchedules, 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, useUpdateProject, useUpdateSchedule, useWarningNotification };
7975
+ export { OperationsService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, acquisitionListKeys, calibrationKeys, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, observabilityKeys, 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, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, 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, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification };
7673
7976
  export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateScheduleInput, CreateSessionResponse, DealDetail, DeleteExecutionParams, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListSchedulesFilters, ListSchedulesResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
@@ -1,11 +1,11 @@
1
- export { OperationsService, calibrationKeys, 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, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteDeal, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListSchedules, 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, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-EBCIUZVV.js';
1
+ export { OperationsService, acquisitionListKeys, calibrationKeys, 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, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, 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, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-EINVPEHK.js';
2
2
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
3
3
  import '../chunk-F6RBK7NJ.js';
4
- import '../chunk-D25AE46Q.js';
4
+ import '../chunk-FW4S3Z5I.js';
5
5
  import '../chunk-SZHARWKU.js';
6
6
  import '../chunk-TXPUIHX2.js';
7
7
  import '../chunk-CYXZHBP4.js';
8
- export { createUseFeatureAccess } from '../chunk-KLG4H5NM.js';
8
+ export { createUseFeatureAccess } from '../chunk-45MS3IAW.js';
9
9
  import '../chunk-5COLSYBE.js';
10
10
  import '../chunk-NVOCKXUQ.js';
11
11
  import '../chunk-2IFYDILW.js';