@elevasis/ui 2.64.1 → 2.66.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 (72) hide show
  1. package/dist/api/index.js +2 -2
  2. package/dist/app/index.d.ts +26 -0
  3. package/dist/app/index.js +8 -8
  4. package/dist/auth/index.d.ts +12 -5
  5. package/dist/auth/index.js +8 -8
  6. package/dist/charts/index.js +8 -8
  7. package/dist/{chunk-DRQPEMJI.js → chunk-4DV4ECMG.js} +3 -0
  8. package/dist/{chunk-KRWALB24.js → chunk-6SSQGWK7.js} +1 -1
  9. package/dist/{chunk-ZTWA5H77.js → chunk-6ZAP3FOA.js} +0 -1
  10. package/dist/{chunk-PGAA4G3T.js → chunk-ANNM5R7S.js} +275 -382
  11. package/dist/{chunk-I3CFGE3N.js → chunk-BLXJEIQS.js} +1 -1
  12. package/dist/chunk-L7BZZ4SI.js +56 -0
  13. package/dist/chunk-P45GQ3ZW.js +104 -0
  14. package/dist/{chunk-EIXSQONC.js → chunk-RT4KRGZT.js} +37 -59
  15. package/dist/{chunk-FVOMKZ7S.js → chunk-Y6I3IC45.js} +3 -6
  16. package/dist/components/index.d.ts +274 -191
  17. package/dist/components/index.js +8 -8
  18. package/dist/components/navigation/index.js +8 -8
  19. package/dist/execution/index.d.ts +115 -104
  20. package/dist/execution/index.js +2 -2
  21. package/dist/features/auth/index.d.ts +125 -9
  22. package/dist/features/auth/index.js +154 -14
  23. package/dist/features/clients/index.js +8 -8
  24. package/dist/features/crm/index.d.ts +20 -0
  25. package/dist/features/crm/index.js +8 -8
  26. package/dist/features/dashboard/index.js +8 -8
  27. package/dist/features/delivery/index.d.ts +20 -0
  28. package/dist/features/delivery/index.js +8 -8
  29. package/dist/features/knowledge/index.js +8 -8
  30. package/dist/features/lead-gen/index.js +8 -8
  31. package/dist/features/monitoring/index.js +8 -8
  32. package/dist/features/monitoring/requests/index.js +9 -9
  33. package/dist/features/notes/index.js +2 -2
  34. package/dist/features/operations/index.d.ts +177 -106
  35. package/dist/features/operations/index.js +8 -8
  36. package/dist/features/public-agent-chat/index.js +1 -1
  37. package/dist/features/settings/index.d.ts +21 -0
  38. package/dist/features/settings/index.js +8 -8
  39. package/dist/hooks/access/index.js +8 -8
  40. package/dist/hooks/delivery/index.d.ts +20 -0
  41. package/dist/hooks/delivery/index.js +8 -8
  42. package/dist/hooks/index.d.ts +319 -145
  43. package/dist/hooks/index.js +8 -8
  44. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +0 -2
  45. package/dist/hooks/operations/command-view/utils/transformCommandViewData.js +1 -1
  46. package/dist/hooks/published.d.ts +319 -145
  47. package/dist/hooks/published.js +8 -8
  48. package/dist/index.d.ts +409 -219
  49. package/dist/index.js +8 -8
  50. package/dist/initialization/index.d.ts +95 -28
  51. package/dist/initialization/index.js +3 -3
  52. package/dist/knowledge/index.js +12 -12
  53. package/dist/{knowledge-search-index-JOPRYZN6.js → knowledge-search-index-6EZNBNSR.js} +4 -4
  54. package/dist/layout/index.js +8 -8
  55. package/dist/organization/index.d.ts +63 -4
  56. package/dist/organization/index.js +8 -8
  57. package/dist/profile/index.d.ts +43 -2
  58. package/dist/profile/index.js +1 -1
  59. package/dist/provider/index.d.ts +20 -0
  60. package/dist/provider/index.js +8 -8
  61. package/dist/provider/published.d.ts +20 -0
  62. package/dist/provider/published.js +8 -8
  63. package/dist/supabase/index.d.ts +40 -0
  64. package/dist/test-utils/index.d.ts +5 -0
  65. package/dist/test-utils/index.js +4 -4
  66. package/dist/test-utils/setup-integration.js +1 -1
  67. package/dist/test-utils/setup.js +1 -1
  68. package/dist/types/index.d.ts +483 -244
  69. package/dist/utils/index.js +2 -2
  70. package/package.json +6 -4
  71. package/dist/chunk-LO7GWG24.js +0 -75
  72. package/dist/chunk-T4LA4RY2.js +0 -56
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as React$1 from 'react';
2
2
  import React__default, { ReactNode, CSSProperties, ReactElement, ComponentType, MouseEvent, Component, ErrorInfo, AnchorHTMLAttributes, ElementType } from 'react';
3
3
  import * as _tanstack_react_query from '@tanstack/react-query';
4
- import { QueryClient, QueryClientConfig, DefaultOptions } from '@tanstack/react-query';
4
+ import { QueryClient, QueryKey, QueryClientConfig, DefaultOptions } from '@tanstack/react-query';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as z from 'zod';
7
7
  import { z as z$1, ZodType, ZodSchema } from 'zod';
@@ -338,110 +338,6 @@ interface ExecutionLogMessage {
338
338
  context?: LogContext;
339
339
  }
340
340
 
341
- /**
342
- * Serialized Registry Types
343
- *
344
- * Pre-computed JSON-safe types for API responses and Command View.
345
- * Serialization happens once at API startup, enabling instant response times.
346
- */
347
-
348
- /**
349
- * Serialized agent definition (JSON-safe)
350
- * Result of serializeDefinition(AgentDefinition)
351
- */
352
- interface SerializedAgentDefinition {
353
- config: {
354
- resourceId: string;
355
- name: string;
356
- description: string;
357
- version: string;
358
- type: 'agent';
359
- kind: 'orchestrator' | 'specialist' | 'utility' | 'system';
360
- status: 'dev' | 'prod';
361
- links?: ResourceLink[];
362
- category?: ResourceCategory;
363
- /** Whether this resource is archived and should be excluded from registration and deployment */
364
- archived?: boolean;
365
- systemPrompt: string;
366
- constraints?: {
367
- maxIterations?: number;
368
- timeout?: number;
369
- maxSessionMemoryKeys?: number;
370
- maxMemoryTokens?: number;
371
- };
372
- sessionCapable?: boolean;
373
- memoryPreferences?: string;
374
- };
375
- modelConfig: {
376
- provider: string;
377
- model: string;
378
- apiKey: string;
379
- temperature: number;
380
- maxOutputTokens: number;
381
- topP?: number;
382
- modelOptions?: Record<string, unknown>;
383
- };
384
- contract: {
385
- inputSchema: object;
386
- outputSchema?: object;
387
- };
388
- tools: Array<{
389
- name: string;
390
- description: string;
391
- inputSchema?: object;
392
- outputSchema?: object;
393
- }>;
394
- knowledgeMap?: {
395
- nodeCount: number;
396
- nodes: Array<{
397
- id: string;
398
- description: string;
399
- loaded: boolean;
400
- hasPrompt: boolean;
401
- }>;
402
- };
403
- metricsConfig?: object;
404
- }
405
- /**
406
- * Serialized workflow definition (JSON-safe)
407
- * Result of serializeDefinition(WorkflowDefinition)
408
- */
409
- interface SerializedWorkflowDefinition {
410
- config: {
411
- resourceId: string;
412
- name: string;
413
- description: string;
414
- version: string;
415
- type: 'workflow';
416
- status: 'dev' | 'prod';
417
- links?: ResourceLink[];
418
- category?: ResourceCategory;
419
- /** Whether this resource is archived and should be excluded from registration and deployment */
420
- archived?: boolean;
421
- };
422
- entryPoint: string;
423
- steps: Array<{
424
- id: string;
425
- name: string;
426
- description: string;
427
- inputSchema?: object;
428
- outputSchema?: object;
429
- next: {
430
- type: 'linear' | 'conditional';
431
- target?: string;
432
- routes?: Array<{
433
- target: string;
434
- }>;
435
- default?: string;
436
- } | null;
437
- }>;
438
- contract: {
439
- inputSchema: object;
440
- outputSchema?: object;
441
- };
442
- metricsConfig?: object;
443
- }
444
-
445
341
  declare const ResourceGovernanceStatusSchema: z$1.ZodEnum<{
446
342
  active: "active";
447
343
  deprecated: "deprecated";
@@ -668,6 +564,90 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
668
564
  type ResourceGovernanceStatus = z$1.infer<typeof ResourceGovernanceStatusSchema>;
669
565
  type ResourceEntry = z$1.infer<typeof ResourceEntrySchema>;
670
566
 
567
+ /**
568
+ * Memory type definitions
569
+ * Types for agent memory management with semantic entry types
570
+ */
571
+ /**
572
+ * Semantic memory entry types
573
+ * Use-case agnostic types that describe the purpose of each entry
574
+ * Memory types mirror action types for clarity and filtering
575
+ */
576
+ type MemoryEntryType = 'context' | 'input' | 'reasoning' | 'tool-result' | 'error';
577
+ /**
578
+ * Who authored an entry's content.
579
+ *
580
+ * This is what lets the assembled prompt tell framework-authored text apart from text that
581
+ * originated outside the trust boundary. `'framework'` content is ours; the other three are not
582
+ * and are rendered inside the JSON data envelope (see `MemoryManager.toContextParts`).
583
+ */
584
+ type MemoryEntrySource = 'framework' | 'user' | 'tool' | 'model';
585
+ /**
586
+ * Memory entry - represents a single entry in agent memory
587
+ * Stored in agent memory, translated by adapters to vendor-specific formats
588
+ */
589
+ interface MemoryEntry {
590
+ type: MemoryEntryType;
591
+ content: string;
592
+ timestamp: number;
593
+ turnNumber: number | null;
594
+ iterationNumber: number | null;
595
+ /**
596
+ * Provenance. **Optional on purpose** — `undefined` means unknown, which is what every
597
+ * pre-existing snapshot and every not-yet-redeployed tenant bundle produces. Read sites MUST
598
+ * test `== null`, never `=== undefined`: the `inTurnScope` predicate in `manager.ts` is the
599
+ * cautionary precedent, where a `=== undefined` check silently dropped every `null`-stamped
600
+ * entry. `isMemoryEntry` is deliberately NOT tightened to require this field; doing so would
601
+ * make every stored snapshot fail validation, and `restoreSessionMemory` fails open by
602
+ * starting the agent with empty memory rather than throwing.
603
+ */
604
+ source?: MemoryEntrySource;
605
+ /**
606
+ * Which tool produced this entry. Set on `tool-result` entries so the model can tell N parallel
607
+ * results apart -- the framework instructs batching independent tool calls in one iteration, and
608
+ * an anonymous result is unattributable the moment two land in the same iteration. `addToolError`
609
+ * already carries this (folded into its `content` JSON); this is the same fact for the success
610
+ * path, carried as a real field instead of prose the caller has to parse back out.
611
+ */
612
+ toolName?: string;
613
+ /**
614
+ * Present when `truncateContent` cut this entry's `content` to fit its token budget. A sibling
615
+ * field, never text appended into `content` -- the notice used to be spliced into the string
616
+ * itself, which could (and did) land inside a JSON string literal `truncateContent` had just cut
617
+ * open, breaking `JSON.parse` on the far end. Absent means never truncated.
618
+ */
619
+ truncated?: {
620
+ omittedTokens: number;
621
+ };
622
+ /**
623
+ * Prompt-injection warning types found in `content`, screened once here -- when the entry is
624
+ * written -- instead of by re-scanning the whole accumulated envelope on every iteration it gets
625
+ * re-sent for (`screenRequest`'s `data-envelope` slot used to do exactly that). Empty array means
626
+ * screened and clean; `undefined` means never screened (entries that bypass `addToHistory`/`set`,
627
+ * or pre-existing snapshots from before this field existed).
628
+ */
629
+ warnings?: string[];
630
+ }
631
+ /**
632
+ * Agent memory - Self-orchestrated memory with session + working storage
633
+ * Agent has full control over what persists, framework handles auto-compaction
634
+ */
635
+ interface AgentMemory {
636
+ /**
637
+ * Session memory - Persists for session/conversation duration
638
+ * Never auto-trimmed by framework
639
+ * Agent-managed key-value store for critical information
640
+ * Agent provides strings, framework wraps in MemoryEntry
641
+ */
642
+ sessionMemory: Record<string, MemoryEntry>;
643
+ /**
644
+ * Working memory - Execution history
645
+ * Automatically compacted by framework when needed
646
+ * Agent doesn't control compaction
647
+ */
648
+ history: MemoryEntry[];
649
+ }
650
+
671
651
  /**
672
652
  * Shared form field types for dynamic form generation
673
653
  * Used by: Command Queue, Execution Runner UI, future form-based features
@@ -791,47 +771,6 @@ interface ExecutionPathState {
791
771
  stepDataMap?: Map<string, StepExecutionData>;
792
772
  }
793
773
 
794
- /**
795
- * Memory type definitions
796
- * Types for agent memory management with semantic entry types
797
- */
798
- /**
799
- * Semantic memory entry types
800
- * Use-case agnostic types that describe the purpose of each entry
801
- * Memory types mirror action types for clarity and filtering
802
- */
803
- type MemoryEntryType = 'context' | 'input' | 'reasoning' | 'tool-result' | 'delegation-result' | 'error';
804
- /**
805
- * Memory entry - represents a single entry in agent memory
806
- * Stored in agent memory, translated by adapters to vendor-specific formats
807
- */
808
- interface MemoryEntry {
809
- type: MemoryEntryType;
810
- content: string;
811
- timestamp: number;
812
- turnNumber: number | null;
813
- iterationNumber: number | null;
814
- }
815
- /**
816
- * Agent memory - Self-orchestrated memory with session + working storage
817
- * Agent has full control over what persists, framework handles auto-compaction
818
- */
819
- interface AgentMemory {
820
- /**
821
- * Session memory - Persists for session/conversation duration
822
- * Never auto-trimmed by framework
823
- * Agent-managed key-value store for critical information
824
- * Agent provides strings, framework wraps in MemoryEntry
825
- */
826
- sessionMemory: Record<string, MemoryEntry>;
827
- /**
828
- * Working memory - Execution history
829
- * Automatically compacted by framework when needed
830
- * Agent doesn't control compaction
831
- */
832
- history: MemoryEntry[];
833
- }
834
-
835
774
  /**
836
775
  * Agent timeline and observability types
837
776
  * Used for UI timeline visualization and backend processing
@@ -3632,6 +3571,7 @@ type Database = {
3632
3571
  deleted_at: string | null;
3633
3572
  ended_at: string | null;
3634
3573
  memory_snapshot: Json;
3574
+ memory_version: number;
3635
3575
  metadata: Json | null;
3636
3576
  organization_id: string;
3637
3577
  resource_id: string;
@@ -3648,6 +3588,7 @@ type Database = {
3648
3588
  deleted_at?: string | null;
3649
3589
  ended_at?: string | null;
3650
3590
  memory_snapshot: Json;
3591
+ memory_version?: number;
3651
3592
  metadata?: Json | null;
3652
3593
  organization_id: string;
3653
3594
  resource_id: string;
@@ -3664,6 +3605,7 @@ type Database = {
3664
3605
  deleted_at?: string | null;
3665
3606
  ended_at?: string | null;
3666
3607
  memory_snapshot?: Json;
3608
+ memory_version?: number;
3667
3609
  metadata?: Json | null;
3668
3610
  organization_id?: string;
3669
3611
  resource_id?: string;
@@ -4001,9 +3943,14 @@ type Database = {
4001
3943
  p_session_id: string;
4002
3944
  };
4003
3945
  Returns: {
3946
+ context_window_size: number;
4004
3947
  created_at: string;
3948
+ cumulative_input_tokens: number;
3949
+ cumulative_output_tokens: number;
3950
+ deleted_at: string;
4005
3951
  ended_at: string;
4006
3952
  memory_snapshot: Json;
3953
+ memory_version: number;
4007
3954
  metadata: Json;
4008
3955
  organization_id: string;
4009
3956
  resource_id: string;
@@ -4045,6 +3992,18 @@ type Database = {
4045
3992
  };
4046
3993
  Returns: boolean;
4047
3994
  };
3995
+ increment_session_tokens: {
3996
+ Args: {
3997
+ p_input_tokens: number;
3998
+ p_output_tokens: number;
3999
+ p_session_id: string;
4000
+ };
4001
+ Returns: {
4002
+ context_window_size: number;
4003
+ cumulative_input_tokens: number;
4004
+ cumulative_output_tokens: number;
4005
+ }[];
4006
+ };
4048
4007
  is_org_member: {
4049
4008
  Args: {
4050
4009
  org_id: string;
@@ -6446,10 +6405,50 @@ interface ListMembershipsResponse {
6446
6405
  after?: string | null;
6447
6406
  };
6448
6407
  }
6408
+ /**
6409
+ * How a membership row relates to the two systems that describe it.
6410
+ *
6411
+ * - `linked` — an `org_memberships` row that carries a `workos_membership_id`
6412
+ * - `pre_provisioned` — an `org_memberships` row with no `workos_membership_id`;
6413
+ * the invitee was provisioned but has not completed signup
6414
+ * - `workos_only` — a WorkOS membership with no `org_memberships` row (a sync gap)
6415
+ */
6416
+ type MembershipProvisioningState = 'linked' | 'pre_provisioned' | 'workos_only';
6449
6417
  /**
6450
6418
  * Extended membership with user and organization details for UI
6419
+ *
6420
+ * **ID convention (step 17 of the auth/invitations architecture refactor):**
6421
+ * `id`, `userId`, and `organizationId` are the canonical Supabase UUIDs
6422
+ * (`org_memberships.id` / `users.id` / `organizations.id`) on every producer
6423
+ * of this type. `workosMembershipId` / `workosUserId` /
6424
+ * `organization.workos_org_id` carry the WorkOS-side forms explicitly instead
6425
+ * -- the contract does not overload the canonical fields with either form.
6426
+ *
6427
+ * The one exception: a `workos_only` row (a WorkOS membership with no
6428
+ * `org_memberships` row -- a sync gap) has no canonical membership UUID to
6429
+ * report, because no such row exists. `id` stays the WorkOS `om_...` form for
6430
+ * that `provisioningState` alone; `userId` / `organizationId` are still
6431
+ * resolved to their Supabase forms where the user/organization themselves
6432
+ * exist.
6451
6433
  */
6452
6434
  interface MembershipWithDetails extends OrganizationMembership {
6435
+ /**
6436
+ * Set by `GET /memberships`. Optional so existing consumers are unaffected;
6437
+ * treat `undefined` as "not reported by this endpoint".
6438
+ */
6439
+ provisioningState?: MembershipProvisioningState;
6440
+ /**
6441
+ * WorkOS `om_...` form of `id`. `null` when the membership is
6442
+ * pre-provisioned (invited, signup not completed -- no WorkOS record yet).
6443
+ * Explicit companion to the canonical `id`; see the type-level doc comment.
6444
+ */
6445
+ workosMembershipId?: string | null;
6446
+ /**
6447
+ * WorkOS `user_...` form of `userId`. `null` when the member has not
6448
+ * completed WorkOS signup yet. Explicit companion to the canonical
6449
+ * `userId`; see the type-level doc comment.
6450
+ */
6451
+ workosUserId?: string | null;
6453
6452
  user?: {
6454
6453
  id: string;
6455
6454
  email: string;
@@ -6748,6 +6747,121 @@ interface CostByModelResponse {
6748
6747
  totalCallCount: number;
6749
6748
  }
6750
6749
 
6750
+ /**
6751
+ * Agent-specific type definitions
6752
+ * Types for autonomous agents with tools, memory, and constraints
6753
+ */
6754
+
6755
+ type AgentKind = 'orchestrator' | 'specialist' | 'utility' | 'platform';
6756
+
6757
+ /**
6758
+ * Serialized Registry Types
6759
+ *
6760
+ * Pre-computed JSON-safe types for API responses and Command View.
6761
+ * Serialization happens once at API startup, enabling instant response times.
6762
+ */
6763
+
6764
+ /**
6765
+ * Serialized agent definition (JSON-safe)
6766
+ * Result of serializeDefinition(AgentDefinition)
6767
+ */
6768
+ interface SerializedAgentDefinition {
6769
+ config: {
6770
+ resourceId: string;
6771
+ name: string;
6772
+ description: string;
6773
+ version: string;
6774
+ type: 'agent';
6775
+ /**
6776
+ * Imported from the runtime type instead of hand-copied. It used to be a hand-written literal
6777
+ * union that said `'system'` where `AgentKind`'s fourth member is `'platform'` -- undetected
6778
+ * because `serializeDefinition` returns `any` and every call site casts the result to this
6779
+ * interface, so the literal union was never actually checked against real data. Deriving from
6780
+ * the source of truth makes that class of drift a type error instead of a silent typo.
6781
+ */
6782
+ kind: AgentKind;
6783
+ status: 'dev' | 'prod';
6784
+ links?: ResourceLink[];
6785
+ category?: ResourceCategory;
6786
+ /** Whether this resource is archived and should be excluded from registration and deployment */
6787
+ archived?: boolean;
6788
+ systemPrompt: string;
6789
+ constraints?: {
6790
+ maxIterations?: number;
6791
+ timeout?: number;
6792
+ maxSessionMemoryKeys?: number;
6793
+ maxMemoryTokens?: number;
6794
+ };
6795
+ sessionCapable?: boolean;
6796
+ memoryPreferences?: string;
6797
+ };
6798
+ modelConfig: {
6799
+ provider: string;
6800
+ model: string;
6801
+ apiKey: string;
6802
+ /**
6803
+ * Optional here, matching `ModelConfig` -- this used to be required even though neither real
6804
+ * agent literal in the monorepo (`local-test-agent`, the `createPlatformToolAgent` test fixture)
6805
+ * sets it, and nothing caught the mismatch for the same `serializeDefinition`-returns-`any`
6806
+ * reason `kind` drifted above.
6807
+ */
6808
+ temperature?: number;
6809
+ maxOutputTokens?: number;
6810
+ topP?: number;
6811
+ modelOptions?: Record<string, unknown>;
6812
+ };
6813
+ contract: {
6814
+ inputSchema: object;
6815
+ outputSchema?: object;
6816
+ };
6817
+ tools: Array<{
6818
+ name: string;
6819
+ description: string;
6820
+ inputSchema?: object;
6821
+ outputSchema?: object;
6822
+ }>;
6823
+ metricsConfig?: object;
6824
+ }
6825
+ /**
6826
+ * Serialized workflow definition (JSON-safe)
6827
+ * Result of serializeDefinition(WorkflowDefinition)
6828
+ */
6829
+ interface SerializedWorkflowDefinition {
6830
+ config: {
6831
+ resourceId: string;
6832
+ name: string;
6833
+ description: string;
6834
+ version: string;
6835
+ type: 'workflow';
6836
+ status: 'dev' | 'prod';
6837
+ links?: ResourceLink[];
6838
+ category?: ResourceCategory;
6839
+ /** Whether this resource is archived and should be excluded from registration and deployment */
6840
+ archived?: boolean;
6841
+ };
6842
+ entryPoint: string;
6843
+ steps: Array<{
6844
+ id: string;
6845
+ name: string;
6846
+ description: string;
6847
+ inputSchema?: object;
6848
+ outputSchema?: object;
6849
+ next: {
6850
+ type: 'linear' | 'conditional';
6851
+ target?: string;
6852
+ routes?: Array<{
6853
+ target: string;
6854
+ }>;
6855
+ default?: string;
6856
+ } | null;
6857
+ }>;
6858
+ contract: {
6859
+ inputSchema: object;
6860
+ outputSchema?: object;
6861
+ };
6862
+ metricsConfig?: object;
6863
+ }
6864
+
6751
6865
  /**
6752
6866
  * Base Execution Engine type definitions
6753
6867
  * Core types shared across all Execution Engine resources
@@ -7104,7 +7218,6 @@ interface CommandViewAgent extends ResourceDefinition {
7104
7218
  modelProvider: string;
7105
7219
  modelId: string;
7106
7220
  toolCount: number;
7107
- hasKnowledgeMap: boolean;
7108
7221
  hasMemory: boolean;
7109
7222
  sessionCapable: boolean;
7110
7223
  }
@@ -12328,21 +12441,56 @@ declare function useUserMemberships(userId: string, params?: Omit<ListMembership
12328
12441
 
12329
12442
  interface DeactivateMembershipMutationData {
12330
12443
  membershipId: string;
12444
+ /**
12445
+ * Accepted and ignored. These were read by an optimistic-update path that was
12446
+ * removed after it was found never to have executed -- see the note on the
12447
+ * hook below. They are kept in the signature because this hook is published
12448
+ * as part of `@elevasis/ui`, and narrowing a parameter type is a breaking
12449
+ * change; they should be dropped in the next deliberate major alongside the
12450
+ * other batched removals.
12451
+ */
12331
12452
  userId?: string;
12332
12453
  organizationId?: string;
12333
12454
  }
12334
- declare function useDeactivateMembership(): _tanstack_react_query.UseMutationResult<MembershipWithDetails, Error, DeactivateMembershipMutationData, {
12335
- previousData: unknown;
12336
- }>;
12455
+ /**
12456
+ * Deactivate an organization membership.
12457
+ *
12458
+ * NO OPTIMISTIC UPDATE, DELIBERATELY. This hook previously carried an
12459
+ * `onMutate` that patched two cache keys and an `onError` that rolled the patch
12460
+ * back. None of it ever ran: the only producer of a `memberships` key is
12461
+ * `useUserMemberships`, at `['memberships', 'user', userId, params]` -- four
12462
+ * elements -- while the patch wrote `['memberships', 'user', userId]` at three,
12463
+ * and `setQueryData` requires exact key equality. Its second branch targeted
12464
+ * `['memberships', 'organization', orgId]`, which no query produces at all. The
12465
+ * rollback snapshot was likewise always `undefined`.
12466
+ *
12467
+ * The list has therefore always refreshed via the invalidation below, and that
12468
+ * is now the only mechanism. Repairing the keys was considered and rejected: it
12469
+ * would switch on rollback logic that has never executed, on a surface where a
12470
+ * wrong patch shows an administrator a member as deactivated when the call
12471
+ * actually failed. If optimistic updates are wanted here, write them
12472
+ * deliberately with the rollback exercised by tests.
12473
+ */
12474
+ declare function useDeactivateMembership(): _tanstack_react_query.UseMutationResult<MembershipWithDetails, Error, DeactivateMembershipMutationData, unknown>;
12337
12475
 
12338
12476
  interface ReactivateMembershipMutationData {
12339
12477
  membershipId: string;
12478
+ /**
12479
+ * Accepted and ignored -- see the note on `useDeactivateMembership`. Kept
12480
+ * because this hook is published as part of `@elevasis/ui` and narrowing a
12481
+ * parameter type is a breaking change; drop in the next deliberate major.
12482
+ */
12340
12483
  userId?: string;
12341
12484
  organizationId?: string;
12342
12485
  }
12343
- declare function useReactivateMembership(): _tanstack_react_query.UseMutationResult<MembershipWithDetails, Error, ReactivateMembershipMutationData, {
12344
- previousData: unknown;
12345
- }>;
12486
+ /**
12487
+ * Reactivate an organization membership.
12488
+ *
12489
+ * NO OPTIMISTIC UPDATE, DELIBERATELY -- the removed `onMutate`/rollback pair
12490
+ * never executed. The full diagnosis is on `useDeactivateMembership`, which
12491
+ * carried an identical copy of the same dead machinery.
12492
+ */
12493
+ declare function useReactivateMembership(): _tanstack_react_query.UseMutationResult<MembershipWithDetails, Error, ReactivateMembershipMutationData, unknown>;
12346
12494
 
12347
12495
  type OrgRolDefinitionRow = Database['public']['Tables']['org_rol_definitions']['Row'];
12348
12496
  type OrgRole = OrgRolDefinitionRow & {
@@ -12365,7 +12513,18 @@ type RevokeRoleInput = {
12365
12513
  roleId: string;
12366
12514
  };
12367
12515
 
12368
- declare function useOrgRoles(orgId?: string): _tanstack_react_query.UseQueryResult<{
12516
+ /**
12517
+ * Roles for an organization, keyed on the **Supabase organization UUID**.
12518
+ *
12519
+ * `GET /organizations/:orgId/roles` compares the route param against
12520
+ * `getOrganizationId(request)` for a non-platform-admin caller, and that is
12521
+ * always the Supabase UUID (`requireMatchingOrganization` in
12522
+ * `role-management/handlers.ts`) -- the WorkOS `org_...` form 403s there.
12523
+ * Defaults to the caller's currently selected organization (read via
12524
+ * `OrganizationContext` rather than the throwing `useOrganization()` hook,
12525
+ * so this still works in trees that only mount `ElevasisServiceProvider`).
12526
+ */
12527
+ declare function useOrgRoles(orgId?: SupabaseOrgId): _tanstack_react_query.UseQueryResult<{
12369
12528
  roles: OrgRole[];
12370
12529
  }, Error>;
12371
12530
 
@@ -12373,19 +12532,34 @@ declare function usePermissionCatalog(): _tanstack_react_query.UseQueryResult<{
12373
12532
  permissions: PermissionDescriptor[];
12374
12533
  }, Error>;
12375
12534
 
12535
+ /**
12536
+ * Posts to `/organizations/:orgId/roles` using the **Supabase organization
12537
+ * UUID** -- see `useOrgRoles` for why the WorkOS form 403s here for a
12538
+ * non-platform-admin caller.
12539
+ */
12376
12540
  declare function useCreateOrgRole(): _tanstack_react_query.UseMutationResult<OrgRole, Error, CreateOrgRoleInput, unknown>;
12377
12541
 
12378
12542
  interface UpdateOrgRoleParams {
12379
12543
  roleId: string;
12380
12544
  input: UpdateOrgRoleInput;
12381
12545
  }
12546
+ /** Keyed on the Supabase organization UUID -- see `useOrgRoles`. */
12382
12547
  declare function useUpdateOrgRole(): _tanstack_react_query.UseMutationResult<OrgRole, Error, UpdateOrgRoleParams, unknown>;
12383
12548
 
12549
+ /** Keyed on the Supabase organization UUID -- see `useOrgRoles`. */
12384
12550
  declare function useDeleteOrgRole(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
12385
12551
 
12552
+ /**
12553
+ * Both mutations invalidate on the **Supabase organization UUID** -- the same
12554
+ * key space `useOrgRoles` and `useEffectivePermissions` read on. Previously
12555
+ * this invalidated `workOSOrganizationId`-keyed entries while `useOrgRoles`
12556
+ * callers such as `MemberAccessModal` read Supabase-UUID-keyed entries, so a
12557
+ * role change here never invalidated the cache the modal displayed.
12558
+ */
12386
12559
  declare function useAssignRole(): _tanstack_react_query.UseMutationResult<void, Error, AssignRoleInput, unknown>;
12387
12560
  declare function useRevokeRole(): _tanstack_react_query.UseMutationResult<void, Error, RevokeRoleInput, unknown>;
12388
12561
 
12562
+ /** Keyed on the Supabase organization UUID -- see `useAssignRole`/`useRevokeRole`. */
12389
12563
  declare function useEffectivePermissions(membershipId: string | undefined): _tanstack_react_query.UseQueryResult<{
12390
12564
  permissions: string[];
12391
12565
  }, Error>;
@@ -12671,8 +12845,8 @@ declare function useExecutionLogsFilters(_timeRange: TimeRange): {
12671
12845
  * Note: `organizationId` is passed as a parameter (not read from context)
12672
12846
  * so consumers can query for a specific organization independently.
12673
12847
  *
12674
- * @param organizationId - The organization to fetch members for
12675
- * @param params - Optional additional filters (reserved for future use)
12848
+ * @param organizationId - The Supabase organization UUID to fetch members for
12849
+ * @param params - Optional additional filters, forwarded to the API
12676
12850
  * @returns TanStack Query result with MembershipWithDetails array
12677
12851
  *
12678
12852
  * @example
@@ -12680,7 +12854,7 @@ declare function useExecutionLogsFilters(_timeRange: TimeRange): {
12680
12854
  * const { data: members, isLoading } = useOrganizationMembers(organizationId)
12681
12855
  * ```
12682
12856
  */
12683
- declare function useOrganizationMembers(organizationId: string, params?: Omit<ListMembershipsParams, 'organizationId'>): _tanstack_react_query.UseQueryResult<MembershipWithDetails[], Error>;
12857
+ declare function useOrganizationMembers(organizationId: SupabaseOrgId, params?: Omit<ListMembershipsParams, 'organizationId'>): _tanstack_react_query.UseQueryResult<MembershipWithDetails[], Error>;
12684
12858
 
12685
12859
  /**
12686
12860
  * Subscribe to the org-scoped delivery SSE stream.
@@ -15637,54 +15811,6 @@ interface CollapsibleJsonSectionProps {
15637
15811
  }
15638
15812
  declare function CollapsibleJsonSection({ title, data, defaultExpanded }: CollapsibleJsonSectionProps): react_jsx_runtime.JSX.Element;
15639
15813
 
15640
- /**
15641
- * Shared types for ResourceDefinition components
15642
- */
15643
- /** Serialized knowledge node from API response */
15644
- interface SerializedKnowledgeNode {
15645
- id: string;
15646
- description: string;
15647
- loaded: boolean;
15648
- hasPrompt: boolean;
15649
- [key: string]: unknown;
15650
- }
15651
- /** Serialized knowledge map from API response */
15652
- interface SerializedKnowledgeMap {
15653
- nodeCount: number;
15654
- nodes: SerializedKnowledgeNode[];
15655
- }
15656
-
15657
- interface NewKnowledgeMapGraphProps {
15658
- knowledgeMap: SerializedKnowledgeMap;
15659
- agentName: string;
15660
- compact?: boolean;
15661
- fitViewTrigger?: number;
15662
- }
15663
- declare function NewKnowledgeMapGraph(props: NewKnowledgeMapGraphProps): react_jsx_runtime.JSX.Element;
15664
-
15665
- interface KnowledgeMapNodeData {
15666
- id: string;
15667
- name: string;
15668
- description: string;
15669
- loaded: boolean;
15670
- hasPrompt: boolean;
15671
- isAgentNode: boolean;
15672
- [key: string]: unknown;
15673
- }
15674
- interface KnowledgeMapEdgeData {
15675
- [key: string]: unknown;
15676
- }
15677
- declare function useNewKnowledgeMapLayout(knowledgeMap: SerializedKnowledgeMap | undefined, agentName: string): {
15678
- nodes: Node<KnowledgeMapNodeData>[];
15679
- edges: Edge<KnowledgeMapEdgeData>[];
15680
- };
15681
-
15682
- type NewKnowledgeMapNodeProps = NodeProps<Node<KnowledgeMapNodeData>>;
15683
- declare const NewKnowledgeMapNode: React$1.NamedExoticComponent<NewKnowledgeMapNodeProps>;
15684
-
15685
- type NewKnowledgeMapEdgeProps = EdgeProps<Edge<KnowledgeMapEdgeData, string>>;
15686
- declare const NewKnowledgeMapEdge: React$1.NamedExoticComponent<NewKnowledgeMapEdgeProps>;
15687
-
15688
15814
  interface ZodFormRendererProps<TSchema extends z$1.ZodType> {
15689
15815
  schema: TSchema;
15690
15816
  defaults?: Partial<z$1.infer<TSchema>>;
@@ -15816,6 +15942,23 @@ interface MembershipStatusBadgeProps {
15816
15942
  }
15817
15943
  declare function MembershipStatusBadge({ status, size, variant }: MembershipStatusBadgeProps): react_jsx_runtime.JSX.Element;
15818
15944
 
15945
+ interface ProvisioningStateBadgeProps {
15946
+ /**
15947
+ * `undefined` means the endpoint did not report a provisioning state, which is
15948
+ * indistinguishable from the ordinary case for display purposes.
15949
+ */
15950
+ state?: MembershipProvisioningState;
15951
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
15952
+ variant?: 'light' | 'filled' | 'outline' | 'dot';
15953
+ }
15954
+ /**
15955
+ * Marks a membership that is not backed by a completed signup.
15956
+ *
15957
+ * Renders nothing for `linked` and for `undefined` — those are the ordinary case,
15958
+ * and a badge on every row would carry no information.
15959
+ */
15960
+ declare function ProvisioningStateBadge({ state, size, variant }: ProvisioningStateBadgeProps): react_jsx_runtime.JSX.Element | null;
15961
+
15819
15962
  interface OrganizationMembershipsListProps {
15820
15963
  memberships: MembershipWithDetails[];
15821
15964
  loading: boolean;
@@ -17226,6 +17369,12 @@ interface UseOrgInitializationReturn {
17226
17369
  */
17227
17370
  declare function createUseOrgInitialization(useOrganizations: () => UseOrganizationsReturn, useApiClient: () => UseApiClientReturn): () => UseOrgInitializationReturn;
17228
17371
 
17372
+ /**
17373
+ * Canonical initialization types, owned here next to {@link InitializationProvider}
17374
+ * (the live, wired implementation). The legacy `createUseAppInitialization`
17375
+ * factory in `./hooks/useAppInitialization.ts` imports these rather than
17376
+ * declaring its own copy, so the two implementations can never drift on shape.
17377
+ */
17229
17378
  interface InitializationError {
17230
17379
  layer: 'auth' | 'profile' | 'organization';
17231
17380
  message: string;
@@ -17240,6 +17389,7 @@ interface AppInitializationState {
17240
17389
  retry: () => void;
17241
17390
  profile: SupabaseUserProfile | null;
17242
17391
  }
17392
+
17243
17393
  /**
17244
17394
  * Factory function to create a useAppInitialization hook for your app.
17245
17395
  *
@@ -17278,7 +17428,7 @@ interface ProtectedRouteProps {
17278
17428
  /**
17279
17429
  * When true (default), waits for both user AND organization to be ready
17280
17430
  * before rendering children. When false, only waits for user readiness.
17281
- * @default true
17431
+ * @default true -- see {@link DEFAULT_WAIT_FOR_ORGANIZATION}
17282
17432
  */
17283
17433
  waitForOrganization?: boolean;
17284
17434
  }
@@ -17297,8 +17447,9 @@ interface ProtectedRouteProps {
17297
17447
  * When `canRecover()` returns false, falls back to navigating to `redirectTo`
17298
17448
  * (default: '/login') with a `returnTo` search param.
17299
17449
  *
17300
- * Organization-layer errors are allowed through -- routes like /invitations
17301
- * must be accessible even when the user has no org membership.
17450
+ * Organization-layer errors are allowed through so a route can render its own
17451
+ * no-org UI (e.g. "you have no organization membership yet") instead of being
17452
+ * stuck behind this guard's fallback indefinitely.
17302
17453
  *
17303
17454
  * @example
17304
17455
  * // With custom fallback (your Mantine loader):
@@ -17307,9 +17458,9 @@ interface ProtectedRouteProps {
17307
17458
  * </ProtectedRoute>
17308
17459
  *
17309
17460
  * @example
17310
- * // Wait only for user, not org (e.g. /invitations route):
17461
+ * // Wait only for user, not org (e.g. a page reachable before onboarding):
17311
17462
  * <ProtectedRoute waitForOrganization={false}>
17312
- * <InvitationsPage />
17463
+ * <WelcomePage />
17313
17464
  * </ProtectedRoute>
17314
17465
  */
17315
17466
  declare function ProtectedRoute({ children, redirectTo, fallback, errorFallback, waitForOrganization }: ProtectedRouteProps): react_jsx_runtime.JSX.Element | null;
@@ -17377,15 +17528,35 @@ interface UseUserProfileReturn {
17377
17528
  error: Error | null;
17378
17529
  refetch: () => Promise<void>;
17379
17530
  }
17531
+ /**
17532
+ * Canonical TanStack Query key for the current user's profile.
17533
+ *
17534
+ * Every consumer (ProfileProvider, Command Center's root layout, the
17535
+ * onboarding gate, the welcome flow, account settings, ...) reads and writes
17536
+ * this exact key, so they share one cache entry instead of each issuing an
17537
+ * independent `/users/me/sync` call. Not user-scoped: a full sign-out /
17538
+ * sign-in cycle in this app navigates through WorkOS (a real page load),
17539
+ * which tears down the QueryClient, so no explicit user id is needed to
17540
+ * avoid stale cross-user reads within a single session.
17541
+ */
17542
+ declare const USER_PROFILE_QUERY_KEY: QueryKey;
17380
17543
  /**
17381
17544
  * Hook for managing user profile data with automatic WorkOS -> Supabase sync
17382
17545
  *
17383
- * This hook:
17546
+ * Backed by a single shared TanStack Query cache entry keyed on
17547
+ * {@link USER_PROFILE_QUERY_KEY}. This hook:
17384
17548
  * 1. Automatically syncs WorkOS user data to Supabase on authentication
17385
17549
  * 2. Provides access to the user's Supabase profile data
17386
17550
  * 3. Handles loading states and errors
17387
17551
  * 4. Includes a refetch function for manual updates
17388
17552
  *
17553
+ * Because every consumer queries the same key, calling this hook from
17554
+ * multiple places in the tree (directly or via `useProfile()`) triggers at
17555
+ * most one `/users/me/sync` request per session — later mounts simply read
17556
+ * the cached result. Call `refetch()` (or invalidate {@link USER_PROFILE_QUERY_KEY}
17557
+ * via `useQueryClient()`) to force a fresh sync after a mutation that changes
17558
+ * the profile, e.g. completing onboarding.
17559
+ *
17389
17560
  * @param options - Optional configuration including error handler and apiRequest
17390
17561
  */
17391
17562
  declare const useUserProfile: (options?: UseUserProfileOptions) => UseUserProfileReturn;
@@ -17491,15 +17662,34 @@ interface OrganizationSwitcherProps {
17491
17662
  }
17492
17663
  declare function OrganizationSwitcher({ currentOrganization, memberships, isLoading, onSwitch }: OrganizationSwitcherProps): react_jsx_runtime.JSX.Element;
17493
17664
 
17665
+ interface OrganizationSwitcherConnectedProps {
17666
+ /**
17667
+ * Extra loading condition, OR'd with this component's own internal
17668
+ * loading state (org context initializing/refreshing). Use this instead of
17669
+ * forking the component when a consuming app tracks an additional
17670
+ * org-readiness signal (e.g. an app-specific initialization hook).
17671
+ */
17672
+ isLoading?: boolean;
17673
+ /**
17674
+ * Called after `switchToOrganization` (WorkOS JWT refresh) and
17675
+ * `switchOrganization` (provider state sync) have both resolved
17676
+ * successfully. Use this for app-specific post-switch side effects (e.g.
17677
+ * resetting route-local search params) instead of forking this component.
17678
+ */
17679
+ onSwitched?: (workosOrgId: string) => void;
17680
+ }
17494
17681
  /**
17495
17682
  * Self-wired OrganizationSwitcher that internally handles both the WorkOS JWT update
17496
17683
  * (via AuthKit switchToOrganization) and the provider state update (via switchOrganization).
17497
17684
  *
17498
- * Drop-in replacement for a custom onSwitch handler in most apps. If the app needs
17499
- * post-switch side effects (e.g. navigating away from an org-scoped route), keep that
17500
- * logic app-local and call useOrganization().switchOrganization directly.
17685
+ * Drop-in replacement for a custom onSwitch handler in most apps. If an app needs
17686
+ * post-switch side effects (e.g. navigating away from an org-scoped route), pass
17687
+ * `onSwitched` rather than reimplementing this component -- a prior fork
17688
+ * (Command Center's `AppOrgSwitcher`) existed solely to add one such side effect
17689
+ * and silently dropped this component's own extra-loading-state handling in the
17690
+ * process.
17501
17691
  */
17502
- declare function OrganizationSwitcherConnected(): react_jsx_runtime.JSX.Element;
17692
+ declare function OrganizationSwitcherConnected({ isLoading: extraLoading, onSwitched }?: OrganizationSwitcherConnectedProps): react_jsx_runtime.JSX.Element;
17503
17693
 
17504
17694
  interface OrganizationsState {
17505
17695
  currentWorkOSOrganizationId: WorkOsOrgId | null;
@@ -17676,11 +17866,11 @@ declare function useInitialization(): AppInitializationState;
17676
17866
  * if (!organizationReady || isLoading) return <SubshellLoader />
17677
17867
  *
17678
17868
  * @example
17679
- * // Pages accessible without org (invitations, pending)
17869
+ * // Pages accessible without org
17680
17870
  * const { userReady, error } = useInitialization()
17681
17871
  * if (!userReady) return <SubshellLoader />
17682
17872
  * if (error?.layer === 'organization') {
17683
- * return <PendingInvitationPage message={error.message} />
17873
+ * return <AppShellError message={error.message} />
17684
17874
  * }
17685
17875
  *
17686
17876
  * @example
@@ -17694,5 +17884,5 @@ declare function InitializationProvider({ children }: {
17694
17884
  children: ReactNode;
17695
17885
  }): React$1.FunctionComponentElement<React$1.ProviderProps<AppInitializationState | null>>;
17696
17886
 
17697
- export { AGENT_CONSTANTS, APIClientError, APIErrorAlert, API_URL, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, AmbientBloomGrid, ApiClientProvider, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppBackground, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, AuthProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberBackground, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisServiceProvider, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilmGrain, FilterBar, FloatingMotes, FloatingOrbs, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, InitializationContext, InitializationProvider, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LIMIT_ACTIVITY_FEED, 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, OAUTH_FLOW_TIMEOUT, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationContext, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PAGE_SIZE_DEFAULT, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PerspectiveGrid, PipelineFunnelWidget, PresetsProvider, ProfileProvider, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RadiantGlow, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, ResourceStatusColors, RichTextEditor, RoleBadge, RouterProvider, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, ScrollToTop, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavItem, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SubshellSidebarSection, SystemShell, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TabCountBadge, TabSection, TableSelectionToolbar, TanStackRouterBridge, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, UserProfileService, Vignette, VisualizerContainer, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WaveBackground, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, answerValueSchema, brochureStyles, brochureTheme, buildErrorReport, calculateBarPosition, calculateGraphHeight, calculateProgress, checkboxWithOtherSchema, clientsKeys, collectResourceFilterFacets, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createCustomValue, createElevasisQueryClient, createOrganizationsSlice, createPresetValue, createSurveyConfig, createTestSystemsProvider, createUseAppInitialization, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, debounce, defaultTheme, deliveryManifest, executionsKeys, extendSemanticIconRegistry, extractAnswerValue, extractMultiAnswerValues, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatStatusLabel, formatTimeAgo, generateShades, getAnswerString, getCustomValueText, getEdgeColor, getEdgeOpacity, getEnrichmentColor, getErrorInfo, getErrorTitle, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getMultiAnswerStrings, getPreset, getResourceColor, getResourceFilterFacetIds, getResourceIcon, getResourceStatusColor, getSemanticIconComponent, getSeriesColor, getStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, hasCustomValue, hasPresetValue, iconMap, isAPIClientError, isCustomValue, isPresetValue, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mantineThemeOverride, mdxComponents, mergeSessionMessages, mergeTheme, milestoneKeys, milestoneStatusColors, monitoringManifest, multiAnswerValueSchema, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, PRESETS as presets, projectActivityKeys, projectKeys, projectStatusColors, radioWithOtherSchema, requestsKeys, resolveSemanticIconComponent, restoreConsole, scheduleKeys, seoManifest, sessionsKeys, settingsManifest, setupBrowserMocks, shouldAnimateEdge, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, sortData, subshellNavItemIconSize, subsidebarWidth, suppressKnownWarnings, taskKeys, taskStatusColors, taskTypeColors, topbarHeight, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCardStyle, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, 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, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useDirectedChainHighlighting, useEffectivePermissions, useElevasisServices, useElevasisSystems, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutionSSE, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphHighlighting, useGraphTheme, useInFlightExecutions, useInitialization, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNewKnowledgeMapLayout, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useTypeform, useTypeformContext, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution, useWorkflowStepsLayout, validateEmail };
17698
- export type { AccessGuardProps, AccessKeyInput, AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityEntry, ActivityFilters$1 as ActivityFilters, ActivityFiltersProps, ActivityTableProps, ActivityTrendChartProps, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AgentIterationEdgeData, AgentIterationNodeData, AgentIterationTotals, AgentStatus, AnswerValue, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppErrorBoundaryProps, AppInitializationState, AppearanceConfig, ArrayItemAnswer, ArrayQuestion, AssignRoleInput, AuthConfig, AuthContextValue, AuthKitConfig, BaseEdgeProps, BaseExecutionLogsProps, BaseQuestion, BreadcrumbItem, BreadcrumbsProps, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChartFrameProps, ChatMessage, CheckboxQuestion, ClientDetailResponse, ClientResponse, ClientStatus, ClientStatusResponse, ClientsListFilters, CollapsibleSidebarGroupProps, ColorShadesTuple, CombinedTrendChartProps, CompanyDetailPageProps, ContactDetailPageProps, ContentQuestion, ContextViewerProps, CostByModelTableProps, CostTrendChartProps, CrashErrorFallbackProps, CreateApiKeyRequest, CreateApiKeyResponse, CreateClientRequest, CreateCredentialRequest, CreateCredentialResponse, CreateElevasisQueryClientOptions, CreateOrgRoleInput, CreateRoleModalProps, CreateScheduleInput, CreateSessionResponse, CreateTestSystemsProviderOptions, CredentialListItem, CrmOverviewProps, CyberAreaChartProps, CyberColors, CyberDonutProps, CyberDonutSegment, CyberSeries, CyberVariant, DealDetail, DealKanbanCardProps, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisSystemsContextValue, ElevasisSystemsProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorAnalysisCardProps, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorReportCardProps, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionBreakdownTableProps, ExecutionErrorDetails, ExecutionHealthCardProps, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogEntry, ExecutionLogsFilters$1 as ExecutionLogsFilters, ExecutionLogsFiltersProps, ExecutionLogsPageResponse, ExecutionLogsTableProps, ExecutionPathState, ExecutionStatus, FailingResource, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphFitViewHandlerProps, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, HeroStatsRowProps, InitializationError, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LeadGenStageKey, LinkItem, LinkProps, LinksGroupProps, ListActivitiesResponse, ListApiKeysResponse, ListBuilderRegistry, ListBuilderWorkflow, ListBuilderWorkflowCategory, ListCredentialsResponse, ListExecutionsFilters, ListRecordsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, LogLevel, MdxRendererProps, MembershipWithDetails, MessageEvent, MessageType, MultiAnswerValue, NavItem, NavigationButtonProps, NodeColorType, NotificationAdapter, OrgRole, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphSystemBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PageCondition, PermissionRow, PresetEntry, PresetName, ProfileContextValue, ProjectsSidebarMiddleProps, ProtectedRouteProps, RadioQuestion, RemoveCompaniesFromListResult, RequestRow, RequestSeverity, RequestType, RequestsListFilters, ResolvedShellModel, ResolvedShellRouteMatch, ResolvedShellSystem, ResolvedSystemAccess, ResolvedSystemModule, ResolvedSystemSemantics, ResourceFilterFacet, ResourceHealthPanelProps, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, RichTextEditorProps, RouterAdapter, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SemanticIconProps, SemanticIconRegistry, SemanticIconToken, SerializedKnowledgeMap, SerializedKnowledgeNode, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellRouteMatchStatus, ShellRuntime, ShellSidebarLinkGroup, ShellSidebarLinkItem, ShellSidebarProjectionOptions, SidebarNestedProps, SortDirection, SortState, StaleDealSummaryItem, StatCardProps, StatefulItem, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StepExecutionData, StyledMarkdownProps, SubmitActionRequest, SubmitActionResponse, SubmitRequestInput, SubshellContainerProps, SubshellContentContainerProps, SubshellNavItemProps, SubshellNavListProps, SubshellRightSideContainerProps, SubshellSidebarContainerProps, SubshellSidebarLoaderProps, SubshellSidebarProps, SubshellSidebarSectionProps, SupabaseUserProfile, SystemHealthExecutionSummary, SystemHealthResponse, SystemIconComponent, SystemModule, SystemSidebarComponent, TabSectionProps, TablerIcon, TablerIconComponent, TaskFilterStatus, TaskSchedule, TextQuestion, TextareaQuestion, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, TopbarActionsProps, TopbarProps, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, TrendIndicatorProps, TypeformActions, TypeformAnswerValue, TypeformAnswers, TypeformArrayFieldProps, TypeformCheckboxGroupProps, TypeformConfig, TypeformContextValue, TypeformErrors, TypeformInputQuestion, TypeformNavigationProps, TypeformOption, TypeformPage, TypeformProgressProps, TypeformQuestion, TypeformRadioGroupProps, TypeformState, TypeformStyles, TypeformSurveyProps, TypeformTextInputProps, TypeformTheme, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateClientRequest, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseAccessResult, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseArtifactsParams, UseBatchedResourcesHealthParams, UseBreadcrumbsOptions, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseInFlightExecutionsOptions, UseListProgressOptions, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseSystemHealthParams, UseTypeformReturn, UseUserProfileReturn, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, VerifyCredentialResponse, WaveVariant, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowExecutionTriggerParams, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput, ZodFormRendererProps };
17887
+ export { AGENT_CONSTANTS, APIClientError, APIErrorAlert, API_URL, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, AmbientBloomGrid, ApiClientProvider, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppBackground, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, AuthProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberBackground, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisServiceProvider, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilmGrain, FilterBar, FloatingMotes, FloatingOrbs, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, InitializationContext, InitializationProvider, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LIMIT_ACTIVITY_FEED, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationContext, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PAGE_SIZE_DEFAULT, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PerspectiveGrid, PipelineFunnelWidget, PresetsProvider, ProfileProvider, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, ProvisioningStateBadge, QuickCreateActions, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, RadiantGlow, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, ResourceStatusColors, RichTextEditor, RoleBadge, RouterProvider, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, ScrollToTop, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavItem, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SubshellSidebarSection, SystemShell, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TabCountBadge, TabSection, TableSelectionToolbar, TanStackRouterBridge, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, USER_PROFILE_QUERY_KEY, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, UserProfileService, Vignette, VisualizerContainer, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WaveBackground, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, answerValueSchema, brochureStyles, brochureTheme, buildErrorReport, calculateBarPosition, calculateGraphHeight, calculateProgress, checkboxWithOtherSchema, clientsKeys, collectResourceFilterFacets, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createCustomValue, createElevasisQueryClient, createOrganizationsSlice, createPresetValue, createSurveyConfig, createTestSystemsProvider, createUseAppInitialization, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, debounce, defaultTheme, deliveryManifest, executionsKeys, extendSemanticIconRegistry, extractAnswerValue, extractMultiAnswerValues, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatStatusLabel, formatTimeAgo, generateShades, getAnswerString, getCustomValueText, getEdgeColor, getEdgeOpacity, getEnrichmentColor, getErrorInfo, getErrorTitle, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getMultiAnswerStrings, getPreset, getResourceColor, getResourceFilterFacetIds, getResourceIcon, getResourceStatusColor, getSemanticIconComponent, getSeriesColor, getStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, hasCustomValue, hasPresetValue, iconMap, isAPIClientError, isCustomValue, isPresetValue, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mantineThemeOverride, mdxComponents, mergeSessionMessages, mergeTheme, milestoneKeys, milestoneStatusColors, monitoringManifest, multiAnswerValueSchema, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, PRESETS as presets, projectActivityKeys, projectKeys, projectStatusColors, radioWithOtherSchema, requestsKeys, resolveSemanticIconComponent, restoreConsole, scheduleKeys, seoManifest, sessionsKeys, settingsManifest, setupBrowserMocks, shouldAnimateEdge, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, sortData, subshellNavItemIconSize, subsidebarWidth, suppressKnownWarnings, taskKeys, taskStatusColors, taskTypeColors, topbarHeight, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCardStyle, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTask, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, 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, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useDirectedChainHighlighting, useEffectivePermissions, useElevasisServices, useElevasisSystems, useEndSession, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutionSSE, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphHighlighting, useGraphTheme, useInFlightExecutions, useInitialization, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useTypeform, useTypeformContext, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution, useWorkflowStepsLayout, validateEmail };
17888
+ export type { AccessGuardProps, AccessKeyInput, AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityEntry, ActivityFilters$1 as ActivityFilters, ActivityFiltersProps, ActivityTableProps, ActivityTrendChartProps, ActivityTrendResponse, AddCompaniesToListResult, AddContactsToListResult, AgentIterationEdgeData, AgentIterationNodeData, AgentIterationTotals, AgentStatus, AnswerValue, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppErrorBoundaryProps, AppInitializationState, AppearanceConfig, ArrayItemAnswer, ArrayQuestion, AssignRoleInput, AuthConfig, AuthContextValue, AuthKitConfig, BaseEdgeProps, BaseExecutionLogsProps, BaseQuestion, BreadcrumbItem, BreadcrumbsProps, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChartFrameProps, ChatMessage, CheckboxQuestion, ClientDetailResponse, ClientResponse, ClientStatus, ClientStatusResponse, ClientsListFilters, CollapsibleSidebarGroupProps, ColorShadesTuple, CombinedTrendChartProps, CompanyDetailPageProps, ContactDetailPageProps, ContentQuestion, ContextViewerProps, CostByModelTableProps, CostTrendChartProps, CrashErrorFallbackProps, CreateApiKeyRequest, CreateApiKeyResponse, CreateClientRequest, CreateCredentialRequest, CreateCredentialResponse, CreateElevasisQueryClientOptions, CreateOrgRoleInput, CreateRoleModalProps, CreateScheduleInput, CreateSessionResponse, CreateTestSystemsProviderOptions, CredentialListItem, CrmOverviewProps, CyberAreaChartProps, CyberColors, CyberDonutProps, CyberDonutSegment, CyberSeries, CyberVariant, DealDetail, DealKanbanCardProps, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisSystemsContextValue, ElevasisSystemsProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorAnalysisCardProps, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorReportCardProps, ErrorTrendsParams, ExecuteActionInput, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionBreakdownTableProps, ExecutionErrorDetails, ExecutionHealthCardProps, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogEntry, ExecutionLogsFilters$1 as ExecutionLogsFilters, ExecutionLogsFiltersProps, ExecutionLogsPageResponse, ExecutionLogsTableProps, ExecutionPathState, ExecutionStatus, FailingResource, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphFitViewHandlerProps, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, HeroStatsRowProps, InitializationError, JsonViewerProps, KanbanBoardProps, LeadGenStageKey, LinkItem, LinkProps, LinksGroupProps, ListActivitiesResponse, ListApiKeysResponse, ListBuilderRegistry, ListBuilderWorkflow, ListBuilderWorkflowCategory, ListCredentialsResponse, ListExecutionsFilters, ListRecordsFilters, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, LogLevel, MdxRendererProps, MembershipWithDetails, MessageEvent, MessageType, MultiAnswerValue, NavItem, NavigationButtonProps, NodeColorType, NotificationAdapter, OrgRole, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphSystemBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PageCondition, PermissionRow, PresetEntry, PresetName, ProfileContextValue, ProjectsSidebarMiddleProps, ProtectedRouteProps, RadioQuestion, RemoveCompaniesFromListResult, RequestRow, RequestSeverity, RequestType, RequestsListFilters, ResolvedShellModel, ResolvedShellRouteMatch, ResolvedShellSystem, ResolvedSystemAccess, ResolvedSystemModule, ResolvedSystemSemantics, ResourceFilterFacet, ResourceHealthPanelProps, ResourcesResponse, RetryExecutionParams, RevokeRoleInput, RichTextEditorProps, RouterAdapter, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SemanticIconProps, SemanticIconRegistry, SemanticIconToken, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellRouteMatchStatus, ShellRuntime, ShellSidebarLinkGroup, ShellSidebarLinkItem, ShellSidebarProjectionOptions, SidebarNestedProps, SortDirection, SortState, StaleDealSummaryItem, StatCardProps, StatefulItem, StatusColorScheme, StatusFilter$1 as StatusFilter, StatusIconColors, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StepExecutionData, StyledMarkdownProps, SubmitActionRequest, SubmitActionResponse, SubmitRequestInput, SubshellContainerProps, SubshellContentContainerProps, SubshellNavItemProps, SubshellNavListProps, SubshellRightSideContainerProps, SubshellSidebarContainerProps, SubshellSidebarLoaderProps, SubshellSidebarProps, SubshellSidebarSectionProps, SupabaseUserProfile, SystemHealthExecutionSummary, SystemHealthResponse, SystemIconComponent, SystemModule, SystemSidebarComponent, TabSectionProps, TablerIcon, TablerIconComponent, TaskFilterStatus, TaskSchedule, TextQuestion, TextareaQuestion, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, TopbarActionsProps, TopbarProps, TransitionItemInput, TransitionListCompanyInput, TransitionListMemberInput, TransitionStateInput, TrendIndicatorProps, TypeformActions, TypeformAnswerValue, TypeformAnswers, TypeformArrayFieldProps, TypeformCheckboxGroupProps, TypeformConfig, TypeformContextValue, TypeformErrors, TypeformInputQuestion, TypeformNavigationProps, TypeformOption, TypeformPage, TypeformProgressProps, TypeformQuestion, TypeformRadioGroupProps, TypeformState, TypeformStyles, TypeformSurveyProps, TypeformTextInputProps, TypeformTheme, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateClientRequest, UpdateListStatusInput, UpdateOrgRoleInput, UpdateScheduleInput, UseAccessResult, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseArtifactsParams, UseBatchedResourcesHealthParams, UseBreadcrumbsOptions, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseExecutionSSEOptions, UseExecutionSSEResult, UseInFlightExecutionsOptions, UseListProgressOptions, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseSystemHealthParams, UseTypeformReturn, UseUserProfileReturn, UseWorkflowExecutionOptions, UseWorkflowExecutionResult, VerifyCredentialResponse, WaveVariant, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowExecutionTriggerParams, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput, ZodFormRendererProps };