@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
@@ -219,117 +219,97 @@ interface ExecutionLogMessage {
219
219
  context?: LogContext;
220
220
  }
221
221
 
222
+ declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
223
+ active: "active";
224
+ deprecated: "deprecated";
225
+ archived: "archived";
226
+ }>;
227
+ type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
228
+
222
229
  /**
223
- * Serialized Registry Types
230
+ * Memory type definitions
231
+ * Types for agent memory management with semantic entry types
232
+ */
233
+ /**
234
+ * Semantic memory entry types
235
+ * Use-case agnostic types that describe the purpose of each entry
236
+ * Memory types mirror action types for clarity and filtering
237
+ */
238
+ type MemoryEntryType = 'context' | 'input' | 'reasoning' | 'tool-result' | 'error';
239
+ /**
240
+ * Who authored an entry's content.
224
241
  *
225
- * Pre-computed JSON-safe types for API responses and Command View.
226
- * Serialization happens once at API startup, enabling instant response times.
242
+ * This is what lets the assembled prompt tell framework-authored text apart from text that
243
+ * originated outside the trust boundary. `'framework'` content is ours; the other three are not
244
+ * and are rendered inside the JSON data envelope (see `MemoryManager.toContextParts`).
227
245
  */
228
-
246
+ type MemoryEntrySource = 'framework' | 'user' | 'tool' | 'model';
229
247
  /**
230
- * Serialized agent definition (JSON-safe)
231
- * Result of serializeDefinition(AgentDefinition)
248
+ * Memory entry - represents a single entry in agent memory
249
+ * Stored in agent memory, translated by adapters to vendor-specific formats
232
250
  */
233
- interface SerializedAgentDefinition {
234
- config: {
235
- resourceId: string;
236
- name: string;
237
- description: string;
238
- version: string;
239
- type: 'agent';
240
- kind: 'orchestrator' | 'specialist' | 'utility' | 'system';
241
- status: 'dev' | 'prod';
242
- links?: ResourceLink[];
243
- category?: ResourceCategory;
244
- /** Whether this resource is archived and should be excluded from registration and deployment */
245
- archived?: boolean;
246
- systemPrompt: string;
247
- constraints?: {
248
- maxIterations?: number;
249
- timeout?: number;
250
- maxSessionMemoryKeys?: number;
251
- maxMemoryTokens?: number;
252
- };
253
- sessionCapable?: boolean;
254
- memoryPreferences?: string;
255
- };
256
- modelConfig: {
257
- provider: string;
258
- model: string;
259
- apiKey: string;
260
- temperature: number;
261
- maxOutputTokens: number;
262
- topP?: number;
263
- modelOptions?: Record<string, unknown>;
264
- };
265
- contract: {
266
- inputSchema: object;
267
- outputSchema?: object;
268
- };
269
- tools: Array<{
270
- name: string;
271
- description: string;
272
- inputSchema?: object;
273
- outputSchema?: object;
274
- }>;
275
- knowledgeMap?: {
276
- nodeCount: number;
277
- nodes: Array<{
278
- id: string;
279
- description: string;
280
- loaded: boolean;
281
- hasPrompt: boolean;
282
- }>;
251
+ interface MemoryEntry {
252
+ type: MemoryEntryType;
253
+ content: string;
254
+ timestamp: number;
255
+ turnNumber: number | null;
256
+ iterationNumber: number | null;
257
+ /**
258
+ * Provenance. **Optional on purpose** `undefined` means unknown, which is what every
259
+ * pre-existing snapshot and every not-yet-redeployed tenant bundle produces. Read sites MUST
260
+ * test `== null`, never `=== undefined`: the `inTurnScope` predicate in `manager.ts` is the
261
+ * cautionary precedent, where a `=== undefined` check silently dropped every `null`-stamped
262
+ * entry. `isMemoryEntry` is deliberately NOT tightened to require this field; doing so would
263
+ * make every stored snapshot fail validation, and `restoreSessionMemory` fails open by
264
+ * starting the agent with empty memory rather than throwing.
265
+ */
266
+ source?: MemoryEntrySource;
267
+ /**
268
+ * Which tool produced this entry. Set on `tool-result` entries so the model can tell N parallel
269
+ * results apart -- the framework instructs batching independent tool calls in one iteration, and
270
+ * an anonymous result is unattributable the moment two land in the same iteration. `addToolError`
271
+ * already carries this (folded into its `content` JSON); this is the same fact for the success
272
+ * path, carried as a real field instead of prose the caller has to parse back out.
273
+ */
274
+ toolName?: string;
275
+ /**
276
+ * Present when `truncateContent` cut this entry's `content` to fit its token budget. A sibling
277
+ * field, never text appended into `content` -- the notice used to be spliced into the string
278
+ * itself, which could (and did) land inside a JSON string literal `truncateContent` had just cut
279
+ * open, breaking `JSON.parse` on the far end. Absent means never truncated.
280
+ */
281
+ truncated?: {
282
+ omittedTokens: number;
283
283
  };
284
- metricsConfig?: object;
284
+ /**
285
+ * Prompt-injection warning types found in `content`, screened once here -- when the entry is
286
+ * written -- instead of by re-scanning the whole accumulated envelope on every iteration it gets
287
+ * re-sent for (`screenRequest`'s `data-envelope` slot used to do exactly that). Empty array means
288
+ * screened and clean; `undefined` means never screened (entries that bypass `addToHistory`/`set`,
289
+ * or pre-existing snapshots from before this field existed).
290
+ */
291
+ warnings?: string[];
285
292
  }
286
293
  /**
287
- * Serialized workflow definition (JSON-safe)
288
- * Result of serializeDefinition(WorkflowDefinition)
294
+ * Agent memory - Self-orchestrated memory with session + working storage
295
+ * Agent has full control over what persists, framework handles auto-compaction
289
296
  */
290
- interface SerializedWorkflowDefinition {
291
- config: {
292
- resourceId: string;
293
- name: string;
294
- description: string;
295
- version: string;
296
- type: 'workflow';
297
- status: 'dev' | 'prod';
298
- links?: ResourceLink[];
299
- category?: ResourceCategory;
300
- /** Whether this resource is archived and should be excluded from registration and deployment */
301
- archived?: boolean;
302
- };
303
- entryPoint: string;
304
- steps: Array<{
305
- id: string;
306
- name: string;
307
- description: string;
308
- inputSchema?: object;
309
- outputSchema?: object;
310
- next: {
311
- type: 'linear' | 'conditional';
312
- target?: string;
313
- routes?: Array<{
314
- target: string;
315
- }>;
316
- default?: string;
317
- } | null;
318
- }>;
319
- contract: {
320
- inputSchema: object;
321
- outputSchema?: object;
322
- };
323
- metricsConfig?: object;
297
+ interface AgentMemory {
298
+ /**
299
+ * Session memory - Persists for session/conversation duration
300
+ * Never auto-trimmed by framework
301
+ * Agent-managed key-value store for critical information
302
+ * Agent provides strings, framework wraps in MemoryEntry
303
+ */
304
+ sessionMemory: Record<string, MemoryEntry>;
305
+ /**
306
+ * Working memory - Execution history
307
+ * Automatically compacted by framework when needed
308
+ * Agent doesn't control compaction
309
+ */
310
+ history: MemoryEntry[];
324
311
  }
325
312
 
326
- declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
327
- active: "active";
328
- deprecated: "deprecated";
329
- archived: "archived";
330
- }>;
331
- type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
332
-
333
313
  /**
334
314
  * Shared form field types for dynamic form generation
335
315
  * Used by: Command Queue, Execution Runner UI, future form-based features
@@ -406,47 +386,6 @@ interface WorkflowNodeVisualizerData {
406
386
  isRunning: boolean;
407
387
  }
408
388
 
409
- /**
410
- * Memory type definitions
411
- * Types for agent memory management with semantic entry types
412
- */
413
- /**
414
- * Semantic memory entry types
415
- * Use-case agnostic types that describe the purpose of each entry
416
- * Memory types mirror action types for clarity and filtering
417
- */
418
- type MemoryEntryType = 'context' | 'input' | 'reasoning' | 'tool-result' | 'delegation-result' | 'error';
419
- /**
420
- * Memory entry - represents a single entry in agent memory
421
- * Stored in agent memory, translated by adapters to vendor-specific formats
422
- */
423
- interface MemoryEntry {
424
- type: MemoryEntryType;
425
- content: string;
426
- timestamp: number;
427
- turnNumber: number | null;
428
- iterationNumber: number | null;
429
- }
430
- /**
431
- * Agent memory - Self-orchestrated memory with session + working storage
432
- * Agent has full control over what persists, framework handles auto-compaction
433
- */
434
- interface AgentMemory {
435
- /**
436
- * Session memory - Persists for session/conversation duration
437
- * Never auto-trimmed by framework
438
- * Agent-managed key-value store for critical information
439
- * Agent provides strings, framework wraps in MemoryEntry
440
- */
441
- sessionMemory: Record<string, MemoryEntry>;
442
- /**
443
- * Working memory - Execution history
444
- * Automatically compacted by framework when needed
445
- * Agent doesn't control compaction
446
- */
447
- history: MemoryEntry[];
448
- }
449
-
450
389
  /**
451
390
  * Agent timeline and observability types
452
391
  * Used for UI timeline visualization and backend processing
@@ -3247,6 +3186,7 @@ type Database = {
3247
3186
  deleted_at: string | null;
3248
3187
  ended_at: string | null;
3249
3188
  memory_snapshot: Json;
3189
+ memory_version: number;
3250
3190
  metadata: Json | null;
3251
3191
  organization_id: string;
3252
3192
  resource_id: string;
@@ -3263,6 +3203,7 @@ type Database = {
3263
3203
  deleted_at?: string | null;
3264
3204
  ended_at?: string | null;
3265
3205
  memory_snapshot: Json;
3206
+ memory_version?: number;
3266
3207
  metadata?: Json | null;
3267
3208
  organization_id: string;
3268
3209
  resource_id: string;
@@ -3279,6 +3220,7 @@ type Database = {
3279
3220
  deleted_at?: string | null;
3280
3221
  ended_at?: string | null;
3281
3222
  memory_snapshot?: Json;
3223
+ memory_version?: number;
3282
3224
  metadata?: Json | null;
3283
3225
  organization_id?: string;
3284
3226
  resource_id?: string;
@@ -3616,9 +3558,14 @@ type Database = {
3616
3558
  p_session_id: string;
3617
3559
  };
3618
3560
  Returns: {
3561
+ context_window_size: number;
3619
3562
  created_at: string;
3563
+ cumulative_input_tokens: number;
3564
+ cumulative_output_tokens: number;
3565
+ deleted_at: string;
3620
3566
  ended_at: string;
3621
3567
  memory_snapshot: Json;
3568
+ memory_version: number;
3622
3569
  metadata: Json;
3623
3570
  organization_id: string;
3624
3571
  resource_id: string;
@@ -3660,6 +3607,18 @@ type Database = {
3660
3607
  };
3661
3608
  Returns: boolean;
3662
3609
  };
3610
+ increment_session_tokens: {
3611
+ Args: {
3612
+ p_input_tokens: number;
3613
+ p_output_tokens: number;
3614
+ p_session_id: string;
3615
+ };
3616
+ Returns: {
3617
+ context_window_size: number;
3618
+ cumulative_input_tokens: number;
3619
+ cumulative_output_tokens: number;
3620
+ }[];
3621
+ };
3663
3622
  is_org_member: {
3664
3623
  Args: {
3665
3624
  org_id: string;
@@ -4366,10 +4325,50 @@ interface OrganizationMembership {
4366
4325
  createdAt: string;
4367
4326
  updatedAt: string;
4368
4327
  }
4328
+ /**
4329
+ * How a membership row relates to the two systems that describe it.
4330
+ *
4331
+ * - `linked` — an `org_memberships` row that carries a `workos_membership_id`
4332
+ * - `pre_provisioned` — an `org_memberships` row with no `workos_membership_id`;
4333
+ * the invitee was provisioned but has not completed signup
4334
+ * - `workos_only` — a WorkOS membership with no `org_memberships` row (a sync gap)
4335
+ */
4336
+ type MembershipProvisioningState = 'linked' | 'pre_provisioned' | 'workos_only';
4369
4337
  /**
4370
4338
  * Extended membership with user and organization details for UI
4339
+ *
4340
+ * **ID convention (step 17 of the auth/invitations architecture refactor):**
4341
+ * `id`, `userId`, and `organizationId` are the canonical Supabase UUIDs
4342
+ * (`org_memberships.id` / `users.id` / `organizations.id`) on every producer
4343
+ * of this type. `workosMembershipId` / `workosUserId` /
4344
+ * `organization.workos_org_id` carry the WorkOS-side forms explicitly instead
4345
+ * -- the contract does not overload the canonical fields with either form.
4346
+ *
4347
+ * The one exception: a `workos_only` row (a WorkOS membership with no
4348
+ * `org_memberships` row -- a sync gap) has no canonical membership UUID to
4349
+ * report, because no such row exists. `id` stays the WorkOS `om_...` form for
4350
+ * that `provisioningState` alone; `userId` / `organizationId` are still
4351
+ * resolved to their Supabase forms where the user/organization themselves
4352
+ * exist.
4371
4353
  */
4372
4354
  interface MembershipWithDetails extends OrganizationMembership {
4355
+ /**
4356
+ * Set by `GET /memberships`. Optional so existing consumers are unaffected;
4357
+ * treat `undefined` as "not reported by this endpoint".
4358
+ */
4359
+ provisioningState?: MembershipProvisioningState;
4360
+ /**
4361
+ * WorkOS `om_...` form of `id`. `null` when the membership is
4362
+ * pre-provisioned (invited, signup not completed -- no WorkOS record yet).
4363
+ * Explicit companion to the canonical `id`; see the type-level doc comment.
4364
+ */
4365
+ workosMembershipId?: string | null;
4366
+ /**
4367
+ * WorkOS `user_...` form of `userId`. `null` when the member has not
4368
+ * completed WorkOS signup yet. Explicit companion to the canonical
4369
+ * `userId`; see the type-level doc comment.
4370
+ */
4371
+ workosUserId?: string | null;
4373
4372
  user?: {
4374
4373
  id: string;
4375
4374
  email: string;
@@ -4570,6 +4569,121 @@ interface CostByModelResponse {
4570
4569
  totalCallCount: number;
4571
4570
  }
4572
4571
 
4572
+ /**
4573
+ * Agent-specific type definitions
4574
+ * Types for autonomous agents with tools, memory, and constraints
4575
+ */
4576
+
4577
+ type AgentKind = 'orchestrator' | 'specialist' | 'utility' | 'platform';
4578
+
4579
+ /**
4580
+ * Serialized Registry Types
4581
+ *
4582
+ * Pre-computed JSON-safe types for API responses and Command View.
4583
+ * Serialization happens once at API startup, enabling instant response times.
4584
+ */
4585
+
4586
+ /**
4587
+ * Serialized agent definition (JSON-safe)
4588
+ * Result of serializeDefinition(AgentDefinition)
4589
+ */
4590
+ interface SerializedAgentDefinition {
4591
+ config: {
4592
+ resourceId: string;
4593
+ name: string;
4594
+ description: string;
4595
+ version: string;
4596
+ type: 'agent';
4597
+ /**
4598
+ * Imported from the runtime type instead of hand-copied. It used to be a hand-written literal
4599
+ * union that said `'system'` where `AgentKind`'s fourth member is `'platform'` -- undetected
4600
+ * because `serializeDefinition` returns `any` and every call site casts the result to this
4601
+ * interface, so the literal union was never actually checked against real data. Deriving from
4602
+ * the source of truth makes that class of drift a type error instead of a silent typo.
4603
+ */
4604
+ kind: AgentKind;
4605
+ status: 'dev' | 'prod';
4606
+ links?: ResourceLink[];
4607
+ category?: ResourceCategory;
4608
+ /** Whether this resource is archived and should be excluded from registration and deployment */
4609
+ archived?: boolean;
4610
+ systemPrompt: string;
4611
+ constraints?: {
4612
+ maxIterations?: number;
4613
+ timeout?: number;
4614
+ maxSessionMemoryKeys?: number;
4615
+ maxMemoryTokens?: number;
4616
+ };
4617
+ sessionCapable?: boolean;
4618
+ memoryPreferences?: string;
4619
+ };
4620
+ modelConfig: {
4621
+ provider: string;
4622
+ model: string;
4623
+ apiKey: string;
4624
+ /**
4625
+ * Optional here, matching `ModelConfig` -- this used to be required even though neither real
4626
+ * agent literal in the monorepo (`local-test-agent`, the `createPlatformToolAgent` test fixture)
4627
+ * sets it, and nothing caught the mismatch for the same `serializeDefinition`-returns-`any`
4628
+ * reason `kind` drifted above.
4629
+ */
4630
+ temperature?: number;
4631
+ maxOutputTokens?: number;
4632
+ topP?: number;
4633
+ modelOptions?: Record<string, unknown>;
4634
+ };
4635
+ contract: {
4636
+ inputSchema: object;
4637
+ outputSchema?: object;
4638
+ };
4639
+ tools: Array<{
4640
+ name: string;
4641
+ description: string;
4642
+ inputSchema?: object;
4643
+ outputSchema?: object;
4644
+ }>;
4645
+ metricsConfig?: object;
4646
+ }
4647
+ /**
4648
+ * Serialized workflow definition (JSON-safe)
4649
+ * Result of serializeDefinition(WorkflowDefinition)
4650
+ */
4651
+ interface SerializedWorkflowDefinition {
4652
+ config: {
4653
+ resourceId: string;
4654
+ name: string;
4655
+ description: string;
4656
+ version: string;
4657
+ type: 'workflow';
4658
+ status: 'dev' | 'prod';
4659
+ links?: ResourceLink[];
4660
+ category?: ResourceCategory;
4661
+ /** Whether this resource is archived and should be excluded from registration and deployment */
4662
+ archived?: boolean;
4663
+ };
4664
+ entryPoint: string;
4665
+ steps: Array<{
4666
+ id: string;
4667
+ name: string;
4668
+ description: string;
4669
+ inputSchema?: object;
4670
+ outputSchema?: object;
4671
+ next: {
4672
+ type: 'linear' | 'conditional';
4673
+ target?: string;
4674
+ routes?: Array<{
4675
+ target: string;
4676
+ }>;
4677
+ default?: string;
4678
+ } | null;
4679
+ }>;
4680
+ contract: {
4681
+ inputSchema: object;
4682
+ outputSchema?: object;
4683
+ };
4684
+ metricsConfig?: object;
4685
+ }
4686
+
4573
4687
  /**
4574
4688
  * Base Execution Engine type definitions
4575
4689
  * Core types shared across all Execution Engine resources
@@ -6326,54 +6440,6 @@ interface CollapsibleJsonSectionProps {
6326
6440
  }
6327
6441
  declare function CollapsibleJsonSection({ title, data, defaultExpanded }: CollapsibleJsonSectionProps): react_jsx_runtime.JSX.Element;
6328
6442
 
6329
- /**
6330
- * Shared types for ResourceDefinition components
6331
- */
6332
- /** Serialized knowledge node from API response */
6333
- interface SerializedKnowledgeNode {
6334
- id: string;
6335
- description: string;
6336
- loaded: boolean;
6337
- hasPrompt: boolean;
6338
- [key: string]: unknown;
6339
- }
6340
- /** Serialized knowledge map from API response */
6341
- interface SerializedKnowledgeMap {
6342
- nodeCount: number;
6343
- nodes: SerializedKnowledgeNode[];
6344
- }
6345
-
6346
- interface NewKnowledgeMapGraphProps {
6347
- knowledgeMap: SerializedKnowledgeMap;
6348
- agentName: string;
6349
- compact?: boolean;
6350
- fitViewTrigger?: number;
6351
- }
6352
- declare function NewKnowledgeMapGraph(props: NewKnowledgeMapGraphProps): react_jsx_runtime.JSX.Element;
6353
-
6354
- interface KnowledgeMapNodeData {
6355
- id: string;
6356
- name: string;
6357
- description: string;
6358
- loaded: boolean;
6359
- hasPrompt: boolean;
6360
- isAgentNode: boolean;
6361
- [key: string]: unknown;
6362
- }
6363
- interface KnowledgeMapEdgeData {
6364
- [key: string]: unknown;
6365
- }
6366
- declare function useNewKnowledgeMapLayout(knowledgeMap: SerializedKnowledgeMap | undefined, agentName: string): {
6367
- nodes: Node<KnowledgeMapNodeData>[];
6368
- edges: Edge<KnowledgeMapEdgeData>[];
6369
- };
6370
-
6371
- type NewKnowledgeMapNodeProps = NodeProps<Node<KnowledgeMapNodeData>>;
6372
- declare const NewKnowledgeMapNode: React$1.NamedExoticComponent<NewKnowledgeMapNodeProps>;
6373
-
6374
- type NewKnowledgeMapEdgeProps = EdgeProps<Edge<KnowledgeMapEdgeData, string>>;
6375
- declare const NewKnowledgeMapEdge: React$1.NamedExoticComponent<NewKnowledgeMapEdgeProps>;
6376
-
6377
6443
  declare const showInfoNotification: (message: string) => void;
6378
6444
  declare const showSuccessNotification: (message: string) => void;
6379
6445
  declare const showErrorNotification: (error: Error | string) => void;
@@ -6864,6 +6930,23 @@ interface MembershipStatusBadgeProps {
6864
6930
  }
6865
6931
  declare function MembershipStatusBadge({ status, size, variant }: MembershipStatusBadgeProps): react_jsx_runtime.JSX.Element;
6866
6932
 
6933
+ interface ProvisioningStateBadgeProps {
6934
+ /**
6935
+ * `undefined` means the endpoint did not report a provisioning state, which is
6936
+ * indistinguishable from the ordinary case for display purposes.
6937
+ */
6938
+ state?: MembershipProvisioningState;
6939
+ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl';
6940
+ variant?: 'light' | 'filled' | 'outline' | 'dot';
6941
+ }
6942
+ /**
6943
+ * Marks a membership that is not backed by a completed signup.
6944
+ *
6945
+ * Renders nothing for `linked` and for `undefined` — those are the ordinary case,
6946
+ * and a badge on every row would carry no information.
6947
+ */
6948
+ declare function ProvisioningStateBadge({ state, size, variant }: ProvisioningStateBadgeProps): react_jsx_runtime.JSX.Element | null;
6949
+
6867
6950
  interface OrganizationMembershipsListProps {
6868
6951
  memberships: MembershipWithDetails[];
6869
6952
  loading: boolean;
@@ -7342,5 +7425,5 @@ declare const OperationsSidebarMiddle: () => react_jsx_runtime.JSX.Element;
7342
7425
 
7343
7426
  declare const operationsManifest: SystemModule;
7344
7427
 
7345
- export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity };
7346
- export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, AgentIterationTotals, AppErrorBoundaryProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CompanyDetailPageProps, ContactDetailPageProps, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CreateRoleModalProps, CrmOverviewProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, KnowledgeMapEdgeData, KnowledgeMapNodeData, LogLevel, MdxRendererProps, NavigationButtonProps, PermissionRow, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, SerializedKnowledgeMap, SerializedKnowledgeNode, StatCardProps, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StyledMarkdownProps, TabSectionProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
7428
+ export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CONTAINER_CONSTANTS, CardHeader, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProvisioningStateBadge, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SHARED_VIZ_CONSTANTS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, StyledMarkdown, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, seoManifest, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useRecentCrmActivity };
7429
+ export type { ActivityEntry, ActivityFiltersProps, ActivityTableProps, AgentIterationTotals, AppErrorBoundaryProps, BaseEdgeProps, BaseExecutionLogsProps, BreadcrumbsProps, CompanyDetailPageProps, ContactDetailPageProps, ContextViewerProps, CostByModelTableProps, CrashErrorFallbackProps, CreateRoleModalProps, CrmOverviewProps, DealKanbanCardProps, ErrorAnalysisCardProps, ErrorReportCardProps, ExecutionBreakdownTableProps, ExecutionHealthCardProps, ExecutionLogEntry, ExecutionLogsFiltersProps, ExecutionLogsTableProps, FeatureUnavailableStateProps, FieldPath, FitViewButtonVariant, GraphFitViewHandlerProps, JsonViewerProps, KanbanBoardProps, LogLevel, MdxRendererProps, NavigationButtonProps, PermissionRow, ProjectsSidebarMiddleProps, ResourceHealthPanelProps, RichTextEditorProps, RunResourceButtonProps, RunResourceInputResolver, SavedViewPreset, ScheduleType, StatCardProps, StepConfigComponent, StepConfigFieldHint, StepConfigFormProps, StepConfigLayout, StepConfigSection, StyledMarkdownProps, TabSectionProps, TaskFilterStatus, TrendIndicatorProps, ZodFormRendererProps };
@@ -1,27 +1,27 @@
1
- export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useNewKnowledgeMapLayout, useRecentCrmActivity } from '../chunk-PGAA4G3T.js';
1
+ export { APIErrorAlert, AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationDetailPanel, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, CompanyDetailPage, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContactDetailPage, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisLoader, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipsList, PIPELINE_FUNNEL_ORDER, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProvisioningStateBadge, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, buildErrorReport, calculateProgress, crmManifest, deliveryManifest, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getStatusColor, iconMap, leadGenManifest, mdxComponents, milestoneStatusColors, monitoringManifest, noteTypeColors, operationsManifest, projectStatusColors, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, taskStatusColors, taskTypeColors, useCrmPipelineSummary, useCrmQuickMetrics, useDeleteLists, useGraphBackgroundStyles, useGraphTheme, useRecentCrmActivity } from '../chunk-ANNM5R7S.js';
2
2
  import '../chunk-4OEVLV66.js';
3
3
  import '../chunk-RBGVNPA6.js';
4
- import '../chunk-ZTWA5H77.js';
4
+ import '../chunk-6ZAP3FOA.js';
5
5
  import '../chunk-AUDNF2Q7.js';
6
6
  import '../chunk-6M6OLGQY.js';
7
7
  import '../chunk-MKH2KOAO.js';
8
8
  import '../chunk-XNW3O6QW.js';
9
- import '../chunk-T4LA4RY2.js';
9
+ import '../chunk-L7BZZ4SI.js';
10
10
  export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, seoManifest } from '../chunk-GMXGDO3I.js';
11
11
  export { CardHeader } from '../chunk-62GVNH5U.js';
12
- import '../chunk-LO7GWG24.js';
12
+ import '../chunk-P45GQ3ZW.js';
13
13
  import '../chunk-DD3CCMCZ.js';
14
14
  import '../chunk-M7WWRZ5Z.js';
15
15
  export { StyledMarkdown } from '../chunk-JFBZ6XDW.js';
16
16
  import '../chunk-2IFYDILW.js';
17
17
  import '../chunk-Q7DJKLEN.js';
18
18
  export { Graph_module_css_default as graphStyles } from '../chunk-HENXLGVD.js';
19
- export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-I3CFGE3N.js';
19
+ export { CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS } from '../chunk-BLXJEIQS.js';
20
20
  import '../chunk-RNP5R5I3.js';
21
- import '../chunk-EIXSQONC.js';
21
+ import '../chunk-RT4KRGZT.js';
22
22
  import '../chunk-I7BZVVVU.js';
23
- import '../chunk-FVOMKZ7S.js';
24
- import '../chunk-KRWALB24.js';
23
+ import '../chunk-Y6I3IC45.js';
24
+ import '../chunk-6SSQGWK7.js';
25
25
  import '../chunk-BI5VDO2K.js';
26
26
  import '../chunk-MQZE7SUI.js';
27
27
  import '../chunk-TVTSASST.js';
@@ -1,27 +1,27 @@
1
- export { useBreadcrumbs } from '../../chunk-PGAA4G3T.js';
1
+ export { useBreadcrumbs } from '../../chunk-ANNM5R7S.js';
2
2
  import '../../chunk-4OEVLV66.js';
3
3
  import '../../chunk-RBGVNPA6.js';
4
- import '../../chunk-ZTWA5H77.js';
4
+ import '../../chunk-6ZAP3FOA.js';
5
5
  import '../../chunk-AUDNF2Q7.js';
6
6
  import '../../chunk-6M6OLGQY.js';
7
7
  import '../../chunk-MKH2KOAO.js';
8
8
  import '../../chunk-XNW3O6QW.js';
9
- import '../../chunk-T4LA4RY2.js';
9
+ import '../../chunk-L7BZZ4SI.js';
10
10
  import '../../chunk-GMXGDO3I.js';
11
11
  import '../../chunk-62GVNH5U.js';
12
- import '../../chunk-LO7GWG24.js';
12
+ import '../../chunk-P45GQ3ZW.js';
13
13
  import '../../chunk-DD3CCMCZ.js';
14
14
  import '../../chunk-M7WWRZ5Z.js';
15
15
  import '../../chunk-JFBZ6XDW.js';
16
16
  import '../../chunk-2IFYDILW.js';
17
17
  import '../../chunk-Q7DJKLEN.js';
18
18
  import '../../chunk-HENXLGVD.js';
19
- import '../../chunk-I3CFGE3N.js';
19
+ import '../../chunk-BLXJEIQS.js';
20
20
  import '../../chunk-RNP5R5I3.js';
21
- import '../../chunk-EIXSQONC.js';
21
+ import '../../chunk-RT4KRGZT.js';
22
22
  import '../../chunk-I7BZVVVU.js';
23
- import '../../chunk-FVOMKZ7S.js';
24
- import '../../chunk-KRWALB24.js';
23
+ import '../../chunk-Y6I3IC45.js';
24
+ import '../../chunk-6SSQGWK7.js';
25
25
  import '../../chunk-BI5VDO2K.js';
26
26
  import '../../chunk-MQZE7SUI.js';
27
27
  import '../../chunk-TVTSASST.js';