@elevasis/ui 1.26.1 → 1.28.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/charts/index.js +2 -2
  2. package/dist/{chunk-MHW43EOH.js → chunk-2IFYDILW.js} +2 -1
  3. package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
  4. package/dist/{chunk-4INR75ZS.js → chunk-37NT4BNV.js} +589 -65
  5. package/dist/chunk-5COLSYBE.js +199 -0
  6. package/dist/{chunk-YNGQ7U5H.js → chunk-7CJ5QBN2.js} +2 -2
  7. package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
  8. package/dist/chunk-C4WOXS2C.js +6646 -0
  9. package/dist/{chunk-RMPXGBNI.js → chunk-D25AE46Q.js} +2 -2
  10. package/dist/{chunk-ZVJKIJFG.js → chunk-EBCIUZVV.js} +13 -42
  11. package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
  12. package/dist/chunk-KLG4H5NM.js +247 -0
  13. package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
  14. package/dist/chunk-S4S6K4MV.js +635 -0
  15. package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
  16. package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
  17. package/dist/{chunk-4WKWLFBZ.js → chunk-ZUJ7WMGV.js} +1 -1
  18. package/dist/chunk-ZXBD5SBV.js +2115 -0
  19. package/dist/components/index.d.ts +339 -73
  20. package/dist/components/index.js +840 -688
  21. package/dist/features/auth/index.d.ts +125 -0
  22. package/dist/features/auth/index.js +2 -2
  23. package/dist/features/dashboard/index.d.ts +28 -2
  24. package/dist/features/dashboard/index.js +21 -635
  25. package/dist/features/monitoring/index.d.ts +28 -1
  26. package/dist/features/monitoring/index.js +19 -529
  27. package/dist/features/operations/index.d.ts +57 -8
  28. package/dist/features/operations/index.js +25 -3760
  29. package/dist/features/settings/index.d.ts +153 -1
  30. package/dist/features/settings/index.js +19 -1438
  31. package/dist/hooks/index.d.ts +262 -25
  32. package/dist/hooks/index.js +12 -8
  33. package/dist/hooks/published.d.ts +137 -25
  34. package/dist/hooks/published.js +11 -7
  35. package/dist/index.d.ts +388 -99
  36. package/dist/index.js +12 -11
  37. package/dist/initialization/index.d.ts +125 -0
  38. package/dist/layout/index.d.ts +2 -0
  39. package/dist/layout/index.js +6 -5
  40. package/dist/organization/index.js +1 -2
  41. package/dist/profile/index.d.ts +125 -0
  42. package/dist/provider/index.d.ts +130 -3
  43. package/dist/provider/index.js +10 -4
  44. package/dist/provider/published.d.ts +130 -3
  45. package/dist/provider/published.js +8 -2
  46. package/dist/router/context.d.ts +1 -0
  47. package/dist/router/index.d.ts +1 -0
  48. package/dist/router/index.js +1 -1
  49. package/dist/supabase/index.d.ts +242 -0
  50. package/dist/theme/index.js +2 -2
  51. package/dist/types/index.d.ts +126 -1
  52. package/package.json +1 -1
  53. package/dist/chunk-LR4WVA7W.js +0 -682
  54. package/dist/chunk-R7WLWGPO.js +0 -126
  55. package/dist/chunk-TCKIAHDC.js +0 -2626
  56. package/dist/chunk-V7XHGJQZ.js +0 -145
  57. package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as react from 'react';
2
- import { ReactNode, MouseEvent, AnchorHTMLAttributes, ElementType } from 'react';
2
+ import { ReactNode, MouseEvent, AnchorHTMLAttributes, ElementType, ComponentType } from 'react';
3
3
  import * as _tanstack_react_query from '@tanstack/react-query';
4
4
  import { QueryClient } from '@tanstack/react-query';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -2071,6 +2071,106 @@ type Database$1 = {
2071
2071
  }
2072
2072
  ];
2073
2073
  };
2074
+ acq_list_companies: {
2075
+ Row: {
2076
+ added_at: string;
2077
+ added_by: string | null;
2078
+ company_id: string;
2079
+ id: string;
2080
+ list_id: string;
2081
+ source_execution_id: string | null;
2082
+ source_input_hash: string | null;
2083
+ source_resource_id: string | null;
2084
+ stage: string | null;
2085
+ stage_updated_at: string | null;
2086
+ };
2087
+ Insert: {
2088
+ added_at?: string;
2089
+ added_by?: string | null;
2090
+ company_id: string;
2091
+ id?: string;
2092
+ list_id: string;
2093
+ source_execution_id?: string | null;
2094
+ source_input_hash?: string | null;
2095
+ source_resource_id?: string | null;
2096
+ stage?: string | null;
2097
+ stage_updated_at?: string | null;
2098
+ };
2099
+ Update: {
2100
+ added_at?: string;
2101
+ added_by?: string | null;
2102
+ company_id?: string;
2103
+ id?: string;
2104
+ list_id?: string;
2105
+ source_execution_id?: string | null;
2106
+ source_input_hash?: string | null;
2107
+ source_resource_id?: string | null;
2108
+ stage?: string | null;
2109
+ stage_updated_at?: string | null;
2110
+ };
2111
+ Relationships: [
2112
+ {
2113
+ foreignKeyName: "acq_list_companies_company_id_fkey";
2114
+ columns: ["company_id"];
2115
+ isOneToOne: false;
2116
+ referencedRelation: "acq_companies";
2117
+ referencedColumns: ["id"];
2118
+ },
2119
+ {
2120
+ foreignKeyName: "acq_list_companies_list_id_fkey";
2121
+ columns: ["list_id"];
2122
+ isOneToOne: false;
2123
+ referencedRelation: "acq_lists";
2124
+ referencedColumns: ["id"];
2125
+ },
2126
+ {
2127
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey";
2128
+ columns: ["source_execution_id"];
2129
+ isOneToOne: false;
2130
+ referencedRelation: "execution_logs";
2131
+ referencedColumns: ["execution_id"];
2132
+ }
2133
+ ];
2134
+ };
2135
+ acq_list_executions: {
2136
+ Row: {
2137
+ created_at: string;
2138
+ execution_id: string;
2139
+ id: string;
2140
+ list_id: string;
2141
+ payload: Json$1;
2142
+ };
2143
+ Insert: {
2144
+ created_at?: string;
2145
+ execution_id: string;
2146
+ id?: string;
2147
+ list_id: string;
2148
+ payload?: Json$1;
2149
+ };
2150
+ Update: {
2151
+ created_at?: string;
2152
+ execution_id?: string;
2153
+ id?: string;
2154
+ list_id?: string;
2155
+ payload?: Json$1;
2156
+ };
2157
+ Relationships: [
2158
+ {
2159
+ foreignKeyName: "acq_list_executions_execution_id_fkey";
2160
+ columns: ["execution_id"];
2161
+ isOneToOne: false;
2162
+ referencedRelation: "execution_logs";
2163
+ referencedColumns: ["execution_id"];
2164
+ },
2165
+ {
2166
+ foreignKeyName: "acq_list_executions_list_id_fkey";
2167
+ columns: ["list_id"];
2168
+ isOneToOne: false;
2169
+ referencedRelation: "acq_lists";
2170
+ referencedColumns: ["id"];
2171
+ }
2172
+ ];
2173
+ };
2074
2174
  acq_list_members: {
2075
2175
  Row: {
2076
2176
  added_at: string;
@@ -2078,6 +2178,11 @@ type Database$1 = {
2078
2178
  contact_id: string;
2079
2179
  id: string;
2080
2180
  list_id: string;
2181
+ source_execution_id: string | null;
2182
+ source_input_hash: string | null;
2183
+ source_resource_id: string | null;
2184
+ stage: string | null;
2185
+ stage_updated_at: string | null;
2081
2186
  };
2082
2187
  Insert: {
2083
2188
  added_at?: string;
@@ -2085,6 +2190,11 @@ type Database$1 = {
2085
2190
  contact_id: string;
2086
2191
  id?: string;
2087
2192
  list_id: string;
2193
+ source_execution_id?: string | null;
2194
+ source_input_hash?: string | null;
2195
+ source_resource_id?: string | null;
2196
+ stage?: string | null;
2197
+ stage_updated_at?: string | null;
2088
2198
  };
2089
2199
  Update: {
2090
2200
  added_at?: string;
@@ -2092,6 +2202,11 @@ type Database$1 = {
2092
2202
  contact_id?: string;
2093
2203
  id?: string;
2094
2204
  list_id?: string;
2205
+ source_execution_id?: string | null;
2206
+ source_input_hash?: string | null;
2207
+ source_resource_id?: string | null;
2208
+ stage?: string | null;
2209
+ stage_updated_at?: string | null;
2095
2210
  };
2096
2211
  Relationships: [
2097
2212
  {
@@ -2107,6 +2222,13 @@ type Database$1 = {
2107
2222
  isOneToOne: false;
2108
2223
  referencedRelation: "acq_lists";
2109
2224
  referencedColumns: ["id"];
2225
+ },
2226
+ {
2227
+ foreignKeyName: "acq_list_members_source_execution_id_fkey";
2228
+ columns: ["source_execution_id"];
2229
+ isOneToOne: false;
2230
+ referencedRelation: "execution_logs";
2231
+ referencedColumns: ["execution_id"];
2110
2232
  }
2111
2233
  ];
2112
2234
  };
@@ -2114,6 +2236,7 @@ type Database$1 = {
2114
2236
  Row: {
2115
2237
  batch_ids: string[];
2116
2238
  completed_at: string | null;
2239
+ config: Json$1;
2117
2240
  created_at: string;
2118
2241
  description: string | null;
2119
2242
  id: string;
@@ -2128,6 +2251,7 @@ type Database$1 = {
2128
2251
  Insert: {
2129
2252
  batch_ids?: string[];
2130
2253
  completed_at?: string | null;
2254
+ config?: Json$1;
2131
2255
  created_at?: string;
2132
2256
  description?: string | null;
2133
2257
  id?: string;
@@ -2142,6 +2266,7 @@ type Database$1 = {
2142
2266
  Update: {
2143
2267
  batch_ids?: string[];
2144
2268
  completed_at?: string | null;
2269
+ config?: Json$1;
2145
2270
  created_at?: string;
2146
2271
  description?: string | null;
2147
2272
  id?: string;
@@ -4326,7 +4451,7 @@ interface NotificationDTO {
4326
4451
 
4327
4452
  /** Raw database row type for acq_deals table */
4328
4453
  type AcqDealRow = Database$1['public']['Tables']['acq_deals']['Row'];
4329
- type DealStage = 'interested' | 'booked' | 'qualified' | 'demo_booked' | 'proposal' | 'proposal_sent' | 'proposal_signed' | 'payment_sent' | 'proposal_revision' | 'closed_won' | 'closed_lost' | 'nurturing' | 'cancelled' | 'no_show';
4454
+ type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
4330
4455
  interface DealContact {
4331
4456
  id: string;
4332
4457
  first_name: string | null;
@@ -4379,45 +4504,30 @@ interface AcqDealTask {
4379
4504
  createdByUserId: string | null;
4380
4505
  }
4381
4506
  /**
4382
- * Aggregated pipeline telemetry for a single acquisition batch.
4383
- * Stage counts reflect how far companies/contacts have progressed through
4384
- * the lead-gen pipeline for the given batchId.
4507
+ * Live-scan aggregate telemetry for a single list, computed on demand from
4508
+ * the list junction tables and current contact deliverability state.
4385
4509
  */
4386
- interface BatchTelemetry {
4387
- batchId: string;
4510
+ interface ListTelemetry {
4511
+ listId: string;
4388
4512
  totalCompanies: number;
4389
4513
  totalContacts: number;
4390
- /** Per-stage company and contact counts derived from pipeline_status fields */
4391
4514
  stageCounts: {
4392
- /** Companies where pipeline_status.acquired === true */
4393
- scraped: number;
4394
- /** Companies where pipeline_status.enrichment.websiteCrawl?.status === 'complete' */
4515
+ populated: number;
4395
4516
  extracted: number;
4396
- /** Companies where category_pain != null */
4397
- categoryPained: number;
4398
- /** Companies where category != null AND category_pain != null */
4399
4517
  qualified: number;
4400
- /** Total contacts belonging to the batch */
4401
4518
  discovered: number;
4402
- /** Contacts where email_valid != null */
4403
4519
  verified: number;
4404
- /** Contacts where pipeline_status.personalization.status === 'complete' */
4405
4520
  personalized: number;
4521
+ uploaded: number;
4406
4522
  };
4407
- /** Email deliverability breakdown for contacts in the batch */
4408
4523
  deliverability: {
4409
- /** Contacts where email_valid === 'VALID' */
4410
4524
  valid: number;
4411
- /** Contacts where email_valid === 'RISKY' */
4412
4525
  risky: number;
4413
- /** Contacts where email_valid === 'INVALID' */
4414
4526
  invalid: number;
4415
- /** Contacts where email_valid === 'UNKNOWN' or email_valid is null */
4416
4527
  unknown: number;
4417
- /** Contacts where pipeline_status.outreach.status === 'bounced' */
4418
4528
  bounced: number;
4419
4529
  };
4420
- /** Reserved for future use — active workflow IDs associated with this batch */
4530
+ /** Reserved -- active workflow IDs associated with this list. */
4421
4531
  activeWorkflows?: string[];
4422
4532
  }
4423
4533
 
@@ -6657,6 +6767,7 @@ interface LinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
6657
6767
  }
6658
6768
  interface RouterAdapter {
6659
6769
  currentPath: string;
6770
+ currentSearch?: string;
6660
6771
  navigate: (to: string) => void;
6661
6772
  Link: ElementType<LinkProps>;
6662
6773
  }
@@ -6712,6 +6823,128 @@ declare function ScrollToTop(): react_jsx_runtime.JSX.Element;
6712
6823
  */
6713
6824
  declare function ElevasisCoreProvider({ auth, queryClient, apiUrl, onError, notifications, children }: ElevasisCoreProviderProps): react_jsx_runtime.JSX.Element;
6714
6825
 
6826
+ interface EventSourceMessage {
6827
+ id: string;
6828
+ event: string;
6829
+ data: string;
6830
+ retry?: number;
6831
+ }
6832
+
6833
+ interface FetchEventSourceWithTokenRefreshOptions {
6834
+ url: string;
6835
+ getToken: () => Promise<string | undefined>;
6836
+ headers?: Record<string, string>;
6837
+ signal: AbortSignal;
6838
+ /** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
6839
+ tokenRefreshDelayMs?: number;
6840
+ onopen?: (response: Response) => void | Promise<void>;
6841
+ onmessage?: (event: EventSourceMessage) => void;
6842
+ onerror?: (error: unknown) => void;
6843
+ onclose?: () => void;
6844
+ }
6845
+
6846
+ interface SSEConnectionManagerOptions {
6847
+ /** Grace period in ms before closing idle connections. Defaults to 5000. */
6848
+ closeGracePeriodMs?: number;
6849
+ }
6850
+ /**
6851
+ * SSE Connection Manager
6852
+ *
6853
+ * Ensures only ONE SSE connection exists per endpoint, preventing duplicate
6854
+ * connections when components re-render or remount.
6855
+ *
6856
+ * Benefits:
6857
+ * - Prevents resource waste from duplicate connections
6858
+ * - Eliminates race conditions from overlapping connections
6859
+ * - Automatically manages connection lifecycle
6860
+ * - Shares single connection across multiple subscribers
6861
+ */
6862
+ declare class SSEConnectionManager {
6863
+ private connections;
6864
+ private closeGracePeriodMs;
6865
+ constructor(options?: SSEConnectionManagerOptions);
6866
+ /**
6867
+ * Subscribe to an SSE endpoint
6868
+ *
6869
+ * If a connection already exists for this endpoint, reuses it.
6870
+ * Otherwise, creates a new connection.
6871
+ *
6872
+ * @param key - Unique identifier for the connection (e.g., 'notifications', 'resource-executive-agent')
6873
+ * @param subscriberId - Unique identifier for this subscriber (usually component instance)
6874
+ * @param options - SSE connection options
6875
+ * @returns Unsubscribe function to call when component unmounts
6876
+ */
6877
+ subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
6878
+ /**
6879
+ * Unsubscribe from an SSE endpoint
6880
+ *
6881
+ * If this is the last subscriber, closes the connection after grace period.
6882
+ */
6883
+ private unsubscribe;
6884
+ /**
6885
+ * Force close a connection and all its subscribers
6886
+ */
6887
+ closeConnection(key: string): void;
6888
+ /**
6889
+ * Get current connection status
6890
+ */
6891
+ getConnectionInfo(): Map<string, {
6892
+ url: string;
6893
+ subscribers: number;
6894
+ }>;
6895
+ }
6896
+
6897
+ interface FeatureNavLink {
6898
+ label: string;
6899
+ link: string;
6900
+ featureKey?: string;
6901
+ onClick?: () => void;
6902
+ }
6903
+ interface FeatureNavEntry {
6904
+ label: string;
6905
+ icon: ComponentType;
6906
+ link?: string;
6907
+ featureKey?: string;
6908
+ requiresAdmin?: boolean;
6909
+ dataOnboardingTourId?: string;
6910
+ links?: FeatureNavLink[];
6911
+ }
6912
+ type FeatureSidebarComponent = ComponentType;
6913
+ interface FeatureModule {
6914
+ key: string;
6915
+ label?: string;
6916
+ navEntry?: FeatureNavEntry;
6917
+ sidebar?: FeatureSidebarComponent;
6918
+ subshellRoutes?: string[];
6919
+ }
6920
+ interface FeatureRegistry {
6921
+ features: FeatureModule[];
6922
+ }
6923
+ interface ElevasisFeaturesProviderProps {
6924
+ features: FeatureModule[];
6925
+ timeRange?: TimeRange;
6926
+ operationsApiUrl?: string;
6927
+ operationsSSEManager?: SSEConnectionManager;
6928
+ children: ReactNode;
6929
+ }
6930
+ interface ElevasisFeaturesContextValue {
6931
+ navItems: FeatureNavEntry[];
6932
+ enabledFeatures: FeatureModule[];
6933
+ allFeatures: FeatureModule[];
6934
+ timeRange?: TimeRange;
6935
+ operationsApiUrl?: string;
6936
+ operationsSSEManager?: SSEConnectionManager;
6937
+ isFeatureEnabled: (key: string) => boolean;
6938
+ getFeature: (key: string) => FeatureModule | undefined;
6939
+ }
6940
+
6941
+ declare function useElevasisFeatures(): ElevasisFeaturesContextValue;
6942
+ declare function ElevasisFeaturesProvider({ features, timeRange, operationsApiUrl, operationsSSEManager, children }: ElevasisFeaturesProviderProps): react_jsx_runtime.JSX.Element;
6943
+
6944
+ declare function FeatureShell({ children }: {
6945
+ children: ReactNode;
6946
+ }): react_jsx_runtime.JSX.Element;
6947
+
6715
6948
  interface AppearanceConfig {
6716
6949
  /** Background layers rendered behind app content. Defaults to Elevasis background. */
6717
6950
  background?: ReactNode;
@@ -7672,6 +7905,106 @@ type Database = {
7672
7905
  },
7673
7906
  ]
7674
7907
  }
7908
+ acq_list_companies: {
7909
+ Row: {
7910
+ added_at: string
7911
+ added_by: string | null
7912
+ company_id: string
7913
+ id: string
7914
+ list_id: string
7915
+ source_execution_id: string | null
7916
+ source_input_hash: string | null
7917
+ source_resource_id: string | null
7918
+ stage: string | null
7919
+ stage_updated_at: string | null
7920
+ }
7921
+ Insert: {
7922
+ added_at?: string
7923
+ added_by?: string | null
7924
+ company_id: string
7925
+ id?: string
7926
+ list_id: string
7927
+ source_execution_id?: string | null
7928
+ source_input_hash?: string | null
7929
+ source_resource_id?: string | null
7930
+ stage?: string | null
7931
+ stage_updated_at?: string | null
7932
+ }
7933
+ Update: {
7934
+ added_at?: string
7935
+ added_by?: string | null
7936
+ company_id?: string
7937
+ id?: string
7938
+ list_id?: string
7939
+ source_execution_id?: string | null
7940
+ source_input_hash?: string | null
7941
+ source_resource_id?: string | null
7942
+ stage?: string | null
7943
+ stage_updated_at?: string | null
7944
+ }
7945
+ Relationships: [
7946
+ {
7947
+ foreignKeyName: "acq_list_companies_company_id_fkey"
7948
+ columns: ["company_id"]
7949
+ isOneToOne: false
7950
+ referencedRelation: "acq_companies"
7951
+ referencedColumns: ["id"]
7952
+ },
7953
+ {
7954
+ foreignKeyName: "acq_list_companies_list_id_fkey"
7955
+ columns: ["list_id"]
7956
+ isOneToOne: false
7957
+ referencedRelation: "acq_lists"
7958
+ referencedColumns: ["id"]
7959
+ },
7960
+ {
7961
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey"
7962
+ columns: ["source_execution_id"]
7963
+ isOneToOne: false
7964
+ referencedRelation: "execution_logs"
7965
+ referencedColumns: ["execution_id"]
7966
+ },
7967
+ ]
7968
+ }
7969
+ acq_list_executions: {
7970
+ Row: {
7971
+ created_at: string
7972
+ execution_id: string
7973
+ id: string
7974
+ list_id: string
7975
+ payload: Json
7976
+ }
7977
+ Insert: {
7978
+ created_at?: string
7979
+ execution_id: string
7980
+ id?: string
7981
+ list_id: string
7982
+ payload?: Json
7983
+ }
7984
+ Update: {
7985
+ created_at?: string
7986
+ execution_id?: string
7987
+ id?: string
7988
+ list_id?: string
7989
+ payload?: Json
7990
+ }
7991
+ Relationships: [
7992
+ {
7993
+ foreignKeyName: "acq_list_executions_execution_id_fkey"
7994
+ columns: ["execution_id"]
7995
+ isOneToOne: false
7996
+ referencedRelation: "execution_logs"
7997
+ referencedColumns: ["execution_id"]
7998
+ },
7999
+ {
8000
+ foreignKeyName: "acq_list_executions_list_id_fkey"
8001
+ columns: ["list_id"]
8002
+ isOneToOne: false
8003
+ referencedRelation: "acq_lists"
8004
+ referencedColumns: ["id"]
8005
+ },
8006
+ ]
8007
+ }
7675
8008
  acq_list_members: {
7676
8009
  Row: {
7677
8010
  added_at: string
@@ -7679,6 +8012,11 @@ type Database = {
7679
8012
  contact_id: string
7680
8013
  id: string
7681
8014
  list_id: string
8015
+ source_execution_id: string | null
8016
+ source_input_hash: string | null
8017
+ source_resource_id: string | null
8018
+ stage: string | null
8019
+ stage_updated_at: string | null
7682
8020
  }
7683
8021
  Insert: {
7684
8022
  added_at?: string
@@ -7686,6 +8024,11 @@ type Database = {
7686
8024
  contact_id: string
7687
8025
  id?: string
7688
8026
  list_id: string
8027
+ source_execution_id?: string | null
8028
+ source_input_hash?: string | null
8029
+ source_resource_id?: string | null
8030
+ stage?: string | null
8031
+ stage_updated_at?: string | null
7689
8032
  }
7690
8033
  Update: {
7691
8034
  added_at?: string
@@ -7693,6 +8036,11 @@ type Database = {
7693
8036
  contact_id?: string
7694
8037
  id?: string
7695
8038
  list_id?: string
8039
+ source_execution_id?: string | null
8040
+ source_input_hash?: string | null
8041
+ source_resource_id?: string | null
8042
+ stage?: string | null
8043
+ stage_updated_at?: string | null
7696
8044
  }
7697
8045
  Relationships: [
7698
8046
  {
@@ -7709,12 +8057,20 @@ type Database = {
7709
8057
  referencedRelation: "acq_lists"
7710
8058
  referencedColumns: ["id"]
7711
8059
  },
8060
+ {
8061
+ foreignKeyName: "acq_list_members_source_execution_id_fkey"
8062
+ columns: ["source_execution_id"]
8063
+ isOneToOne: false
8064
+ referencedRelation: "execution_logs"
8065
+ referencedColumns: ["execution_id"]
8066
+ },
7712
8067
  ]
7713
8068
  }
7714
8069
  acq_lists: {
7715
8070
  Row: {
7716
8071
  batch_ids: string[]
7717
8072
  completed_at: string | null
8073
+ config: Json
7718
8074
  created_at: string
7719
8075
  description: string | null
7720
8076
  id: string
@@ -7729,6 +8085,7 @@ type Database = {
7729
8085
  Insert: {
7730
8086
  batch_ids?: string[]
7731
8087
  completed_at?: string | null
8088
+ config?: Json
7732
8089
  created_at?: string
7733
8090
  description?: string | null
7734
8091
  id?: string
@@ -7743,6 +8100,7 @@ type Database = {
7743
8100
  Update: {
7744
8101
  batch_ids?: string[]
7745
8102
  completed_at?: string | null
8103
+ config?: Json
7746
8104
  created_at?: string
7747
8105
  description?: string | null
7748
8106
  id?: string
@@ -10783,77 +11141,6 @@ declare function createUseFeatureAccess({ useInitialization, useOrganization }:
10783
11141
  isReady: boolean;
10784
11142
  };
10785
11143
 
10786
- interface EventSourceMessage {
10787
- id: string;
10788
- event: string;
10789
- data: string;
10790
- retry?: number;
10791
- }
10792
-
10793
- interface FetchEventSourceWithTokenRefreshOptions {
10794
- url: string;
10795
- getToken: () => Promise<string | undefined>;
10796
- headers?: Record<string, string>;
10797
- signal: AbortSignal;
10798
- /** Delay in ms before reconnecting after token refresh. Defaults to 2000. */
10799
- tokenRefreshDelayMs?: number;
10800
- onopen?: (response: Response) => void | Promise<void>;
10801
- onmessage?: (event: EventSourceMessage) => void;
10802
- onerror?: (error: unknown) => void;
10803
- onclose?: () => void;
10804
- }
10805
-
10806
- interface SSEConnectionManagerOptions {
10807
- /** Grace period in ms before closing idle connections. Defaults to 5000. */
10808
- closeGracePeriodMs?: number;
10809
- }
10810
- /**
10811
- * SSE Connection Manager
10812
- *
10813
- * Ensures only ONE SSE connection exists per endpoint, preventing duplicate
10814
- * connections when components re-render or remount.
10815
- *
10816
- * Benefits:
10817
- * - Prevents resource waste from duplicate connections
10818
- * - Eliminates race conditions from overlapping connections
10819
- * - Automatically manages connection lifecycle
10820
- * - Shares single connection across multiple subscribers
10821
- */
10822
- declare class SSEConnectionManager {
10823
- private connections;
10824
- private closeGracePeriodMs;
10825
- constructor(options?: SSEConnectionManagerOptions);
10826
- /**
10827
- * Subscribe to an SSE endpoint
10828
- *
10829
- * If a connection already exists for this endpoint, reuses it.
10830
- * Otherwise, creates a new connection.
10831
- *
10832
- * @param key - Unique identifier for the connection (e.g., 'notifications', 'resource-executive-agent')
10833
- * @param subscriberId - Unique identifier for this subscriber (usually component instance)
10834
- * @param options - SSE connection options
10835
- * @returns Unsubscribe function to call when component unmounts
10836
- */
10837
- subscribe(key: string, subscriberId: string, options: Omit<FetchEventSourceWithTokenRefreshOptions, 'signal'>): () => void;
10838
- /**
10839
- * Unsubscribe from an SSE endpoint
10840
- *
10841
- * If this is the last subscriber, closes the connection after grace period.
10842
- */
10843
- private unsubscribe;
10844
- /**
10845
- * Force close a connection and all its subscribers
10846
- */
10847
- closeConnection(key: string): void;
10848
- /**
10849
- * Get current connection status
10850
- */
10851
- getConnectionInfo(): Map<string, {
10852
- url: string;
10853
- subscribers: number;
10854
- }>;
10855
- }
10856
-
10857
11144
  interface UseSSEConnectionOptions {
10858
11145
  manager: SSEConnectionManager;
10859
11146
  /** Shared connection key — all subscribers with the same key share ONE connection. */
@@ -11421,6 +11708,8 @@ interface UseExecutionPanelStateOptions {
11421
11708
  apiUrl: string;
11422
11709
  limit?: number;
11423
11710
  onConnectionStatus?: (connected: boolean, runningCount: number) => void;
11711
+ selectedId?: string | null;
11712
+ onSelectedIdChange?: (id: string | null) => void;
11424
11713
  }
11425
11714
  interface UseExecutionPanelStateReturn {
11426
11715
  executions: APIExecutionSummary$1[];
@@ -11453,7 +11742,7 @@ interface UseExecutionPanelStateReturn {
11453
11742
  * } = useExecutionPanelState({ resourceId, manager, onConnectionStatus })
11454
11743
  * ```
11455
11744
  */
11456
- declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
11745
+ declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
11457
11746
 
11458
11747
  /**
11459
11748
  * Utilities for extracting typed properties from resource definitions
@@ -11981,7 +12270,7 @@ interface CompleteDealTaskParams {
11981
12270
  */
11982
12271
  declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
11983
12272
 
11984
- declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<BatchTelemetry[], Error>;
12273
+ declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
11985
12274
 
11986
12275
  // Row types from Supabase
11987
12276
  type ProjectRow = Database['public']['Tables']['prj_projects']['Row']
@@ -12780,5 +13069,5 @@ declare function InitializationProvider({ children }: {
12780
13069
  children: ReactNode;
12781
13070
  }): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
12782
13071
 
12783
- export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisServiceProvider, ElevasisUIProvider, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calculateBarPosition, calculateGraphHeight, calibrationKeys, componentThemes, createCssVariablesResolver, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectKeys, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAgentIterationData, useAllCalibrationProjects, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphHighlighting, useGraphStats, useInitialization, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectNotes, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
12784
- export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
13072
+ export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calculateBarPosition, calculateGraphHeight, calibrationKeys, componentThemes, createCssVariablesResolver, createOrganizationsSlice, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectKeys, restoreConsole, scheduleKeys, sessionsKeys, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAgentIterationData, useAllCalibrationProjects, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useConnectionHighlight, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphHighlighting, useGraphStats, useInitialization, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectNotes, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
13073
+ export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, DocFile, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureRegistry, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };