@elevasis/ui 2.0.3 → 2.2.0

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.
@@ -5881,6 +5881,94 @@ interface Deployment {
5881
5881
  updatedAt: string;
5882
5882
  }
5883
5883
 
5884
+ declare const ListCompaniesQuerySchema: z.ZodObject<{
5885
+ search: z.ZodOptional<z.ZodString>;
5886
+ listId: z.ZodOptional<z.ZodString>;
5887
+ domain: z.ZodOptional<z.ZodString>;
5888
+ website: z.ZodOptional<z.ZodString>;
5889
+ segment: z.ZodOptional<z.ZodString>;
5890
+ category: z.ZodOptional<z.ZodString>;
5891
+ batchId: z.ZodOptional<z.ZodString>;
5892
+ status: z.ZodOptional<z.ZodEnum<{
5893
+ active: "active";
5894
+ invalid: "invalid";
5895
+ }>>;
5896
+ includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
5897
+ }, z.core.$strict>;
5898
+ declare const ListContactsQuerySchema: z.ZodObject<{
5899
+ search: z.ZodOptional<z.ZodString>;
5900
+ listId: z.ZodOptional<z.ZodString>;
5901
+ openingLineIsNull: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
5902
+ batchId: z.ZodOptional<z.ZodString>;
5903
+ contactStatus: z.ZodOptional<z.ZodEnum<{
5904
+ active: "active";
5905
+ invalid: "invalid";
5906
+ }>>;
5907
+ limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
5908
+ offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
5909
+ }, z.core.$strict>;
5910
+ declare const AcqCompanyResponseSchema: z.ZodObject<{
5911
+ id: z.ZodString;
5912
+ organizationId: z.ZodString;
5913
+ name: z.ZodString;
5914
+ domain: z.ZodNullable<z.ZodString>;
5915
+ linkedinUrl: z.ZodNullable<z.ZodString>;
5916
+ website: z.ZodNullable<z.ZodString>;
5917
+ numEmployees: z.ZodNullable<z.ZodNumber>;
5918
+ foundedYear: z.ZodNullable<z.ZodNumber>;
5919
+ locationCity: z.ZodNullable<z.ZodString>;
5920
+ locationState: z.ZodNullable<z.ZodString>;
5921
+ category: z.ZodNullable<z.ZodString>;
5922
+ categoryPain: z.ZodNullable<z.ZodString>;
5923
+ segment: z.ZodNullable<z.ZodString>;
5924
+ pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5925
+ enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5926
+ source: z.ZodNullable<z.ZodString>;
5927
+ batchId: z.ZodNullable<z.ZodString>;
5928
+ status: z.ZodEnum<{
5929
+ active: "active";
5930
+ invalid: "invalid";
5931
+ }>;
5932
+ verticalResearch: z.ZodNullable<z.ZodString>;
5933
+ createdAt: z.ZodString;
5934
+ updatedAt: z.ZodString;
5935
+ }, z.core.$strip>;
5936
+ declare const AcqContactResponseSchema: z.ZodObject<{
5937
+ id: z.ZodString;
5938
+ organizationId: z.ZodString;
5939
+ companyId: z.ZodNullable<z.ZodString>;
5940
+ email: z.ZodString;
5941
+ emailValid: z.ZodNullable<z.ZodEnum<{
5942
+ VALID: "VALID";
5943
+ INVALID: "INVALID";
5944
+ RISKY: "RISKY";
5945
+ UNKNOWN: "UNKNOWN";
5946
+ }>>;
5947
+ firstName: z.ZodNullable<z.ZodString>;
5948
+ lastName: z.ZodNullable<z.ZodString>;
5949
+ linkedinUrl: z.ZodNullable<z.ZodString>;
5950
+ title: z.ZodNullable<z.ZodString>;
5951
+ headline: z.ZodNullable<z.ZodString>;
5952
+ filterReason: z.ZodNullable<z.ZodString>;
5953
+ openingLine: z.ZodNullable<z.ZodString>;
5954
+ source: z.ZodNullable<z.ZodString>;
5955
+ sourceId: z.ZodNullable<z.ZodString>;
5956
+ pipelineStatus: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5957
+ enrichmentData: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
5958
+ attioPersonId: z.ZodNullable<z.ZodString>;
5959
+ batchId: z.ZodNullable<z.ZodString>;
5960
+ status: z.ZodEnum<{
5961
+ active: "active";
5962
+ invalid: "invalid";
5963
+ }>;
5964
+ createdAt: z.ZodString;
5965
+ updatedAt: z.ZodString;
5966
+ }, z.core.$strip>;
5967
+ type ListCompaniesQuery = z.infer<typeof ListCompaniesQuerySchema>;
5968
+ type ListContactsQuery = z.infer<typeof ListContactsQuerySchema>;
5969
+ type AcqCompanyResponse = z.infer<typeof AcqCompanyResponseSchema>;
5970
+ type AcqContactResponse = z.infer<typeof AcqContactResponseSchema>;
5971
+
5884
5972
  /**
5885
5973
  * Fetch all available Execution Engine resources (workflows, agents, pipelines).
5886
5974
  *
@@ -7913,6 +8001,215 @@ declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void,
7913
8001
  */
7914
8002
  declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
7915
8003
 
8004
+ interface AcqCompanyWithCount extends AcqCompanyResponse {
8005
+ contactCount: number;
8006
+ }
8007
+ declare const companyKeys: {
8008
+ all: readonly ["acquisition-companies"];
8009
+ list: (organizationId: string | null, filters: Partial<ListCompaniesQuery>) => readonly ["acquisition-companies", "list", string | null, Partial<{
8010
+ search?: string | undefined;
8011
+ listId?: string | undefined;
8012
+ domain?: string | undefined;
8013
+ website?: string | undefined;
8014
+ segment?: string | undefined;
8015
+ category?: string | undefined;
8016
+ batchId?: string | undefined;
8017
+ status?: "active" | "invalid" | undefined;
8018
+ includeAll?: boolean | undefined;
8019
+ }>];
8020
+ detail: (organizationId: string | null, companyId: string) => readonly ["acquisition-companies", "detail", string | null, string];
8021
+ };
8022
+ declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<AcqCompanyWithCount[], Error>;
8023
+ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryResult<{
8024
+ id: string;
8025
+ organizationId: string;
8026
+ name: string;
8027
+ domain: string | null;
8028
+ linkedinUrl: string | null;
8029
+ website: string | null;
8030
+ numEmployees: number | null;
8031
+ foundedYear: number | null;
8032
+ locationCity: string | null;
8033
+ locationState: string | null;
8034
+ category: string | null;
8035
+ categoryPain: string | null;
8036
+ segment: string | null;
8037
+ pipelineStatus: Record<string, unknown> | null;
8038
+ enrichmentData: Record<string, unknown> | null;
8039
+ source: string | null;
8040
+ batchId: string | null;
8041
+ status: "active" | "invalid";
8042
+ verticalResearch: string | null;
8043
+ createdAt: string;
8044
+ updatedAt: string;
8045
+ } | null, Error>;
8046
+ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
8047
+ id: string;
8048
+ organizationId: string;
8049
+ name: string;
8050
+ domain: string | null;
8051
+ linkedinUrl: string | null;
8052
+ website: string | null;
8053
+ numEmployees: number | null;
8054
+ foundedYear: number | null;
8055
+ locationCity: string | null;
8056
+ locationState: string | null;
8057
+ category: string | null;
8058
+ categoryPain: string | null;
8059
+ segment: string | null;
8060
+ pipelineStatus: Record<string, unknown> | null;
8061
+ enrichmentData: Record<string, unknown> | null;
8062
+ source: string | null;
8063
+ batchId: string | null;
8064
+ status: "active" | "invalid";
8065
+ verticalResearch: string | null;
8066
+ createdAt: string;
8067
+ updatedAt: string;
8068
+ }, Error, {
8069
+ name: string;
8070
+ domain?: string | undefined;
8071
+ linkedinUrl?: string | undefined;
8072
+ website?: string | undefined;
8073
+ numEmployees?: number | undefined;
8074
+ foundedYear?: number | undefined;
8075
+ locationCity?: string | undefined;
8076
+ locationState?: string | undefined;
8077
+ category?: string | undefined;
8078
+ source?: string | undefined;
8079
+ batchId?: string | undefined;
8080
+ verticalResearch?: string | undefined;
8081
+ }, unknown>;
8082
+ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseMutationResult<{
8083
+ id: string;
8084
+ organizationId: string;
8085
+ name: string;
8086
+ domain: string | null;
8087
+ linkedinUrl: string | null;
8088
+ website: string | null;
8089
+ numEmployees: number | null;
8090
+ foundedYear: number | null;
8091
+ locationCity: string | null;
8092
+ locationState: string | null;
8093
+ category: string | null;
8094
+ categoryPain: string | null;
8095
+ segment: string | null;
8096
+ pipelineStatus: Record<string, unknown> | null;
8097
+ enrichmentData: Record<string, unknown> | null;
8098
+ source: string | null;
8099
+ batchId: string | null;
8100
+ status: "active" | "invalid";
8101
+ verticalResearch: string | null;
8102
+ createdAt: string;
8103
+ updatedAt: string;
8104
+ }, Error, {
8105
+ name?: string | undefined;
8106
+ domain?: string | undefined;
8107
+ linkedinUrl?: string | undefined;
8108
+ website?: string | undefined;
8109
+ numEmployees?: number | undefined;
8110
+ foundedYear?: number | undefined;
8111
+ locationCity?: string | undefined;
8112
+ locationState?: string | undefined;
8113
+ category?: string | undefined;
8114
+ segment?: string | undefined;
8115
+ pipelineStatus?: Record<string, unknown> | undefined;
8116
+ enrichmentData?: Record<string, unknown> | undefined;
8117
+ source?: string | undefined;
8118
+ batchId?: string | undefined;
8119
+ status?: "active" | "invalid" | undefined;
8120
+ verticalResearch?: string | null | undefined;
8121
+ }, unknown>;
8122
+ declare function useDeleteCompanies(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
8123
+
8124
+ interface AcqContactWithCompany extends AcqContactResponse {
8125
+ company?: AcqCompanyResponse | null;
8126
+ }
8127
+ declare const contactKeys: {
8128
+ all: readonly ["acquisition-contacts"];
8129
+ list: (organizationId: string | null, filters: Partial<ListContactsQuery>) => readonly ["acquisition-contacts", "list", string | null, Partial<{
8130
+ limit: number;
8131
+ offset: number;
8132
+ search?: string | undefined;
8133
+ listId?: string | undefined;
8134
+ openingLineIsNull?: boolean | undefined;
8135
+ batchId?: string | undefined;
8136
+ contactStatus?: "active" | "invalid" | undefined;
8137
+ }>];
8138
+ detail: (organizationId: string | null, contactId: string) => readonly ["acquisition-contacts", "detail", string | null, string];
8139
+ };
8140
+ declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<AcqContactWithCompany[], Error>;
8141
+ declare function useContact(contactId: string): _tanstack_react_query.UseQueryResult<AcqContactWithCompany | null, Error>;
8142
+ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
8143
+ id: string;
8144
+ organizationId: string;
8145
+ companyId: string | null;
8146
+ email: string;
8147
+ emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
8148
+ firstName: string | null;
8149
+ lastName: string | null;
8150
+ linkedinUrl: string | null;
8151
+ title: string | null;
8152
+ headline: string | null;
8153
+ filterReason: string | null;
8154
+ openingLine: string | null;
8155
+ source: string | null;
8156
+ sourceId: string | null;
8157
+ pipelineStatus: Record<string, unknown> | null;
8158
+ enrichmentData: Record<string, unknown> | null;
8159
+ attioPersonId: string | null;
8160
+ batchId: string | null;
8161
+ status: "active" | "invalid";
8162
+ createdAt: string;
8163
+ updatedAt: string;
8164
+ }, Error, {
8165
+ email: string;
8166
+ companyId?: string | undefined;
8167
+ firstName?: string | undefined;
8168
+ lastName?: string | undefined;
8169
+ linkedinUrl?: string | undefined;
8170
+ title?: string | undefined;
8171
+ source?: string | undefined;
8172
+ sourceId?: string | undefined;
8173
+ batchId?: string | undefined;
8174
+ }, unknown>;
8175
+ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseMutationResult<{
8176
+ id: string;
8177
+ organizationId: string;
8178
+ companyId: string | null;
8179
+ email: string;
8180
+ emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
8181
+ firstName: string | null;
8182
+ lastName: string | null;
8183
+ linkedinUrl: string | null;
8184
+ title: string | null;
8185
+ headline: string | null;
8186
+ filterReason: string | null;
8187
+ openingLine: string | null;
8188
+ source: string | null;
8189
+ sourceId: string | null;
8190
+ pipelineStatus: Record<string, unknown> | null;
8191
+ enrichmentData: Record<string, unknown> | null;
8192
+ attioPersonId: string | null;
8193
+ batchId: string | null;
8194
+ status: "active" | "invalid";
8195
+ createdAt: string;
8196
+ updatedAt: string;
8197
+ }, Error, {
8198
+ companyId?: string | undefined;
8199
+ emailValid?: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | undefined;
8200
+ firstName?: string | undefined;
8201
+ lastName?: string | undefined;
8202
+ linkedinUrl?: string | undefined;
8203
+ title?: string | undefined;
8204
+ headline?: string | undefined;
8205
+ filterReason?: string | undefined;
8206
+ openingLine?: string | undefined;
8207
+ pipelineStatus?: Record<string, unknown> | undefined;
8208
+ enrichmentData?: Record<string, unknown> | undefined;
8209
+ status?: "active" | "invalid" | undefined;
8210
+ }, unknown>;
8211
+ declare function useDeleteContacts(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
8212
+
7916
8213
  /**
7917
8214
  * Hook to fetch sessions list with optional filtering.
7918
8215
  */
@@ -7972,5 +8269,5 @@ declare function useSessionWebSocket(sessionId: string, apiUrl: string): {
7972
8269
  lastTokenUsage: SessionTokenUsage | null;
7973
8270
  };
7974
8271
 
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 };
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 };
8272
+ export { OperationsService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, acquisitionListKeys, calibrationKeys, companyKeys, contactKeys, 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, 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, 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, useUpdateCompany, useUpdateContact, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification };
8273
+ export type { AcqCompanyWithCount, AcqContactWithCompany, 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,4 +1,4 @@
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-TZOGB3X4.js';
1
+ 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
2
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
3
3
  import '../chunk-F6RBK7NJ.js';
4
4
  import '../chunk-QITPFGWC.js';