@elevasis/ui 1.28.1 → 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.
@@ -7566,6 +7566,351 @@ interface CompleteDealTaskParams {
7566
7566
  */
7567
7567
  declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
7568
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
+ */
7569
7914
  declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
7570
7915
 
7571
7916
  /**
@@ -7627,5 +7972,5 @@ declare function useSessionWebSocket(sessionId: string, apiUrl: string): {
7627
7972
  lastTokenUsage: SessionTokenUsage | null;
7628
7973
  };
7629
7974
 
7630
- 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 };
7631
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';