@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.
@@ -1,7 +1,7 @@
1
- export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-C4WOXS2C.js';
1
+ export { AgentExecutionPanel, AgentSessionGroup, CalibrationPage, CalibrationProgress, CalibrationProjectDetailPage, CalibrationProjectsPage, CalibrationRunDetailPage, CalibrationSidebar, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, CommandViewSidebarContent, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, ResourceDetailPage, ResourceExecuteDialog, ResourceExecuteForm, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, WorkflowExecutionPanel, operationsManifest } from '../../chunk-ZWY3A6ZU.js';
2
2
  import '../../chunk-ROSMICXG.js';
3
3
  import '../../chunk-2IJCM3VQ.js';
4
- import '../../chunk-ZUJ7WMGV.js';
4
+ import '../../chunk-KP6LNTMH.js';
5
5
  import '../../chunk-GBMNCNHX.js';
6
6
  import '../../chunk-F2J7675J.js';
7
7
  import '../../chunk-JHVKGZ2P.js';
@@ -9,17 +9,17 @@ import '../../chunk-MCA6LOGM.js';
9
9
  import '../../chunk-3KMDHCAR.js';
10
10
  import '../../chunk-NNKKBSJN.js';
11
11
  import '../../chunk-YYBM5LNJ.js';
12
- import '../../chunk-7CJ5QBN2.js';
13
- import '../../chunk-EBCIUZVV.js';
12
+ import '../../chunk-BYZ7VTSH.js';
13
+ import '../../chunk-EINVPEHK.js';
14
14
  import '../../chunk-LXHZYSMQ.js';
15
15
  import '../../chunk-F6RBK7NJ.js';
16
16
  import '../../chunk-XA34RETF.js';
17
17
  import '../../chunk-ELJIFLCB.js';
18
- import '../../chunk-D25AE46Q.js';
18
+ import '../../chunk-FW4S3Z5I.js';
19
19
  import '../../chunk-SZHARWKU.js';
20
20
  import '../../chunk-TXPUIHX2.js';
21
21
  import '../../chunk-CYXZHBP4.js';
22
- import '../../chunk-KLG4H5NM.js';
22
+ import '../../chunk-45MS3IAW.js';
23
23
  import '../../chunk-5COLSYBE.js';
24
24
  import '../../chunk-NVOCKXUQ.js';
25
25
  import '../../chunk-2IFYDILW.js';
@@ -1,4 +1,4 @@
1
- export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-ZXBD5SBV.js';
1
+ export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-R2BQITMQ.js';
2
2
  import '../../chunk-PDHTXPSF.js';
3
3
  import '../../chunk-GBMNCNHX.js';
4
4
  import '../../chunk-MCA6LOGM.js';
@@ -6,16 +6,16 @@ import '../../chunk-3KMDHCAR.js';
6
6
  import '../../chunk-NNKKBSJN.js';
7
7
  import '../../chunk-YYBM5LNJ.js';
8
8
  import '../../chunk-QTD5HPKD.js';
9
- import '../../chunk-7CJ5QBN2.js';
10
- import '../../chunk-EBCIUZVV.js';
9
+ import '../../chunk-BYZ7VTSH.js';
10
+ import '../../chunk-EINVPEHK.js';
11
11
  import '../../chunk-LXHZYSMQ.js';
12
12
  import '../../chunk-F6RBK7NJ.js';
13
13
  import '../../chunk-ELJIFLCB.js';
14
- import '../../chunk-D25AE46Q.js';
14
+ import '../../chunk-FW4S3Z5I.js';
15
15
  import '../../chunk-SZHARWKU.js';
16
16
  import '../../chunk-TXPUIHX2.js';
17
17
  import '../../chunk-CYXZHBP4.js';
18
- import '../../chunk-KLG4H5NM.js';
18
+ import '../../chunk-45MS3IAW.js';
19
19
  import '../../chunk-5COLSYBE.js';
20
20
  import '../../chunk-NVOCKXUQ.js';
21
21
  import '../../chunk-2IFYDILW.js';
@@ -9573,51 +9573,9 @@ interface FetchEventSourceWithTokenRefreshOptions {
9573
9573
  onclose?: () => void;
9574
9574
  }
9575
9575
 
9576
- interface SSEConnectionManagerOptions {
9577
- /** Grace period in ms before closing idle connections. Defaults to 5000. */
9578
- closeGracePeriodMs?: number;
9579
- }
9580
- /**
9581
- * SSE Connection Manager
9582
- *
9583
- * Ensures only ONE SSE connection exists per endpoint, preventing duplicate
9584
- * connections when components re-render or remount.
9585
- *
9586
- * Benefits:
9587
- * - Prevents resource waste from duplicate connections
9588
- * - Eliminates race conditions from overlapping connections
9589
- * - Automatically manages connection lifecycle
9590
- * - Shares single connection across multiple subscribers
9591
- */
9592
- declare class SSEConnectionManager {
9593
- private connections;
9594
- private closeGracePeriodMs;
9595
- constructor(options?: SSEConnectionManagerOptions);
9596
- /**
9597
- * Subscribe to an SSE endpoint
9598
- *
9599
- * If a connection already exists for this endpoint, reuses it.
9600
- * Otherwise, creates a new connection.
9601
- *
9602
- * @param key - Unique identifier for the connection (e.g., 'notifications', 'resource-executive-agent')
9603
- * @param subscriberId - Unique identifier for this subscriber (usually component instance)
9604
- * @param options - SSE connection options
9605
- * @returns Unsubscribe function to call when component unmounts
9606
- */
9576
+ interface SSEConnectionManagerLike {
9607
9577
  subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
9608
- /**
9609
- * Unsubscribe from an SSE endpoint
9610
- *
9611
- * If this is the last subscriber, closes the connection after grace period.
9612
- */
9613
- private unsubscribe;
9614
- /**
9615
- * Force close a connection and all its subscribers
9616
- */
9617
9578
  closeConnection(key: string): void;
9618
- /**
9619
- * Get current connection status
9620
- */
9621
9579
  getConnectionInfo(): Map<string, {
9622
9580
  url: string;
9623
9581
  subscribers: number;
@@ -9625,7 +9583,7 @@ declare class SSEConnectionManager {
9625
9583
  }
9626
9584
 
9627
9585
  interface UseSSEConnectionOptions {
9628
- manager: SSEConnectionManager;
9586
+ manager: SSEConnectionManagerLike;
9629
9587
  /** Shared connection key — all subscribers with the same key share ONE connection. */
9630
9588
  connectionKey: string;
9631
9589
  url: string;
@@ -10193,7 +10151,7 @@ declare const operationsKeys: {
10193
10151
  session: (org: string, sessionId: string) => readonly ["operations", "session", string, string];
10194
10152
  };
10195
10153
 
10196
- declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManager, apiUrl: string): {
10154
+ declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionManagerLike, apiUrl: string): {
10197
10155
  liveExecutions: Set<string>;
10198
10156
  connected: boolean;
10199
10157
  error: string | null;
@@ -10204,7 +10162,7 @@ declare function useExecutionLogSSE(resourceId: string, manager: SSEConnectionMa
10204
10162
 
10205
10163
  interface UseExecutionPanelStateOptions {
10206
10164
  resourceId: string;
10207
- manager: SSEConnectionManager;
10165
+ manager: SSEConnectionManagerLike;
10208
10166
  /**
10209
10167
  * Base URL of the API server (e.g. 'https://api.elevasis.io' or 'http://localhost:5170').
10210
10168
  * Provided by the consuming app -- the library does not read environment variables directly.
@@ -10647,7 +10605,7 @@ interface CalibrationProgress {
10647
10605
  }
10648
10606
  interface UseCalibrationSSEOptions {
10649
10607
  runId: string;
10650
- manager: SSEConnectionManager;
10608
+ manager: SSEConnectionManagerLike;
10651
10609
  apiUrl: string;
10652
10610
  enabled?: boolean;
10653
10611
  }
@@ -10774,6 +10732,351 @@ interface CompleteDealTaskParams {
10774
10732
  */
10775
10733
  declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
10776
10734
 
10735
+ declare const acquisitionListKeys: {
10736
+ all: readonly ["acquisition-lists"];
10737
+ list: (organizationId: string | null) => readonly ["acquisition-lists", string | null];
10738
+ detail: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", string | null, string];
10739
+ telemetry: (organizationId: string | null) => readonly ["acquisition-lists", "telemetry", string | null];
10740
+ progress: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "progress", string | null, string];
10741
+ executions: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "executions", string | null, string];
10742
+ };
10743
+ declare function useLists(): _tanstack_react_query.UseQueryResult<{
10744
+ id: string;
10745
+ organizationId: string;
10746
+ name: string;
10747
+ description: string | null;
10748
+ type: string;
10749
+ batchIds: string[];
10750
+ instantlyCampaignId: string | null;
10751
+ status: string;
10752
+ metadata: Record<string, unknown>;
10753
+ launchedAt: string | null;
10754
+ completedAt: string | null;
10755
+ createdAt: string;
10756
+ config: {
10757
+ qualification: {
10758
+ targetDescription: string;
10759
+ minReviewCount: number;
10760
+ minRating: number;
10761
+ excludeFranchises: boolean;
10762
+ customRules: string;
10763
+ };
10764
+ enrichment?: {
10765
+ emailDiscovery?: {
10766
+ primary: "tomba" | "anymailfinder";
10767
+ credentialName?: string | undefined;
10768
+ } | undefined;
10769
+ emailVerification?: {
10770
+ provider: "millionverifier";
10771
+ threshold?: "ok" | "ok+catch_all" | undefined;
10772
+ } | undefined;
10773
+ } | undefined;
10774
+ personalization?: {
10775
+ industryContext?: string | undefined;
10776
+ emailBody?: string | undefined;
10777
+ creativeDirection?: string | undefined;
10778
+ exclusionRules?: string[] | undefined;
10779
+ } | undefined;
10780
+ pipeline?: {
10781
+ steps: {
10782
+ key: string;
10783
+ label: string;
10784
+ resourceId: string;
10785
+ inputTemplate: Record<string, unknown>;
10786
+ enabled: boolean;
10787
+ order: number;
10788
+ }[];
10789
+ } | undefined;
10790
+ };
10791
+ }[], Error>;
10792
+ declare function useList(listId: string): _tanstack_react_query.UseQueryResult<{
10793
+ id: string;
10794
+ organizationId: string;
10795
+ name: string;
10796
+ description: string | null;
10797
+ type: string;
10798
+ batchIds: string[];
10799
+ instantlyCampaignId: string | null;
10800
+ status: string;
10801
+ metadata: Record<string, unknown>;
10802
+ launchedAt: string | null;
10803
+ completedAt: string | null;
10804
+ createdAt: string;
10805
+ config: {
10806
+ qualification: {
10807
+ targetDescription: string;
10808
+ minReviewCount: number;
10809
+ minRating: number;
10810
+ excludeFranchises: boolean;
10811
+ customRules: string;
10812
+ };
10813
+ enrichment?: {
10814
+ emailDiscovery?: {
10815
+ primary: "tomba" | "anymailfinder";
10816
+ credentialName?: string | undefined;
10817
+ } | undefined;
10818
+ emailVerification?: {
10819
+ provider: "millionverifier";
10820
+ threshold?: "ok" | "ok+catch_all" | undefined;
10821
+ } | undefined;
10822
+ } | undefined;
10823
+ personalization?: {
10824
+ industryContext?: string | undefined;
10825
+ emailBody?: string | undefined;
10826
+ creativeDirection?: string | undefined;
10827
+ exclusionRules?: string[] | undefined;
10828
+ } | undefined;
10829
+ pipeline?: {
10830
+ steps: {
10831
+ key: string;
10832
+ label: string;
10833
+ resourceId: string;
10834
+ inputTemplate: Record<string, unknown>;
10835
+ enabled: boolean;
10836
+ order: number;
10837
+ }[];
10838
+ } | undefined;
10839
+ };
10840
+ }, Error>;
10841
+ declare function useListsTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
10842
+ declare function useListProgress(listId: string): _tanstack_react_query.UseQueryResult<ListTelemetry, Error>;
10843
+ declare function useListExecutions(listId: string): _tanstack_react_query.UseQueryResult<{
10844
+ executionId: string;
10845
+ resourceId: string;
10846
+ status: string;
10847
+ createdAt: string;
10848
+ completedAt: string | null;
10849
+ durationMs: number | null;
10850
+ }[], Error>;
10851
+ declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
10852
+ id: string;
10853
+ organizationId: string;
10854
+ name: string;
10855
+ description: string | null;
10856
+ type: string;
10857
+ batchIds: string[];
10858
+ instantlyCampaignId: string | null;
10859
+ status: string;
10860
+ metadata: Record<string, unknown>;
10861
+ launchedAt: string | null;
10862
+ completedAt: string | null;
10863
+ createdAt: string;
10864
+ config: {
10865
+ qualification: {
10866
+ targetDescription: string;
10867
+ minReviewCount: number;
10868
+ minRating: number;
10869
+ excludeFranchises: boolean;
10870
+ customRules: string;
10871
+ };
10872
+ enrichment?: {
10873
+ emailDiscovery?: {
10874
+ primary: "tomba" | "anymailfinder";
10875
+ credentialName?: string | undefined;
10876
+ } | undefined;
10877
+ emailVerification?: {
10878
+ provider: "millionverifier";
10879
+ threshold?: "ok" | "ok+catch_all" | undefined;
10880
+ } | undefined;
10881
+ } | undefined;
10882
+ personalization?: {
10883
+ industryContext?: string | undefined;
10884
+ emailBody?: string | undefined;
10885
+ creativeDirection?: string | undefined;
10886
+ exclusionRules?: string[] | undefined;
10887
+ } | undefined;
10888
+ pipeline?: {
10889
+ steps: {
10890
+ key: string;
10891
+ label: string;
10892
+ resourceId: string;
10893
+ inputTemplate: Record<string, unknown>;
10894
+ enabled: boolean;
10895
+ order: number;
10896
+ }[];
10897
+ } | undefined;
10898
+ };
10899
+ }, Error, {
10900
+ name: string;
10901
+ type: string;
10902
+ description?: string | null | undefined;
10903
+ config?: {
10904
+ qualification: {
10905
+ targetDescription: string;
10906
+ minReviewCount: number;
10907
+ minRating: number;
10908
+ excludeFranchises: boolean;
10909
+ customRules: string;
10910
+ };
10911
+ enrichment?: {
10912
+ emailDiscovery?: {
10913
+ primary: "tomba" | "anymailfinder";
10914
+ credentialName?: string | undefined;
10915
+ } | undefined;
10916
+ emailVerification?: {
10917
+ provider: "millionverifier";
10918
+ threshold?: "ok" | "ok+catch_all" | undefined;
10919
+ } | undefined;
10920
+ } | undefined;
10921
+ personalization?: {
10922
+ industryContext?: string | undefined;
10923
+ emailBody?: string | undefined;
10924
+ creativeDirection?: string | undefined;
10925
+ exclusionRules?: string[] | undefined;
10926
+ } | undefined;
10927
+ pipeline?: {
10928
+ steps: {
10929
+ key: string;
10930
+ label: string;
10931
+ resourceId: string;
10932
+ inputTemplate: Record<string, unknown>;
10933
+ enabled: boolean;
10934
+ order: number;
10935
+ }[];
10936
+ } | undefined;
10937
+ } | undefined;
10938
+ }, unknown>;
10939
+ declare function useUpdateList(listId: string): _tanstack_react_query.UseMutationResult<{
10940
+ id: string;
10941
+ organizationId: string;
10942
+ name: string;
10943
+ description: string | null;
10944
+ type: string;
10945
+ batchIds: string[];
10946
+ instantlyCampaignId: string | null;
10947
+ status: string;
10948
+ metadata: Record<string, unknown>;
10949
+ launchedAt: string | null;
10950
+ completedAt: string | null;
10951
+ createdAt: string;
10952
+ config: {
10953
+ qualification: {
10954
+ targetDescription: string;
10955
+ minReviewCount: number;
10956
+ minRating: number;
10957
+ excludeFranchises: boolean;
10958
+ customRules: string;
10959
+ };
10960
+ enrichment?: {
10961
+ emailDiscovery?: {
10962
+ primary: "tomba" | "anymailfinder";
10963
+ credentialName?: string | undefined;
10964
+ } | undefined;
10965
+ emailVerification?: {
10966
+ provider: "millionverifier";
10967
+ threshold?: "ok" | "ok+catch_all" | undefined;
10968
+ } | undefined;
10969
+ } | undefined;
10970
+ personalization?: {
10971
+ industryContext?: string | undefined;
10972
+ emailBody?: string | undefined;
10973
+ creativeDirection?: string | undefined;
10974
+ exclusionRules?: string[] | undefined;
10975
+ } | undefined;
10976
+ pipeline?: {
10977
+ steps: {
10978
+ key: string;
10979
+ label: string;
10980
+ resourceId: string;
10981
+ inputTemplate: Record<string, unknown>;
10982
+ enabled: boolean;
10983
+ order: number;
10984
+ }[];
10985
+ } | undefined;
10986
+ };
10987
+ }, Error, {
10988
+ name?: string | undefined;
10989
+ description?: string | null | undefined;
10990
+ status?: string | undefined;
10991
+ }, unknown>;
10992
+ declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseMutationResult<{
10993
+ id: string;
10994
+ organizationId: string;
10995
+ name: string;
10996
+ description: string | null;
10997
+ type: string;
10998
+ batchIds: string[];
10999
+ instantlyCampaignId: string | null;
11000
+ status: string;
11001
+ metadata: Record<string, unknown>;
11002
+ launchedAt: string | null;
11003
+ completedAt: string | null;
11004
+ createdAt: string;
11005
+ config: {
11006
+ qualification: {
11007
+ targetDescription: string;
11008
+ minReviewCount: number;
11009
+ minRating: number;
11010
+ excludeFranchises: boolean;
11011
+ customRules: string;
11012
+ };
11013
+ enrichment?: {
11014
+ emailDiscovery?: {
11015
+ primary: "tomba" | "anymailfinder";
11016
+ credentialName?: string | undefined;
11017
+ } | undefined;
11018
+ emailVerification?: {
11019
+ provider: "millionverifier";
11020
+ threshold?: "ok" | "ok+catch_all" | undefined;
11021
+ } | undefined;
11022
+ } | undefined;
11023
+ personalization?: {
11024
+ industryContext?: string | undefined;
11025
+ emailBody?: string | undefined;
11026
+ creativeDirection?: string | undefined;
11027
+ exclusionRules?: string[] | undefined;
11028
+ } | undefined;
11029
+ pipeline?: {
11030
+ steps: {
11031
+ key: string;
11032
+ label: string;
11033
+ resourceId: string;
11034
+ inputTemplate: Record<string, unknown>;
11035
+ enabled: boolean;
11036
+ order: number;
11037
+ }[];
11038
+ } | undefined;
11039
+ };
11040
+ }, Error, {
11041
+ qualification?: {
11042
+ targetDescription?: string | undefined;
11043
+ minReviewCount?: number | undefined;
11044
+ minRating?: number | undefined;
11045
+ excludeFranchises?: boolean | undefined;
11046
+ customRules?: string | undefined;
11047
+ } | undefined;
11048
+ enrichment?: {
11049
+ emailDiscovery?: {
11050
+ primary: "tomba" | "anymailfinder";
11051
+ credentialName?: string | undefined;
11052
+ } | undefined;
11053
+ emailVerification?: {
11054
+ provider: "millionverifier";
11055
+ threshold?: "ok" | "ok+catch_all" | undefined;
11056
+ } | undefined;
11057
+ } | undefined;
11058
+ personalization?: {
11059
+ industryContext?: string | undefined;
11060
+ emailBody?: string | undefined;
11061
+ creativeDirection?: string | undefined;
11062
+ exclusionRules?: string[] | undefined;
11063
+ } | undefined;
11064
+ pipeline?: {
11065
+ steps?: {
11066
+ key: string;
11067
+ label: string;
11068
+ resourceId: string;
11069
+ inputTemplate: Record<string, unknown>;
11070
+ enabled: boolean;
11071
+ order: number;
11072
+ }[] | undefined;
11073
+ } | undefined;
11074
+ }, unknown>;
11075
+ declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
11076
+
11077
+ /**
11078
+ * Deprecated alias retained until the remaining batch-oriented callers are removed.
11079
+ */
10777
11080
  declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
10778
11081
 
10779
11082
  // Row types from Supabase
@@ -11100,5 +11403,5 @@ declare function useCreateNote(): _tanstack_react_query.UseMutationResult<{
11100
11403
  type?: string;
11101
11404
  }, "organization_id">, unknown>;
11102
11405
 
11103
- export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calibrationKeys, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectNotes, useProjects, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
11406
+ export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calibrationKeys, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, 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, 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, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectNotes, useProjects, useReactivateMembership, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
11104
11407
  export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter$1 as StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
@@ -1,12 +1,12 @@
1
- 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-7CJ5QBN2.js';
2
- 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 { 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-BYZ7VTSH.js';
2
+ 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';
3
3
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
4
4
  import '../chunk-F6RBK7NJ.js';
5
- import '../chunk-D25AE46Q.js';
5
+ import '../chunk-FW4S3Z5I.js';
6
6
  import '../chunk-SZHARWKU.js';
7
7
  import '../chunk-TXPUIHX2.js';
8
8
  import '../chunk-CYXZHBP4.js';
9
- export { createUseFeatureAccess } from '../chunk-KLG4H5NM.js';
9
+ export { createUseFeatureAccess } from '../chunk-45MS3IAW.js';
10
10
  import '../chunk-5COLSYBE.js';
11
11
  import '../chunk-NVOCKXUQ.js';
12
12
  import '../chunk-2IFYDILW.js';