@elevasis/ui 2.41.1 → 2.43.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.
Files changed (57) hide show
  1. package/dist/api/index.js +3 -3
  2. package/dist/app/index.d.ts +74 -3
  3. package/dist/app/index.js +3 -3
  4. package/dist/auth/index.js +3 -3
  5. package/dist/charts/index.js +3 -3
  6. package/dist/{chunk-QDXTIQT4.js → chunk-FUKNHVUV.js} +205 -415
  7. package/dist/{chunk-7FJI76OH.js → chunk-NVVAQNKE.js} +1 -1
  8. package/dist/{chunk-V5HWC5EW.js → chunk-UECAFQKT.js} +1 -1
  9. package/dist/{chunk-5M4HSHQ5.js → chunk-XDEUR36B.js} +388 -25
  10. package/dist/components/index.d.ts +8 -1
  11. package/dist/components/index.js +3 -3
  12. package/dist/components/navigation/index.js +3 -3
  13. package/dist/features/auth/index.d.ts +3 -0
  14. package/dist/features/auth/index.js +4 -4
  15. package/dist/features/clients/index.d.ts +6 -3
  16. package/dist/features/clients/index.js +80 -19
  17. package/dist/features/crm/index.d.ts +3 -0
  18. package/dist/features/crm/index.js +3 -3
  19. package/dist/features/dashboard/index.d.ts +5 -1
  20. package/dist/features/dashboard/index.js +3 -3
  21. package/dist/features/delivery/index.d.ts +3 -0
  22. package/dist/features/delivery/index.js +3 -3
  23. package/dist/features/knowledge/index.js +3 -3
  24. package/dist/features/lead-gen/index.d.ts +77 -4
  25. package/dist/features/lead-gen/index.js +3 -3
  26. package/dist/features/monitoring/index.js +3 -3
  27. package/dist/features/monitoring/requests/index.js +4 -4
  28. package/dist/features/operations/index.d.ts +71 -3
  29. package/dist/features/operations/index.js +3 -3
  30. package/dist/features/settings/index.d.ts +3 -0
  31. package/dist/features/settings/index.js +3 -3
  32. package/dist/hooks/access/index.js +3 -3
  33. package/dist/hooks/delivery/index.d.ts +3 -0
  34. package/dist/hooks/delivery/index.js +3 -3
  35. package/dist/hooks/index.d.ts +38 -19
  36. package/dist/hooks/index.js +3 -3
  37. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +5 -1
  38. package/dist/hooks/published.d.ts +38 -19
  39. package/dist/hooks/published.js +3 -3
  40. package/dist/index.d.ts +104 -21
  41. package/dist/index.js +4 -4
  42. package/dist/initialization/index.d.ts +3 -0
  43. package/dist/knowledge/index.d.ts +76 -7
  44. package/dist/knowledge/index.js +68 -8
  45. package/dist/layout/index.js +3 -3
  46. package/dist/organization/index.js +3 -3
  47. package/dist/profile/index.d.ts +3 -0
  48. package/dist/provider/index.d.ts +74 -3
  49. package/dist/provider/index.js +3 -3
  50. package/dist/provider/published.d.ts +74 -3
  51. package/dist/provider/published.js +3 -3
  52. package/dist/supabase/index.d.ts +6 -0
  53. package/dist/test-utils/index.js +3 -3
  54. package/dist/types/index.d.ts +8 -1
  55. package/dist/utils/index.d.ts +5 -1
  56. package/dist/utils/index.js +1 -1
  57. package/package.json +5 -5
@@ -1434,6 +1434,7 @@ type Database = {
1434
1434
  organization_id: string;
1435
1435
  primary_company_id: string | null;
1436
1436
  primary_contact_id: string | null;
1437
+ source: string;
1437
1438
  source_deal_id: string | null;
1438
1439
  status: string;
1439
1440
  updated_at: string;
@@ -1447,6 +1448,7 @@ type Database = {
1447
1448
  organization_id: string;
1448
1449
  primary_company_id?: string | null;
1449
1450
  primary_contact_id?: string | null;
1451
+ source?: string;
1450
1452
  source_deal_id?: string | null;
1451
1453
  status?: string;
1452
1454
  updated_at?: string;
@@ -1460,6 +1462,7 @@ type Database = {
1460
1462
  organization_id?: string;
1461
1463
  primary_company_id?: string | null;
1462
1464
  primary_contact_id?: string | null;
1465
+ source?: string;
1463
1466
  source_deal_id?: string | null;
1464
1467
  status?: string;
1465
1468
  updated_at?: string;
@@ -3473,7 +3476,11 @@ declare const SystemApiInterfaceSchema: z.ZodObject<{
3473
3476
  archived: "archived";
3474
3477
  disabled: "disabled";
3475
3478
  }>>;
3476
- readinessProfile: z.ZodOptional<z.ZodString>;
3479
+ readinessProfile: z.ZodOptional<z.ZodEnum<{
3480
+ "sales.lead-gen.api": "sales.lead-gen.api";
3481
+ "sales.crm.api": "sales.crm.api";
3482
+ "sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
3483
+ }>>;
3477
3484
  resourceIds: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
3478
3485
  }, z.core.$strict>;
3479
3486
  type JsonPrimitive = string | number | boolean | null;
@@ -5886,22 +5893,24 @@ interface Deployment {
5886
5893
 
5887
5894
  declare const ClientStatusSchema: z.ZodEnum<{
5888
5895
  active: "active";
5889
- completed: "completed";
5890
- paused: "paused";
5891
5896
  onboarding: "onboarding";
5897
+ paused: "paused";
5898
+ completed: "completed";
5892
5899
  churned: "churned";
5893
5900
  }>;
5901
+ declare const ClientSourceSchema: z.ZodString;
5894
5902
  declare const ClientResponseSchema: z.ZodObject<{
5895
5903
  id: z.ZodString;
5896
5904
  organizationId: z.ZodString;
5897
5905
  name: z.ZodString;
5898
5906
  status: z.ZodEnum<{
5899
5907
  active: "active";
5900
- completed: "completed";
5901
- paused: "paused";
5902
5908
  onboarding: "onboarding";
5909
+ paused: "paused";
5910
+ completed: "completed";
5903
5911
  churned: "churned";
5904
5912
  }>;
5913
+ source: z.ZodString;
5905
5914
  sourceDealId: z.ZodNullable<z.ZodString>;
5906
5915
  primaryCompanyId: z.ZodNullable<z.ZodString>;
5907
5916
  primaryContactId: z.ZodNullable<z.ZodString>;
@@ -5916,11 +5925,12 @@ declare const ClientDetailResponseSchema: z.ZodObject<{
5916
5925
  name: z.ZodString;
5917
5926
  status: z.ZodEnum<{
5918
5927
  active: "active";
5919
- completed: "completed";
5920
- paused: "paused";
5921
5928
  onboarding: "onboarding";
5929
+ paused: "paused";
5930
+ completed: "completed";
5922
5931
  churned: "churned";
5923
5932
  }>;
5933
+ source: z.ZodString;
5924
5934
  sourceDealId: z.ZodNullable<z.ZodString>;
5925
5935
  primaryCompanyId: z.ZodNullable<z.ZodString>;
5926
5936
  primaryContactId: z.ZodNullable<z.ZodString>;
@@ -5964,9 +5974,9 @@ declare const ClientStatusResponseSchema: z.ZodObject<{
5964
5974
  totalClients: z.ZodNumber;
5965
5975
  byStatus: z.ZodRecord<z.ZodEnum<{
5966
5976
  active: "active";
5967
- completed: "completed";
5968
- paused: "paused";
5969
5977
  onboarding: "onboarding";
5978
+ paused: "paused";
5979
+ completed: "completed";
5970
5980
  churned: "churned";
5971
5981
  }>, z.ZodNumber>;
5972
5982
  linkedDeals: z.ZodNumber;
@@ -5978,11 +5988,12 @@ declare const CreateClientRequestSchema: z.ZodObject<{
5978
5988
  name: z.ZodString;
5979
5989
  status: z.ZodOptional<z.ZodEnum<{
5980
5990
  active: "active";
5981
- completed: "completed";
5982
- paused: "paused";
5983
5991
  onboarding: "onboarding";
5992
+ paused: "paused";
5993
+ completed: "completed";
5984
5994
  churned: "churned";
5985
5995
  }>>;
5996
+ source: z.ZodOptional<z.ZodString>;
5986
5997
  sourceDealId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5987
5998
  primaryCompanyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5988
5999
  primaryContactId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -5992,17 +6003,19 @@ declare const UpdateClientRequestSchema: z.ZodObject<{
5992
6003
  name: z.ZodOptional<z.ZodString>;
5993
6004
  status: z.ZodOptional<z.ZodEnum<{
5994
6005
  active: "active";
5995
- completed: "completed";
5996
- paused: "paused";
5997
6006
  onboarding: "onboarding";
6007
+ paused: "paused";
6008
+ completed: "completed";
5998
6009
  churned: "churned";
5999
6010
  }>>;
6011
+ source: z.ZodOptional<z.ZodString>;
6000
6012
  sourceDealId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6001
6013
  primaryCompanyId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6002
6014
  primaryContactId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6003
6015
  metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
6004
6016
  }, z.core.$strict>;
6005
6017
  type ClientStatus = z.infer<typeof ClientStatusSchema>;
6018
+ type ClientSource = z.infer<typeof ClientSourceSchema>;
6006
6019
  type ClientResponse = z.infer<typeof ClientResponseSchema>;
6007
6020
  type ClientDetailResponse = z.infer<typeof ClientDetailResponseSchema>;
6008
6021
  type ClientStatusResponse = z.infer<typeof ClientStatusResponseSchema>;
@@ -7490,6 +7503,7 @@ declare function useSubmitRequest(): _tanstack_react_query.UseMutationResult<unk
7490
7503
 
7491
7504
  interface ClientsListFilters {
7492
7505
  status?: ClientStatus;
7506
+ source?: ClientSource;
7493
7507
  search?: string;
7494
7508
  limit?: number;
7495
7509
  offset?: number;
@@ -7509,7 +7523,8 @@ declare function useClients(filters?: ClientsListFilters): _tanstack_react_query
7509
7523
  id: string;
7510
7524
  organizationId: string;
7511
7525
  name: string;
7512
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
7526
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
7527
+ source: string;
7513
7528
  sourceDealId: string | null;
7514
7529
  primaryCompanyId: string | null;
7515
7530
  primaryContactId: string | null;
@@ -7525,7 +7540,7 @@ declare function useClients(filters?: ClientsListFilters): _tanstack_react_query
7525
7540
 
7526
7541
  declare function useClientStatus(): _tanstack_react_query.UseQueryResult<{
7527
7542
  totalClients: number;
7528
- byStatus: Record<"active" | "completed" | "paused" | "onboarding" | "churned", number>;
7543
+ byStatus: Record<"active" | "onboarding" | "paused" | "completed" | "churned", number>;
7529
7544
  linkedDeals: number;
7530
7545
  linkedProjects: number;
7531
7546
  linkedCompanies: number;
@@ -7536,7 +7551,8 @@ declare function useClient(clientId: string | undefined): _tanstack_react_query.
7536
7551
  id: string;
7537
7552
  organizationId: string;
7538
7553
  name: string;
7539
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
7554
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
7555
+ source: string;
7540
7556
  sourceDealId: string | null;
7541
7557
  primaryCompanyId: string | null;
7542
7558
  primaryContactId: string | null;
@@ -7581,7 +7597,8 @@ declare function useCreateClient(): _tanstack_react_query.UseMutationResult<{
7581
7597
  id: string;
7582
7598
  organizationId: string;
7583
7599
  name: string;
7584
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
7600
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
7601
+ source: string;
7585
7602
  sourceDealId: string | null;
7586
7603
  primaryCompanyId: string | null;
7587
7604
  primaryContactId: string | null;
@@ -7591,7 +7608,8 @@ declare function useCreateClient(): _tanstack_react_query.UseMutationResult<{
7591
7608
  updatedAt: string;
7592
7609
  }, Error, {
7593
7610
  name: string;
7594
- status?: "active" | "completed" | "paused" | "onboarding" | "churned" | undefined;
7611
+ status?: "active" | "onboarding" | "paused" | "completed" | "churned" | undefined;
7612
+ source?: string | undefined;
7595
7613
  sourceDealId?: string | null | undefined;
7596
7614
  primaryCompanyId?: string | null | undefined;
7597
7615
  primaryContactId?: string | null | undefined;
@@ -7606,7 +7624,8 @@ declare function useUpdateClient(): _tanstack_react_query.UseMutationResult<{
7606
7624
  id: string;
7607
7625
  organizationId: string;
7608
7626
  name: string;
7609
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
7627
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
7628
+ source: string;
7610
7629
  sourceDealId: string | null;
7611
7630
  primaryCompanyId: string | null;
7612
7631
  primaryContactId: string | null;
@@ -1,4 +1,4 @@
1
- export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-QDXTIQT4.js';
1
+ export { AccessKeys, ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-FUKNHVUV.js';
2
2
  import '../chunk-NZ2F5RQ4.js';
3
3
  import '../chunk-OJJK27GC.js';
4
4
  import '../chunk-AUDNF2Q7.js';
@@ -9,7 +9,7 @@ import '../chunk-SJHM4WDG.js';
9
9
  import '../chunk-ZTWA5H77.js';
10
10
  import '../chunk-S3XR4II4.js';
11
11
  import '../chunk-6DO4PE3O.js';
12
- import '../chunk-7FJI76OH.js';
12
+ import '../chunk-NVVAQNKE.js';
13
13
  import '../chunk-DD3CCMCZ.js';
14
14
  import '../chunk-GMXGDO3I.js';
15
15
  import '../chunk-2IFYDILW.js';
@@ -18,7 +18,7 @@ import '../chunk-HENXLGVD.js';
18
18
  export { useMergedExecution } from '../chunk-7FPLLSHN.js';
19
19
  import '../chunk-RNP5R5I3.js';
20
20
  import '../chunk-W2SFTXMT.js';
21
- export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-5M4HSHQ5.js';
21
+ export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-XDEUR36B.js';
22
22
  import '../chunk-KRWALB24.js';
23
23
  import '../chunk-2FTX4WO2.js';
24
24
  import '../chunk-MQZE7SUI.js';
package/dist/index.d.ts CHANGED
@@ -2083,6 +2083,7 @@ type Database = {
2083
2083
  organization_id: string;
2084
2084
  primary_company_id: string | null;
2085
2085
  primary_contact_id: string | null;
2086
+ source: string;
2086
2087
  source_deal_id: string | null;
2087
2088
  status: string;
2088
2089
  updated_at: string;
@@ -2096,6 +2097,7 @@ type Database = {
2096
2097
  organization_id: string;
2097
2098
  primary_company_id?: string | null;
2098
2099
  primary_contact_id?: string | null;
2100
+ source?: string;
2099
2101
  source_deal_id?: string | null;
2100
2102
  status?: string;
2101
2103
  updated_at?: string;
@@ -2109,6 +2111,7 @@ type Database = {
2109
2111
  organization_id?: string;
2110
2112
  primary_company_id?: string | null;
2111
2113
  primary_contact_id?: string | null;
2114
+ source?: string;
2112
2115
  source_deal_id?: string | null;
2113
2116
  status?: string;
2114
2117
  updated_at?: string;
@@ -5059,7 +5062,11 @@ declare const SystemApiInterfaceSchema: z$1.ZodObject<{
5059
5062
  archived: "archived";
5060
5063
  disabled: "disabled";
5061
5064
  }>>;
5062
- readinessProfile: z$1.ZodOptional<z$1.ZodString>;
5065
+ readinessProfile: z$1.ZodOptional<z$1.ZodEnum<{
5066
+ "sales.lead-gen.api": "sales.lead-gen.api";
5067
+ "sales.crm.api": "sales.crm.api";
5068
+ "sales.lead-gen.crm-handoff": "sales.lead-gen.crm-handoff";
5069
+ }>>;
5063
5070
  resourceIds: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
5064
5071
  }, z$1.core.$strict>;
5065
5072
  type JsonPrimitive = string | number | boolean | null;
@@ -5169,6 +5176,7 @@ type Link = z$1.infer<typeof LinkSchema>;
5169
5176
 
5170
5177
  declare const OrganizationModelSchema: z$1.ZodObject<{
5171
5178
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5179
+ snapshotHash: z$1.ZodOptional<z$1.ZodString>;
5172
5180
  domainMetadata: z$1.ZodPipe<z$1.ZodDefault<z$1.ZodObject<{
5173
5181
  branding: z$1.ZodOptional<z$1.ZodObject<{
5174
5182
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
@@ -5178,6 +5186,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5178
5186
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5179
5187
  lastModified: z$1.ZodString;
5180
5188
  }, z$1.core.$strip>>;
5189
+ clients: z$1.ZodOptional<z$1.ZodObject<{
5190
+ version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5191
+ lastModified: z$1.ZodString;
5192
+ }, z$1.core.$strip>>;
5181
5193
  customers: z$1.ZodOptional<z$1.ZodObject<{
5182
5194
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5183
5195
  lastModified: z$1.ZodString;
@@ -5235,6 +5247,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5235
5247
  version: 1;
5236
5248
  lastModified: string;
5237
5249
  };
5250
+ clients: {
5251
+ version: 1;
5252
+ lastModified: string;
5253
+ };
5238
5254
  customers: {
5239
5255
  version: 1;
5240
5256
  lastModified: string;
@@ -5292,6 +5308,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5292
5308
  version: 1;
5293
5309
  lastModified: string;
5294
5310
  } | undefined;
5311
+ clients?: {
5312
+ version: 1;
5313
+ lastModified: string;
5314
+ } | undefined;
5295
5315
  customers?: {
5296
5316
  version: 1;
5297
5317
  lastModified: string;
@@ -5484,6 +5504,56 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5484
5504
  shortName: z$1.ZodOptional<z$1.ZodString>;
5485
5505
  description: z$1.ZodOptional<z$1.ZodString>;
5486
5506
  }, z$1.core.$loose>>;
5507
+ clients: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
5508
+ id: z$1.ZodString;
5509
+ slug: z$1.ZodString;
5510
+ name: z$1.ZodString;
5511
+ status: z$1.ZodDefault<z$1.ZodEnum<{
5512
+ active: "active";
5513
+ onboarding: "onboarding";
5514
+ paused: "paused";
5515
+ completed: "completed";
5516
+ churned: "churned";
5517
+ }>>;
5518
+ source: z$1.ZodOptional<z$1.ZodString>;
5519
+ identity: z$1.ZodDefault<z$1.ZodObject<{
5520
+ organizationName: z$1.ZodOptional<z$1.ZodString>;
5521
+ shortName: z$1.ZodOptional<z$1.ZodString>;
5522
+ clientBrief: z$1.ZodDefault<z$1.ZodString>;
5523
+ geographicFocus: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
5524
+ timeZone: z$1.ZodDefault<z$1.ZodString>;
5525
+ }, z$1.core.$loose>>;
5526
+ branding: z$1.ZodDefault<z$1.ZodObject<{
5527
+ voice: z$1.ZodOptional<z$1.ZodString>;
5528
+ tagline: z$1.ZodOptional<z$1.ZodString>;
5529
+ values: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
5530
+ }, z$1.core.$loose>>;
5531
+ workspace: z$1.ZodDefault<z$1.ZodObject<{
5532
+ kind: z$1.ZodOptional<z$1.ZodEnum<{
5533
+ "external-project": "external-project";
5534
+ "internal-project": "internal-project";
5535
+ none: "none";
5536
+ }>>;
5537
+ owner: z$1.ZodOptional<z$1.ZodEnum<{
5538
+ platform: "platform";
5539
+ client: "client";
5540
+ developer: "developer";
5541
+ }>>;
5542
+ projectId: z$1.ZodOptional<z$1.ZodString>;
5543
+ workspacePath: z$1.ZodOptional<z$1.ZodString>;
5544
+ }, z$1.core.$loose>>;
5545
+ links: z$1.ZodDefault<z$1.ZodObject<{
5546
+ projectIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
5547
+ primaryCompanyId: z$1.ZodOptional<z$1.ZodString>;
5548
+ primaryContactId: z$1.ZodOptional<z$1.ZodString>;
5549
+ sourceDealId: z$1.ZodOptional<z$1.ZodString>;
5550
+ }, z$1.core.$strip>>;
5551
+ prompts: z$1.ZodDefault<z$1.ZodObject<{
5552
+ defaultContext: z$1.ZodDefault<z$1.ZodString>;
5553
+ }, z$1.core.$loose>>;
5554
+ config: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
5555
+ customValues: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
5556
+ }, z$1.core.$strict>>>>;
5487
5557
  customers: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
5488
5558
  id: z$1.ZodString;
5489
5559
  order: z$1.ZodNumber;
@@ -6137,6 +6207,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6137
6207
  action: "action";
6138
6208
  ontology: "ontology";
6139
6209
  role: "role";
6210
+ client: "client";
6140
6211
  stage: "stage";
6141
6212
  goal: "goal";
6142
6213
  "customer-segment": "customer-segment";
@@ -6148,7 +6219,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6148
6219
  nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
6149
6220
  }, z$1.core.$strip>]>, z$1.ZodTransform<{
6150
6221
  target: {
6151
- kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
6222
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
6152
6223
  id: string;
6153
6224
  };
6154
6225
  nodeId: string;
@@ -6156,7 +6227,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6156
6227
  nodeId: string;
6157
6228
  } | {
6158
6229
  target: {
6159
- kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
6230
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
6160
6231
  id: string;
6161
6232
  };
6162
6233
  }>>>>;
@@ -7416,22 +7487,24 @@ declare function getTimeRangeLabel(range: TimeRange): string;
7416
7487
 
7417
7488
  declare const ClientStatusSchema: z$1.ZodEnum<{
7418
7489
  active: "active";
7419
- completed: "completed";
7420
- paused: "paused";
7421
7490
  onboarding: "onboarding";
7491
+ paused: "paused";
7492
+ completed: "completed";
7422
7493
  churned: "churned";
7423
7494
  }>;
7495
+ declare const ClientSourceSchema: z$1.ZodString;
7424
7496
  declare const ClientResponseSchema: z$1.ZodObject<{
7425
7497
  id: z$1.ZodString;
7426
7498
  organizationId: z$1.ZodString;
7427
7499
  name: z$1.ZodString;
7428
7500
  status: z$1.ZodEnum<{
7429
7501
  active: "active";
7430
- completed: "completed";
7431
- paused: "paused";
7432
7502
  onboarding: "onboarding";
7503
+ paused: "paused";
7504
+ completed: "completed";
7433
7505
  churned: "churned";
7434
7506
  }>;
7507
+ source: z$1.ZodString;
7435
7508
  sourceDealId: z$1.ZodNullable<z$1.ZodString>;
7436
7509
  primaryCompanyId: z$1.ZodNullable<z$1.ZodString>;
7437
7510
  primaryContactId: z$1.ZodNullable<z$1.ZodString>;
@@ -7446,11 +7519,12 @@ declare const ClientDetailResponseSchema: z$1.ZodObject<{
7446
7519
  name: z$1.ZodString;
7447
7520
  status: z$1.ZodEnum<{
7448
7521
  active: "active";
7449
- completed: "completed";
7450
- paused: "paused";
7451
7522
  onboarding: "onboarding";
7523
+ paused: "paused";
7524
+ completed: "completed";
7452
7525
  churned: "churned";
7453
7526
  }>;
7527
+ source: z$1.ZodString;
7454
7528
  sourceDealId: z$1.ZodNullable<z$1.ZodString>;
7455
7529
  primaryCompanyId: z$1.ZodNullable<z$1.ZodString>;
7456
7530
  primaryContactId: z$1.ZodNullable<z$1.ZodString>;
@@ -7494,9 +7568,9 @@ declare const ClientStatusResponseSchema: z$1.ZodObject<{
7494
7568
  totalClients: z$1.ZodNumber;
7495
7569
  byStatus: z$1.ZodRecord<z$1.ZodEnum<{
7496
7570
  active: "active";
7497
- completed: "completed";
7498
- paused: "paused";
7499
7571
  onboarding: "onboarding";
7572
+ paused: "paused";
7573
+ completed: "completed";
7500
7574
  churned: "churned";
7501
7575
  }>, z$1.ZodNumber>;
7502
7576
  linkedDeals: z$1.ZodNumber;
@@ -7508,11 +7582,12 @@ declare const CreateClientRequestSchema: z$1.ZodObject<{
7508
7582
  name: z$1.ZodString;
7509
7583
  status: z$1.ZodOptional<z$1.ZodEnum<{
7510
7584
  active: "active";
7511
- completed: "completed";
7512
- paused: "paused";
7513
7585
  onboarding: "onboarding";
7586
+ paused: "paused";
7587
+ completed: "completed";
7514
7588
  churned: "churned";
7515
7589
  }>>;
7590
+ source: z$1.ZodOptional<z$1.ZodString>;
7516
7591
  sourceDealId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7517
7592
  primaryCompanyId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7518
7593
  primaryContactId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
@@ -7522,17 +7597,19 @@ declare const UpdateClientRequestSchema: z$1.ZodObject<{
7522
7597
  name: z$1.ZodOptional<z$1.ZodString>;
7523
7598
  status: z$1.ZodOptional<z$1.ZodEnum<{
7524
7599
  active: "active";
7525
- completed: "completed";
7526
- paused: "paused";
7527
7600
  onboarding: "onboarding";
7601
+ paused: "paused";
7602
+ completed: "completed";
7528
7603
  churned: "churned";
7529
7604
  }>>;
7605
+ source: z$1.ZodOptional<z$1.ZodString>;
7530
7606
  sourceDealId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7531
7607
  primaryCompanyId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7532
7608
  primaryContactId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
7533
7609
  metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>>;
7534
7610
  }, z$1.core.$strict>;
7535
7611
  type ClientStatus = z$1.infer<typeof ClientStatusSchema>;
7612
+ type ClientSource = z$1.infer<typeof ClientSourceSchema>;
7536
7613
  type ClientResponse = z$1.infer<typeof ClientResponseSchema>;
7537
7614
  type ClientDetailResponse = z$1.infer<typeof ClientDetailResponseSchema>;
7538
7615
  type ClientStatusResponse = z$1.infer<typeof ClientStatusResponseSchema>;
@@ -9939,6 +10016,7 @@ declare function useSubmitRequest(): _tanstack_react_query.UseMutationResult<unk
9939
10016
 
9940
10017
  interface ClientsListFilters {
9941
10018
  status?: ClientStatus;
10019
+ source?: ClientSource;
9942
10020
  search?: string;
9943
10021
  limit?: number;
9944
10022
  offset?: number;
@@ -9958,7 +10036,8 @@ declare function useClients(filters?: ClientsListFilters): _tanstack_react_query
9958
10036
  id: string;
9959
10037
  organizationId: string;
9960
10038
  name: string;
9961
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
10039
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
10040
+ source: string;
9962
10041
  sourceDealId: string | null;
9963
10042
  primaryCompanyId: string | null;
9964
10043
  primaryContactId: string | null;
@@ -9974,7 +10053,7 @@ declare function useClients(filters?: ClientsListFilters): _tanstack_react_query
9974
10053
 
9975
10054
  declare function useClientStatus(): _tanstack_react_query.UseQueryResult<{
9976
10055
  totalClients: number;
9977
- byStatus: Record<"active" | "completed" | "paused" | "onboarding" | "churned", number>;
10056
+ byStatus: Record<"active" | "onboarding" | "paused" | "completed" | "churned", number>;
9978
10057
  linkedDeals: number;
9979
10058
  linkedProjects: number;
9980
10059
  linkedCompanies: number;
@@ -9985,7 +10064,8 @@ declare function useClient(clientId: string | undefined): _tanstack_react_query.
9985
10064
  id: string;
9986
10065
  organizationId: string;
9987
10066
  name: string;
9988
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
10067
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
10068
+ source: string;
9989
10069
  sourceDealId: string | null;
9990
10070
  primaryCompanyId: string | null;
9991
10071
  primaryContactId: string | null;
@@ -10030,7 +10110,8 @@ declare function useCreateClient(): _tanstack_react_query.UseMutationResult<{
10030
10110
  id: string;
10031
10111
  organizationId: string;
10032
10112
  name: string;
10033
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
10113
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
10114
+ source: string;
10034
10115
  sourceDealId: string | null;
10035
10116
  primaryCompanyId: string | null;
10036
10117
  primaryContactId: string | null;
@@ -10040,7 +10121,8 @@ declare function useCreateClient(): _tanstack_react_query.UseMutationResult<{
10040
10121
  updatedAt: string;
10041
10122
  }, Error, {
10042
10123
  name: string;
10043
- status?: "active" | "completed" | "paused" | "onboarding" | "churned" | undefined;
10124
+ status?: "active" | "onboarding" | "paused" | "completed" | "churned" | undefined;
10125
+ source?: string | undefined;
10044
10126
  sourceDealId?: string | null | undefined;
10045
10127
  primaryCompanyId?: string | null | undefined;
10046
10128
  primaryContactId?: string | null | undefined;
@@ -10055,7 +10137,8 @@ declare function useUpdateClient(): _tanstack_react_query.UseMutationResult<{
10055
10137
  id: string;
10056
10138
  organizationId: string;
10057
10139
  name: string;
10058
- status: "active" | "completed" | "paused" | "onboarding" | "churned";
10140
+ status: "active" | "onboarding" | "paused" | "completed" | "churned";
10141
+ source: string;
10059
10142
  sourceDealId: string | null;
10060
10143
  primaryCompanyId: string | null;
10061
10144
  primaryContactId: string | null;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- export { createElevasisQueryClient } from './chunk-V5HWC5EW.js';
2
- export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-QDXTIQT4.js';
1
+ export { createElevasisQueryClient } from './chunk-UECAFQKT.js';
2
+ export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-FUKNHVUV.js';
3
3
  export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride, useAvailablePresets, usePresetsContext } from './chunk-NZ2F5RQ4.js';
4
4
  export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground, generateShades, getPreset, PRESETS as presets } from './chunk-OJJK27GC.js';
5
5
  export { TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, brochureStyles, brochureTheme, createCustomValue, createPresetValue, createSurveyConfig, defaultTheme, extractAnswerValue, extractMultiAnswerValues, getAnswerString, getCustomValueText, getMultiAnswerStrings, hasCustomValue, hasPresetValue, isCustomValue, isPresetValue, mergeTheme, useCardStyle, useTypeform, useTypeformContext } from './chunk-AUDNF2Q7.js';
@@ -10,7 +10,7 @@ export { createUseAppInitialization } from './chunk-SJHM4WDG.js';
10
10
  import './chunk-ZTWA5H77.js';
11
11
  export { CardHeader } from './chunk-S3XR4II4.js';
12
12
  export { InitializationContext, InitializationProvider, useInitialization } from './chunk-6DO4PE3O.js';
13
- export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-7FJI76OH.js';
13
+ export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-NVVAQNKE.js';
14
14
  export { OrganizationContext, useOrganization } from './chunk-DD3CCMCZ.js';
15
15
  export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SubshellNavItem, SubshellSidebarSection, seoManifest, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, subshellNavItemIconSize, topbarHeight } from './chunk-GMXGDO3I.js';
16
16
  export { ScrollToTop, TanStackRouterBridge } from './chunk-2IFYDILW.js';
@@ -19,7 +19,7 @@ export { GRAPH_CONSTANTS, calculateGraphHeight, Graph_module_css_default as grap
19
19
  export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-7FPLLSHN.js';
20
20
  import './chunk-RNP5R5I3.js';
21
21
  export { ProfileProvider, UserProfileService, useProfile, useUserProfile } from './chunk-W2SFTXMT.js';
22
- export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from './chunk-5M4HSHQ5.js';
22
+ export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from './chunk-XDEUR36B.js';
23
23
  export { ResourceStatusColors } from './chunk-KRWALB24.js';
24
24
  export { ElevasisServiceProvider, useElevasisServices } from './chunk-2FTX4WO2.js';
25
25
  import './chunk-MQZE7SUI.js';
@@ -1252,6 +1252,7 @@ type Database = {
1252
1252
  organization_id: string;
1253
1253
  primary_company_id: string | null;
1254
1254
  primary_contact_id: string | null;
1255
+ source: string;
1255
1256
  source_deal_id: string | null;
1256
1257
  status: string;
1257
1258
  updated_at: string;
@@ -1265,6 +1266,7 @@ type Database = {
1265
1266
  organization_id: string;
1266
1267
  primary_company_id?: string | null;
1267
1268
  primary_contact_id?: string | null;
1269
+ source?: string;
1268
1270
  source_deal_id?: string | null;
1269
1271
  status?: string;
1270
1272
  updated_at?: string;
@@ -1278,6 +1280,7 @@ type Database = {
1278
1280
  organization_id?: string;
1279
1281
  primary_company_id?: string | null;
1280
1282
  primary_contact_id?: string | null;
1283
+ source?: string;
1281
1284
  source_deal_id?: string | null;
1282
1285
  status?: string;
1283
1286
  updated_at?: string;