@elevasis/ui 1.26.1 → 1.27.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 (53) hide show
  1. package/dist/charts/index.js +2 -2
  2. package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
  3. package/dist/chunk-5COLSYBE.js +199 -0
  4. package/dist/{chunk-RMPXGBNI.js → chunk-5JSR6TL5.js} +2 -2
  5. package/dist/chunk-BAGYETKM.js +635 -0
  6. package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
  7. package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
  8. package/dist/chunk-ITCEULI5.js +238 -0
  9. package/dist/{chunk-4WKWLFBZ.js → chunk-P5EWG45B.js} +1 -1
  10. package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
  11. package/dist/{chunk-ZVJKIJFG.js → chunk-RCQPWA5X.js} +13 -42
  12. package/dist/chunk-TLAIQC7B.js +6382 -0
  13. package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
  14. package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
  15. package/dist/chunk-WJ7W7JU4.js +2115 -0
  16. package/dist/{chunk-YNGQ7U5H.js → chunk-WLNEJ6JJ.js} +2 -2
  17. package/dist/{chunk-4INR75ZS.js → chunk-Y2SYGFRF.js} +589 -65
  18. package/dist/components/index.d.ts +333 -73
  19. package/dist/components/index.js +838 -686
  20. package/dist/features/auth/index.d.ts +125 -0
  21. package/dist/features/auth/index.js +2 -2
  22. package/dist/features/dashboard/index.d.ts +28 -2
  23. package/dist/features/dashboard/index.js +21 -635
  24. package/dist/features/monitoring/index.d.ts +28 -1
  25. package/dist/features/monitoring/index.js +19 -529
  26. package/dist/features/operations/index.d.ts +51 -8
  27. package/dist/features/operations/index.js +25 -3760
  28. package/dist/features/settings/index.d.ts +153 -1
  29. package/dist/features/settings/index.js +19 -1438
  30. package/dist/hooks/index.d.ts +262 -25
  31. package/dist/hooks/index.js +12 -8
  32. package/dist/hooks/published.d.ts +137 -25
  33. package/dist/hooks/published.js +11 -7
  34. package/dist/index.d.ts +310 -28
  35. package/dist/index.js +12 -11
  36. package/dist/initialization/index.d.ts +125 -0
  37. package/dist/layout/index.d.ts +2 -0
  38. package/dist/layout/index.js +6 -5
  39. package/dist/organization/index.js +1 -2
  40. package/dist/profile/index.d.ts +125 -0
  41. package/dist/provider/index.d.ts +48 -3
  42. package/dist/provider/index.js +10 -4
  43. package/dist/provider/published.d.ts +48 -3
  44. package/dist/provider/published.js +8 -2
  45. package/dist/supabase/index.d.ts +242 -0
  46. package/dist/theme/index.js +2 -2
  47. package/dist/types/index.d.ts +126 -1
  48. package/package.json +3 -3
  49. package/dist/chunk-LR4WVA7W.js +0 -682
  50. package/dist/chunk-R7WLWGPO.js +0 -126
  51. package/dist/chunk-TCKIAHDC.js +0 -2626
  52. package/dist/chunk-V7XHGJQZ.js +0 -145
  53. package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
@@ -1665,6 +1665,106 @@ type Database$1 = {
1665
1665
  }
1666
1666
  ];
1667
1667
  };
1668
+ acq_list_companies: {
1669
+ Row: {
1670
+ added_at: string;
1671
+ added_by: string | null;
1672
+ company_id: string;
1673
+ id: string;
1674
+ list_id: string;
1675
+ source_execution_id: string | null;
1676
+ source_input_hash: string | null;
1677
+ source_resource_id: string | null;
1678
+ stage: string | null;
1679
+ stage_updated_at: string | null;
1680
+ };
1681
+ Insert: {
1682
+ added_at?: string;
1683
+ added_by?: string | null;
1684
+ company_id: string;
1685
+ id?: string;
1686
+ list_id: string;
1687
+ source_execution_id?: string | null;
1688
+ source_input_hash?: string | null;
1689
+ source_resource_id?: string | null;
1690
+ stage?: string | null;
1691
+ stage_updated_at?: string | null;
1692
+ };
1693
+ Update: {
1694
+ added_at?: string;
1695
+ added_by?: string | null;
1696
+ company_id?: string;
1697
+ id?: string;
1698
+ list_id?: string;
1699
+ source_execution_id?: string | null;
1700
+ source_input_hash?: string | null;
1701
+ source_resource_id?: string | null;
1702
+ stage?: string | null;
1703
+ stage_updated_at?: string | null;
1704
+ };
1705
+ Relationships: [
1706
+ {
1707
+ foreignKeyName: "acq_list_companies_company_id_fkey";
1708
+ columns: ["company_id"];
1709
+ isOneToOne: false;
1710
+ referencedRelation: "acq_companies";
1711
+ referencedColumns: ["id"];
1712
+ },
1713
+ {
1714
+ foreignKeyName: "acq_list_companies_list_id_fkey";
1715
+ columns: ["list_id"];
1716
+ isOneToOne: false;
1717
+ referencedRelation: "acq_lists";
1718
+ referencedColumns: ["id"];
1719
+ },
1720
+ {
1721
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey";
1722
+ columns: ["source_execution_id"];
1723
+ isOneToOne: false;
1724
+ referencedRelation: "execution_logs";
1725
+ referencedColumns: ["execution_id"];
1726
+ }
1727
+ ];
1728
+ };
1729
+ acq_list_executions: {
1730
+ Row: {
1731
+ created_at: string;
1732
+ execution_id: string;
1733
+ id: string;
1734
+ list_id: string;
1735
+ payload: Json$1;
1736
+ };
1737
+ Insert: {
1738
+ created_at?: string;
1739
+ execution_id: string;
1740
+ id?: string;
1741
+ list_id: string;
1742
+ payload?: Json$1;
1743
+ };
1744
+ Update: {
1745
+ created_at?: string;
1746
+ execution_id?: string;
1747
+ id?: string;
1748
+ list_id?: string;
1749
+ payload?: Json$1;
1750
+ };
1751
+ Relationships: [
1752
+ {
1753
+ foreignKeyName: "acq_list_executions_execution_id_fkey";
1754
+ columns: ["execution_id"];
1755
+ isOneToOne: false;
1756
+ referencedRelation: "execution_logs";
1757
+ referencedColumns: ["execution_id"];
1758
+ },
1759
+ {
1760
+ foreignKeyName: "acq_list_executions_list_id_fkey";
1761
+ columns: ["list_id"];
1762
+ isOneToOne: false;
1763
+ referencedRelation: "acq_lists";
1764
+ referencedColumns: ["id"];
1765
+ }
1766
+ ];
1767
+ };
1668
1768
  acq_list_members: {
1669
1769
  Row: {
1670
1770
  added_at: string;
@@ -1672,6 +1772,11 @@ type Database$1 = {
1672
1772
  contact_id: string;
1673
1773
  id: string;
1674
1774
  list_id: string;
1775
+ source_execution_id: string | null;
1776
+ source_input_hash: string | null;
1777
+ source_resource_id: string | null;
1778
+ stage: string | null;
1779
+ stage_updated_at: string | null;
1675
1780
  };
1676
1781
  Insert: {
1677
1782
  added_at?: string;
@@ -1679,6 +1784,11 @@ type Database$1 = {
1679
1784
  contact_id: string;
1680
1785
  id?: string;
1681
1786
  list_id: string;
1787
+ source_execution_id?: string | null;
1788
+ source_input_hash?: string | null;
1789
+ source_resource_id?: string | null;
1790
+ stage?: string | null;
1791
+ stage_updated_at?: string | null;
1682
1792
  };
1683
1793
  Update: {
1684
1794
  added_at?: string;
@@ -1686,6 +1796,11 @@ type Database$1 = {
1686
1796
  contact_id?: string;
1687
1797
  id?: string;
1688
1798
  list_id?: string;
1799
+ source_execution_id?: string | null;
1800
+ source_input_hash?: string | null;
1801
+ source_resource_id?: string | null;
1802
+ stage?: string | null;
1803
+ stage_updated_at?: string | null;
1689
1804
  };
1690
1805
  Relationships: [
1691
1806
  {
@@ -1701,6 +1816,13 @@ type Database$1 = {
1701
1816
  isOneToOne: false;
1702
1817
  referencedRelation: "acq_lists";
1703
1818
  referencedColumns: ["id"];
1819
+ },
1820
+ {
1821
+ foreignKeyName: "acq_list_members_source_execution_id_fkey";
1822
+ columns: ["source_execution_id"];
1823
+ isOneToOne: false;
1824
+ referencedRelation: "execution_logs";
1825
+ referencedColumns: ["execution_id"];
1704
1826
  }
1705
1827
  ];
1706
1828
  };
@@ -1708,6 +1830,7 @@ type Database$1 = {
1708
1830
  Row: {
1709
1831
  batch_ids: string[];
1710
1832
  completed_at: string | null;
1833
+ config: Json$1;
1711
1834
  created_at: string;
1712
1835
  description: string | null;
1713
1836
  id: string;
@@ -1722,6 +1845,7 @@ type Database$1 = {
1722
1845
  Insert: {
1723
1846
  batch_ids?: string[];
1724
1847
  completed_at?: string | null;
1848
+ config?: Json$1;
1725
1849
  created_at?: string;
1726
1850
  description?: string | null;
1727
1851
  id?: string;
@@ -1736,6 +1860,7 @@ type Database$1 = {
1736
1860
  Update: {
1737
1861
  batch_ids?: string[];
1738
1862
  completed_at?: string | null;
1863
+ config?: Json$1;
1739
1864
  created_at?: string;
1740
1865
  description?: string | null;
1741
1866
  id?: string;
@@ -3864,7 +3989,7 @@ interface NotificationDTO {
3864
3989
 
3865
3990
  /** Raw database row type for acq_deals table */
3866
3991
  type AcqDealRow = Database$1['public']['Tables']['acq_deals']['Row'];
3867
- type DealStage = 'interested' | 'booked' | 'qualified' | 'demo_booked' | 'proposal' | 'proposal_sent' | 'proposal_signed' | 'payment_sent' | 'proposal_revision' | 'closed_won' | 'closed_lost' | 'nurturing' | 'cancelled' | 'no_show';
3992
+ type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
3868
3993
  interface DealContact {
3869
3994
  id: string;
3870
3995
  first_name: string | null;
@@ -3917,45 +4042,30 @@ interface AcqDealTask {
3917
4042
  createdByUserId: string | null;
3918
4043
  }
3919
4044
  /**
3920
- * Aggregated pipeline telemetry for a single acquisition batch.
3921
- * Stage counts reflect how far companies/contacts have progressed through
3922
- * the lead-gen pipeline for the given batchId.
4045
+ * Live-scan aggregate telemetry for a single list, computed on demand from
4046
+ * the list junction tables and current contact deliverability state.
3923
4047
  */
3924
- interface BatchTelemetry {
3925
- batchId: string;
4048
+ interface ListTelemetry {
4049
+ listId: string;
3926
4050
  totalCompanies: number;
3927
4051
  totalContacts: number;
3928
- /** Per-stage company and contact counts derived from pipeline_status fields */
3929
4052
  stageCounts: {
3930
- /** Companies where pipeline_status.acquired === true */
3931
- scraped: number;
3932
- /** Companies where pipeline_status.enrichment.websiteCrawl?.status === 'complete' */
4053
+ populated: number;
3933
4054
  extracted: number;
3934
- /** Companies where category_pain != null */
3935
- categoryPained: number;
3936
- /** Companies where category != null AND category_pain != null */
3937
4055
  qualified: number;
3938
- /** Total contacts belonging to the batch */
3939
4056
  discovered: number;
3940
- /** Contacts where email_valid != null */
3941
4057
  verified: number;
3942
- /** Contacts where pipeline_status.personalization.status === 'complete' */
3943
4058
  personalized: number;
4059
+ uploaded: number;
3944
4060
  };
3945
- /** Email deliverability breakdown for contacts in the batch */
3946
4061
  deliverability: {
3947
- /** Contacts where email_valid === 'VALID' */
3948
4062
  valid: number;
3949
- /** Contacts where email_valid === 'RISKY' */
3950
4063
  risky: number;
3951
- /** Contacts where email_valid === 'INVALID' */
3952
4064
  invalid: number;
3953
- /** Contacts where email_valid === 'UNKNOWN' or email_valid is null */
3954
4065
  unknown: number;
3955
- /** Contacts where pipeline_status.outreach.status === 'bounced' */
3956
4066
  bounced: number;
3957
4067
  };
3958
- /** Reserved for future use — active workflow IDs associated with this batch */
4068
+ /** Reserved -- active workflow IDs associated with this list. */
3959
4069
  activeWorkflows?: string[];
3960
4070
  }
3961
4071
 
@@ -6274,6 +6384,106 @@ type Database = {
6274
6384
  },
6275
6385
  ]
6276
6386
  }
6387
+ acq_list_companies: {
6388
+ Row: {
6389
+ added_at: string
6390
+ added_by: string | null
6391
+ company_id: string
6392
+ id: string
6393
+ list_id: string
6394
+ source_execution_id: string | null
6395
+ source_input_hash: string | null
6396
+ source_resource_id: string | null
6397
+ stage: string | null
6398
+ stage_updated_at: string | null
6399
+ }
6400
+ Insert: {
6401
+ added_at?: string
6402
+ added_by?: string | null
6403
+ company_id: string
6404
+ id?: string
6405
+ list_id: string
6406
+ source_execution_id?: string | null
6407
+ source_input_hash?: string | null
6408
+ source_resource_id?: string | null
6409
+ stage?: string | null
6410
+ stage_updated_at?: string | null
6411
+ }
6412
+ Update: {
6413
+ added_at?: string
6414
+ added_by?: string | null
6415
+ company_id?: string
6416
+ id?: string
6417
+ list_id?: string
6418
+ source_execution_id?: string | null
6419
+ source_input_hash?: string | null
6420
+ source_resource_id?: string | null
6421
+ stage?: string | null
6422
+ stage_updated_at?: string | null
6423
+ }
6424
+ Relationships: [
6425
+ {
6426
+ foreignKeyName: "acq_list_companies_company_id_fkey"
6427
+ columns: ["company_id"]
6428
+ isOneToOne: false
6429
+ referencedRelation: "acq_companies"
6430
+ referencedColumns: ["id"]
6431
+ },
6432
+ {
6433
+ foreignKeyName: "acq_list_companies_list_id_fkey"
6434
+ columns: ["list_id"]
6435
+ isOneToOne: false
6436
+ referencedRelation: "acq_lists"
6437
+ referencedColumns: ["id"]
6438
+ },
6439
+ {
6440
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey"
6441
+ columns: ["source_execution_id"]
6442
+ isOneToOne: false
6443
+ referencedRelation: "execution_logs"
6444
+ referencedColumns: ["execution_id"]
6445
+ },
6446
+ ]
6447
+ }
6448
+ acq_list_executions: {
6449
+ Row: {
6450
+ created_at: string
6451
+ execution_id: string
6452
+ id: string
6453
+ list_id: string
6454
+ payload: Json
6455
+ }
6456
+ Insert: {
6457
+ created_at?: string
6458
+ execution_id: string
6459
+ id?: string
6460
+ list_id: string
6461
+ payload?: Json
6462
+ }
6463
+ Update: {
6464
+ created_at?: string
6465
+ execution_id?: string
6466
+ id?: string
6467
+ list_id?: string
6468
+ payload?: Json
6469
+ }
6470
+ Relationships: [
6471
+ {
6472
+ foreignKeyName: "acq_list_executions_execution_id_fkey"
6473
+ columns: ["execution_id"]
6474
+ isOneToOne: false
6475
+ referencedRelation: "execution_logs"
6476
+ referencedColumns: ["execution_id"]
6477
+ },
6478
+ {
6479
+ foreignKeyName: "acq_list_executions_list_id_fkey"
6480
+ columns: ["list_id"]
6481
+ isOneToOne: false
6482
+ referencedRelation: "acq_lists"
6483
+ referencedColumns: ["id"]
6484
+ },
6485
+ ]
6486
+ }
6277
6487
  acq_list_members: {
6278
6488
  Row: {
6279
6489
  added_at: string
@@ -6281,6 +6491,11 @@ type Database = {
6281
6491
  contact_id: string
6282
6492
  id: string
6283
6493
  list_id: string
6494
+ source_execution_id: string | null
6495
+ source_input_hash: string | null
6496
+ source_resource_id: string | null
6497
+ stage: string | null
6498
+ stage_updated_at: string | null
6284
6499
  }
6285
6500
  Insert: {
6286
6501
  added_at?: string
@@ -6288,6 +6503,11 @@ type Database = {
6288
6503
  contact_id: string
6289
6504
  id?: string
6290
6505
  list_id: string
6506
+ source_execution_id?: string | null
6507
+ source_input_hash?: string | null
6508
+ source_resource_id?: string | null
6509
+ stage?: string | null
6510
+ stage_updated_at?: string | null
6291
6511
  }
6292
6512
  Update: {
6293
6513
  added_at?: string
@@ -6295,6 +6515,11 @@ type Database = {
6295
6515
  contact_id?: string
6296
6516
  id?: string
6297
6517
  list_id?: string
6518
+ source_execution_id?: string | null
6519
+ source_input_hash?: string | null
6520
+ source_resource_id?: string | null
6521
+ stage?: string | null
6522
+ stage_updated_at?: string | null
6298
6523
  }
6299
6524
  Relationships: [
6300
6525
  {
@@ -6311,12 +6536,20 @@ type Database = {
6311
6536
  referencedRelation: "acq_lists"
6312
6537
  referencedColumns: ["id"]
6313
6538
  },
6539
+ {
6540
+ foreignKeyName: "acq_list_members_source_execution_id_fkey"
6541
+ columns: ["source_execution_id"]
6542
+ isOneToOne: false
6543
+ referencedRelation: "execution_logs"
6544
+ referencedColumns: ["execution_id"]
6545
+ },
6314
6546
  ]
6315
6547
  }
6316
6548
  acq_lists: {
6317
6549
  Row: {
6318
6550
  batch_ids: string[]
6319
6551
  completed_at: string | null
6552
+ config: Json
6320
6553
  created_at: string
6321
6554
  description: string | null
6322
6555
  id: string
@@ -6331,6 +6564,7 @@ type Database = {
6331
6564
  Insert: {
6332
6565
  batch_ids?: string[]
6333
6566
  completed_at?: string | null
6567
+ config?: Json
6334
6568
  created_at?: string
6335
6569
  description?: string | null
6336
6570
  id?: string
@@ -6345,6 +6579,7 @@ type Database = {
6345
6579
  Update: {
6346
6580
  batch_ids?: string[]
6347
6581
  completed_at?: string | null
6582
+ config?: Json
6348
6583
  created_at?: string
6349
6584
  description?: string | null
6350
6585
  id?: string
@@ -9977,6 +10212,8 @@ interface UseExecutionPanelStateOptions {
9977
10212
  apiUrl: string;
9978
10213
  limit?: number;
9979
10214
  onConnectionStatus?: (connected: boolean, runningCount: number) => void;
10215
+ selectedId?: string | null;
10216
+ onSelectedIdChange?: (id: string | null) => void;
9980
10217
  }
9981
10218
  interface UseExecutionPanelStateReturn {
9982
10219
  executions: APIExecutionSummary$1[];
@@ -10009,7 +10246,7 @@ interface UseExecutionPanelStateReturn {
10009
10246
  * } = useExecutionPanelState({ resourceId, manager, onConnectionStatus })
10010
10247
  * ```
10011
10248
  */
10012
- declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
10249
+ declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
10013
10250
 
10014
10251
  /**
10015
10252
  * Utilities for extracting typed properties from resource definitions
@@ -10537,7 +10774,7 @@ interface CompleteDealTaskParams {
10537
10774
  */
10538
10775
  declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
10539
10776
 
10540
- declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<BatchTelemetry[], Error>;
10777
+ declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
10541
10778
 
10542
10779
  // Row types from Supabase
10543
10780
  type ProjectRow = Database['public']['Tables']['prj_projects']['Row']
@@ -1,20 +1,24 @@
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-YNGQ7U5H.js';
2
- export { OperationsService, calibrationKeys, createUseFeatureAccess, 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-ZVJKIJFG.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-WLNEJ6JJ.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-RCQPWA5X.js';
3
3
  export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
4
4
  import '../chunk-F6RBK7NJ.js';
5
- import '../chunk-L4XXM55J.js';
6
- import '../chunk-RNP5R5I3.js';
7
- import '../chunk-RMPXGBNI.js';
5
+ import '../chunk-5JSR6TL5.js';
8
6
  import '../chunk-SZHARWKU.js';
9
- import '../chunk-FEZZ3IDU.js';
7
+ import '../chunk-TXPUIHX2.js';
10
8
  import '../chunk-CYXZHBP4.js';
11
- import '../chunk-R7WLWGPO.js';
9
+ export { createUseFeatureAccess } from '../chunk-ITCEULI5.js';
10
+ import '../chunk-5COLSYBE.js';
12
11
  import '../chunk-NVOCKXUQ.js';
13
- import '../chunk-V7XHGJQZ.js';
12
+ import '../chunk-MHW43EOH.js';
13
+ import '../chunk-W4VYXIN7.js';
14
14
  import '../chunk-QJ2KCHKX.js';
15
+ import '../chunk-QJ2S46NI.js';
16
+ import '../chunk-SLVC5OJ2.js';
17
+ import '../chunk-RNP5R5I3.js';
15
18
  export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-IOKL7BKE.js';
16
19
  import '../chunk-ALA56RGZ.js';
17
20
  import '../chunk-TUXTSEAF.js';
18
21
  import '../chunk-DD3CCMCZ.js';
19
22
  import '../chunk-QEPXAWE2.js';
20
23
  import '../chunk-BRJ3QZ4E.js';
24
+ import '../chunk-Q7DJKLEN.js';