@elevasis/ui 2.35.0 → 2.36.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 (51) hide show
  1. package/dist/app/index.d.ts +25 -18
  2. package/dist/app/index.js +2 -2
  3. package/dist/{chunk-26HFM4MH.js → chunk-F6EFC2MJ.js} +1555 -1903
  4. package/dist/{chunk-VDOOGGBA.js → chunk-K4UZU3TU.js} +2 -2
  5. package/dist/{chunk-4U3XAWCN.js → chunk-O2Q4VMRN.js} +134 -495
  6. package/dist/components/index.d.ts +7 -4
  7. package/dist/components/index.js +2 -2
  8. package/dist/components/navigation/index.js +2 -2
  9. package/dist/execution/index.d.ts +2 -2
  10. package/dist/features/auth/index.d.ts +3 -0
  11. package/dist/features/auth/index.js +2 -2
  12. package/dist/features/clients/index.js +2 -2
  13. package/dist/features/crm/index.d.ts +3 -0
  14. package/dist/features/crm/index.js +2 -2
  15. package/dist/features/dashboard/index.d.ts +3 -3
  16. package/dist/features/dashboard/index.js +2 -2
  17. package/dist/features/delivery/index.d.ts +3 -0
  18. package/dist/features/delivery/index.js +2 -2
  19. package/dist/features/knowledge/index.js +3 -3
  20. package/dist/features/lead-gen/index.d.ts +286 -48
  21. package/dist/features/lead-gen/index.js +2 -2
  22. package/dist/features/monitoring/index.js +2 -2
  23. package/dist/features/monitoring/requests/index.js +2 -2
  24. package/dist/features/operations/index.d.ts +30 -30
  25. package/dist/features/operations/index.js +2 -2
  26. package/dist/features/settings/index.d.ts +3 -0
  27. package/dist/features/settings/index.js +2 -2
  28. package/dist/hooks/delivery/index.d.ts +3 -0
  29. package/dist/hooks/delivery/index.js +2 -2
  30. package/dist/hooks/index.d.ts +29 -16
  31. package/dist/hooks/index.js +2 -2
  32. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +13 -13
  33. package/dist/hooks/published.d.ts +29 -16
  34. package/dist/hooks/published.js +2 -2
  35. package/dist/index.d.ts +51 -34
  36. package/dist/index.js +2 -2
  37. package/dist/initialization/index.d.ts +3 -0
  38. package/dist/knowledge/index.d.ts +21 -21
  39. package/dist/knowledge/index.js +6 -6
  40. package/dist/{knowledge-search-index-ORIJCEZX.js → knowledge-search-index-NBCTFIOH.js} +2 -2
  41. package/dist/organization/index.js +2 -2
  42. package/dist/profile/index.d.ts +3 -0
  43. package/dist/provider/index.d.ts +25 -18
  44. package/dist/provider/index.js +2 -2
  45. package/dist/provider/published.d.ts +25 -18
  46. package/dist/provider/published.js +2 -2
  47. package/dist/sse/index.js +26 -5
  48. package/dist/supabase/index.d.ts +6 -0
  49. package/dist/types/index.d.ts +16 -13
  50. package/dist/utils/index.d.ts +3 -3
  51. package/package.json +4 -4
package/dist/index.d.ts CHANGED
@@ -443,8 +443,8 @@ interface SerializedWorkflowDefinition {
443
443
  }
444
444
 
445
445
  declare const ResourceGovernanceStatusSchema: z$1.ZodEnum<{
446
- deprecated: "deprecated";
447
446
  active: "active";
447
+ deprecated: "deprecated";
448
448
  archived: "archived";
449
449
  }>;
450
450
  declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
@@ -455,8 +455,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
455
455
  description: z$1.ZodOptional<z$1.ZodString>;
456
456
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
457
457
  status: z$1.ZodEnum<{
458
- deprecated: "deprecated";
459
458
  active: "active";
459
+ deprecated: "deprecated";
460
460
  archived: "archived";
461
461
  }>;
462
462
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -474,12 +474,12 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
474
474
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
475
475
  path: z$1.ZodString;
476
476
  role: z$1.ZodEnum<{
477
- config: "config";
478
477
  entrypoint: "entrypoint";
479
478
  handler: "handler";
480
479
  schema: "schema";
481
480
  test: "test";
482
481
  docs: "docs";
482
+ config: "config";
483
483
  }>;
484
484
  symbol: z$1.ZodOptional<z$1.ZodString>;
485
485
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -490,10 +490,10 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
490
490
  label: z$1.ZodString;
491
491
  payloadSchema: z$1.ZodOptional<z$1.ZodString>;
492
492
  lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
493
+ active: "active";
493
494
  deprecated: "deprecated";
494
495
  draft: "draft";
495
496
  beta: "beta";
496
- active: "active";
497
497
  archived: "archived";
498
498
  }>>;
499
499
  }, z$1.core.$strip>>>;
@@ -505,8 +505,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
505
505
  description: z$1.ZodOptional<z$1.ZodString>;
506
506
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
507
507
  status: z$1.ZodEnum<{
508
- deprecated: "deprecated";
509
508
  active: "active";
509
+ deprecated: "deprecated";
510
510
  archived: "archived";
511
511
  }>;
512
512
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -524,12 +524,12 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
524
524
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
525
525
  path: z$1.ZodString;
526
526
  role: z$1.ZodEnum<{
527
- config: "config";
528
527
  entrypoint: "entrypoint";
529
528
  handler: "handler";
530
529
  schema: "schema";
531
530
  test: "test";
532
531
  docs: "docs";
532
+ config: "config";
533
533
  }>;
534
534
  symbol: z$1.ZodOptional<z$1.ZodString>;
535
535
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -571,10 +571,10 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
571
571
  label: z$1.ZodString;
572
572
  payloadSchema: z$1.ZodOptional<z$1.ZodString>;
573
573
  lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
574
+ active: "active";
574
575
  deprecated: "deprecated";
575
576
  draft: "draft";
576
577
  beta: "beta";
577
- active: "active";
578
578
  archived: "archived";
579
579
  }>>;
580
580
  }, z$1.core.$strip>>>;
@@ -586,8 +586,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
586
586
  description: z$1.ZodOptional<z$1.ZodString>;
587
587
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
588
588
  status: z$1.ZodEnum<{
589
- deprecated: "deprecated";
590
589
  active: "active";
590
+ deprecated: "deprecated";
591
591
  archived: "archived";
592
592
  }>;
593
593
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -605,12 +605,12 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
605
605
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
606
606
  path: z$1.ZodString;
607
607
  role: z$1.ZodEnum<{
608
- config: "config";
609
608
  entrypoint: "entrypoint";
610
609
  handler: "handler";
611
610
  schema: "schema";
612
611
  test: "test";
613
612
  docs: "docs";
613
+ config: "config";
614
614
  }>;
615
615
  symbol: z$1.ZodOptional<z$1.ZodString>;
616
616
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -625,8 +625,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
625
625
  description: z$1.ZodOptional<z$1.ZodString>;
626
626
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
627
627
  status: z$1.ZodEnum<{
628
- deprecated: "deprecated";
629
628
  active: "active";
629
+ deprecated: "deprecated";
630
630
  archived: "archived";
631
631
  }>;
632
632
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -644,12 +644,12 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
644
644
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
645
645
  path: z$1.ZodString;
646
646
  role: z$1.ZodEnum<{
647
- config: "config";
648
647
  entrypoint: "entrypoint";
649
648
  handler: "handler";
650
649
  schema: "schema";
651
650
  test: "test";
652
651
  docs: "docs";
652
+ config: "config";
653
653
  }>;
654
654
  symbol: z$1.ZodOptional<z$1.ZodString>;
655
655
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -3614,6 +3614,7 @@ type Database = {
3614
3614
  title: string | null;
3615
3615
  updated_at: string;
3616
3616
  user_id: string;
3617
+ visibility: string;
3617
3618
  };
3618
3619
  Insert: {
3619
3620
  content: string;
@@ -3628,6 +3629,7 @@ type Database = {
3628
3629
  title?: string | null;
3629
3630
  updated_at?: string;
3630
3631
  user_id: string;
3632
+ visibility?: string;
3631
3633
  };
3632
3634
  Update: {
3633
3635
  content?: string;
@@ -3642,6 +3644,7 @@ type Database = {
3642
3644
  title?: string | null;
3643
3645
  updated_at?: string;
3644
3646
  user_id?: string;
3647
+ visibility?: string;
3645
3648
  };
3646
3649
  Relationships: [
3647
3650
  {
@@ -4245,6 +4248,10 @@ declare const AcqListResponseSchema: z$1.ZodObject<{
4245
4248
  enabled: z$1.ZodOptional<z$1.ZodBoolean>;
4246
4249
  order: z$1.ZodOptional<z$1.ZodNumber>;
4247
4250
  }, z$1.core.$strip>>>;
4251
+ dataMode: z$1.ZodOptional<z$1.ZodEnum<{
4252
+ mock: "mock";
4253
+ live: "live";
4254
+ }>>;
4248
4255
  }, z$1.core.$strip>;
4249
4256
  }, z$1.core.$strip>;
4250
4257
  declare const ListCompaniesQuerySchema: z$1.ZodObject<{
@@ -4368,9 +4375,9 @@ declare const AcqContactResponseSchema: z$1.ZodObject<{
4368
4375
  updatedAt: z$1.ZodString;
4369
4376
  }, z$1.core.$strip>;
4370
4377
  declare const AcqArtifactOwnerKindSchema: z$1.ZodEnum<{
4371
- list: "list";
4372
4378
  company: "company";
4373
4379
  contact: "contact";
4380
+ list: "list";
4374
4381
  deal: "deal";
4375
4382
  list_member: "list_member";
4376
4383
  }>;
@@ -4976,9 +4983,9 @@ declare const SurfaceTypeSchema: z$1.ZodEnum<{
4976
4983
  dashboard: "dashboard";
4977
4984
  settings: "settings";
4978
4985
  graph: "graph";
4979
- list: "list";
4980
4986
  page: "page";
4981
4987
  detail: "detail";
4988
+ list: "list";
4982
4989
  }>;
4983
4990
  interface SidebarSurfaceNode {
4984
4991
  type: 'surface';
@@ -5010,10 +5017,10 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
5010
5017
  declare const LinkSchema: z$1.ZodObject<{
5011
5018
  nodeId: z$1.ZodString;
5012
5019
  kind: z$1.ZodEnum<{
5013
- links: "links";
5014
5020
  affects: "affects";
5015
- effects: "effects";
5016
5021
  actions: "actions";
5022
+ effects: "effects";
5023
+ links: "links";
5017
5024
  reads: "reads";
5018
5025
  writes: "writes";
5019
5026
  emits: "emits";
@@ -5435,8 +5442,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5435
5442
  description: z$1.ZodOptional<z$1.ZodString>;
5436
5443
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
5437
5444
  status: z$1.ZodEnum<{
5438
- deprecated: "deprecated";
5439
5445
  active: "active";
5446
+ deprecated: "deprecated";
5440
5447
  archived: "archived";
5441
5448
  }>;
5442
5449
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -5454,12 +5461,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5454
5461
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
5455
5462
  path: z$1.ZodString;
5456
5463
  role: z$1.ZodEnum<{
5457
- config: "config";
5458
5464
  entrypoint: "entrypoint";
5459
5465
  handler: "handler";
5460
5466
  schema: "schema";
5461
5467
  test: "test";
5462
5468
  docs: "docs";
5469
+ config: "config";
5463
5470
  }>;
5464
5471
  symbol: z$1.ZodOptional<z$1.ZodString>;
5465
5472
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -5470,10 +5477,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5470
5477
  label: z$1.ZodString;
5471
5478
  payloadSchema: z$1.ZodOptional<z$1.ZodString>;
5472
5479
  lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
5480
+ active: "active";
5473
5481
  deprecated: "deprecated";
5474
5482
  draft: "draft";
5475
5483
  beta: "beta";
5476
- active: "active";
5477
5484
  archived: "archived";
5478
5485
  }>>;
5479
5486
  }, z$1.core.$strip>>>;
@@ -5485,8 +5492,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5485
5492
  description: z$1.ZodOptional<z$1.ZodString>;
5486
5493
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
5487
5494
  status: z$1.ZodEnum<{
5488
- deprecated: "deprecated";
5489
5495
  active: "active";
5496
+ deprecated: "deprecated";
5490
5497
  archived: "archived";
5491
5498
  }>;
5492
5499
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -5504,12 +5511,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5504
5511
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
5505
5512
  path: z$1.ZodString;
5506
5513
  role: z$1.ZodEnum<{
5507
- config: "config";
5508
5514
  entrypoint: "entrypoint";
5509
5515
  handler: "handler";
5510
5516
  schema: "schema";
5511
5517
  test: "test";
5512
5518
  docs: "docs";
5519
+ config: "config";
5513
5520
  }>;
5514
5521
  symbol: z$1.ZodOptional<z$1.ZodString>;
5515
5522
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -5551,10 +5558,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5551
5558
  label: z$1.ZodString;
5552
5559
  payloadSchema: z$1.ZodOptional<z$1.ZodString>;
5553
5560
  lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
5561
+ active: "active";
5554
5562
  deprecated: "deprecated";
5555
5563
  draft: "draft";
5556
5564
  beta: "beta";
5557
- active: "active";
5558
5565
  archived: "archived";
5559
5566
  }>>;
5560
5567
  }, z$1.core.$strip>>>;
@@ -5566,8 +5573,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5566
5573
  description: z$1.ZodOptional<z$1.ZodString>;
5567
5574
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
5568
5575
  status: z$1.ZodEnum<{
5569
- deprecated: "deprecated";
5570
5576
  active: "active";
5577
+ deprecated: "deprecated";
5571
5578
  archived: "archived";
5572
5579
  }>;
5573
5580
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -5585,12 +5592,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5585
5592
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
5586
5593
  path: z$1.ZodString;
5587
5594
  role: z$1.ZodEnum<{
5588
- config: "config";
5589
5595
  entrypoint: "entrypoint";
5590
5596
  handler: "handler";
5591
5597
  schema: "schema";
5592
5598
  test: "test";
5593
5599
  docs: "docs";
5600
+ config: "config";
5594
5601
  }>;
5595
5602
  symbol: z$1.ZodOptional<z$1.ZodString>;
5596
5603
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -5605,8 +5612,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5605
5612
  description: z$1.ZodOptional<z$1.ZodString>;
5606
5613
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
5607
5614
  status: z$1.ZodEnum<{
5608
- deprecated: "deprecated";
5609
5615
  active: "active";
5616
+ deprecated: "deprecated";
5610
5617
  archived: "archived";
5611
5618
  }>;
5612
5619
  ontology: z$1.ZodOptional<z$1.ZodObject<{
@@ -5624,12 +5631,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5624
5631
  codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
5625
5632
  path: z$1.ZodString;
5626
5633
  role: z$1.ZodEnum<{
5627
- config: "config";
5628
5634
  entrypoint: "entrypoint";
5629
5635
  handler: "handler";
5630
5636
  schema: "schema";
5631
5637
  test: "test";
5632
5638
  docs: "docs";
5639
+ config: "config";
5633
5640
  }>;
5634
5641
  symbol: z$1.ZodOptional<z$1.ZodString>;
5635
5642
  description: z$1.ZodOptional<z$1.ZodString>;
@@ -5743,10 +5750,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5743
5750
  }, z$1.core.$strip>], "kind">>>;
5744
5751
  knowledge: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
5745
5752
  lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
5753
+ active: "active";
5746
5754
  deprecated: "deprecated";
5747
5755
  draft: "draft";
5748
5756
  beta: "beta";
5749
- active: "active";
5750
5757
  archived: "archived";
5751
5758
  }>>;
5752
5759
  }, z$1.core.$strip>>>>;
@@ -5824,10 +5831,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5824
5831
  roleIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
5825
5832
  }, z$1.core.$strip>>;
5826
5833
  lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
5834
+ active: "active";
5827
5835
  deprecated: "deprecated";
5828
5836
  draft: "draft";
5829
5837
  beta: "beta";
5830
- active: "active";
5831
5838
  archived: "archived";
5832
5839
  }>>;
5833
5840
  }, z$1.core.$strip>>>>;
@@ -5910,12 +5917,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5910
5917
  kind: z$1.ZodEnum<{
5911
5918
  knowledge: "knowledge";
5912
5919
  system: "system";
5920
+ resource: "resource";
5913
5921
  action: "action";
5914
5922
  ontology: "ontology";
5915
5923
  role: "role";
5916
- goal: "goal";
5917
- resource: "resource";
5918
5924
  stage: "stage";
5925
+ goal: "goal";
5919
5926
  "customer-segment": "customer-segment";
5920
5927
  offering: "offering";
5921
5928
  }>;
@@ -5925,7 +5932,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5925
5932
  nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
5926
5933
  }, z$1.core.$strip>]>, z$1.ZodTransform<{
5927
5934
  target: {
5928
- kind: "knowledge" | "system" | "action" | "ontology" | "role" | "goal" | "resource" | "stage" | "customer-segment" | "offering";
5935
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
5929
5936
  id: string;
5930
5937
  };
5931
5938
  nodeId: string;
@@ -5933,7 +5940,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5933
5940
  nodeId: string;
5934
5941
  } | {
5935
5942
  target: {
5936
- kind: "knowledge" | "system" | "action" | "ontology" | "role" | "goal" | "resource" | "stage" | "customer-segment" | "offering";
5943
+ kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
5937
5944
  id: string;
5938
5945
  };
5939
5946
  }>>>>;
@@ -7319,7 +7326,7 @@ type FieldPath<T> = T extends object ? {
7319
7326
  [K in keyof T & string]: T[K] extends ReadonlyArray<unknown> | unknown[] ? K : T[K] extends object | undefined ? K | `${K}.${FieldPath<NonNullable<T[K]>>}` : K;
7320
7327
  }[keyof T & string] : never;
7321
7328
  /** Discriminated string union of supported Mantine components. */
7322
- type StepConfigComponent = 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
7329
+ type StepConfigComponent = 'checkboxgroup' | 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
7323
7330
  /** Rendering hint for a single field within a section. */
7324
7331
  interface StepConfigFieldHint<T> {
7325
7332
  /** Typed dotted path into T — typo = TS error. */
@@ -8249,6 +8256,7 @@ interface UseInFlightExecutionsOptions {
8249
8256
  refetchInterval?: number | false;
8250
8257
  limit?: number;
8251
8258
  offset?: number;
8259
+ listId?: string;
8252
8260
  }
8253
8261
  declare function useInFlightExecutions(resourceId: string, options?: UseInFlightExecutionsOptions): _tanstack_react_query.UseQueryResult<APIExecutionListResponse, Error>;
8254
8262
 
@@ -8265,6 +8273,7 @@ interface ExecuteAsyncParams {
8265
8273
  resourceId: string;
8266
8274
  resourceType: ResourceType;
8267
8275
  input: unknown;
8276
+ listId?: string;
8268
8277
  }
8269
8278
  interface ExecuteAsyncResult {
8270
8279
  executionId: string;
@@ -10594,6 +10603,7 @@ declare const acquisitionListKeys: {
10594
10603
  detail: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", string | null, string];
10595
10604
  telemetry: (organizationId: string | null) => readonly ["acquisition-lists", "telemetry", string | null];
10596
10605
  progress: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "progress", string | null, string];
10606
+ executionsBase: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "executions", string | null, string];
10597
10607
  records: (organizationId: string | null, listId: string, filters: ListRecordsFilters) => readonly ["acquisition-lists", "records", string | null, string, "company" | "contact", string | null, number | null, number | null];
10598
10608
  executions: (organizationId: string | null, listId: string, filters?: ListExecutionsFilters) => readonly ["acquisition-lists", "executions", string | null, string, string | null, number | null];
10599
10609
  };
@@ -10694,6 +10704,7 @@ declare function useLists(): _tanstack_react_query.UseQueryResult<{
10694
10704
  enabled?: boolean | undefined;
10695
10705
  order?: number | undefined;
10696
10706
  }[] | undefined;
10707
+ dataMode?: "mock" | "live" | undefined;
10697
10708
  };
10698
10709
  }[], Error>;
10699
10710
  declare function useList(listId: string): _tanstack_react_query.UseQueryResult<{
@@ -10779,6 +10790,7 @@ declare function useList(listId: string): _tanstack_react_query.UseQueryResult<{
10779
10790
  enabled?: boolean | undefined;
10780
10791
  order?: number | undefined;
10781
10792
  }[] | undefined;
10793
+ dataMode?: "mock" | "live" | undefined;
10782
10794
  };
10783
10795
  }, Error>;
10784
10796
  declare function useListsTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
@@ -10963,6 +10975,7 @@ declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
10963
10975
  enabled?: boolean | undefined;
10964
10976
  order?: number | undefined;
10965
10977
  }[] | undefined;
10978
+ dataMode?: "mock" | "live" | undefined;
10966
10979
  };
10967
10980
  }, Error, {
10968
10981
  name: string;
@@ -10990,6 +11003,7 @@ declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
10990
11003
  enabled?: boolean | undefined;
10991
11004
  order?: number | undefined;
10992
11005
  }[] | undefined;
11006
+ dataMode?: "mock" | "live" | undefined;
10993
11007
  } | undefined;
10994
11008
  }, unknown>;
10995
11009
  declare function useUpdateList(listId: string): _tanstack_react_query.UseMutationResult<{
@@ -11075,6 +11089,7 @@ declare function useUpdateList(listId: string): _tanstack_react_query.UseMutatio
11075
11089
  enabled?: boolean | undefined;
11076
11090
  order?: number | undefined;
11077
11091
  }[] | undefined;
11092
+ dataMode?: "mock" | "live" | undefined;
11078
11093
  };
11079
11094
  }, Error, {
11080
11095
  name?: string | undefined;
@@ -11166,6 +11181,7 @@ declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseM
11166
11181
  enabled?: boolean | undefined;
11167
11182
  order?: number | undefined;
11168
11183
  }[] | undefined;
11184
+ dataMode?: "mock" | "live" | undefined;
11169
11185
  };
11170
11186
  }, Error, {
11171
11187
  scrapingConfig?: {
@@ -11189,6 +11205,7 @@ declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseM
11189
11205
  enabled?: boolean | undefined;
11190
11206
  order?: number | undefined;
11191
11207
  }[] | undefined;
11208
+ dataMode?: "mock" | "live" | undefined;
11192
11209
  } | undefined;
11193
11210
  }, unknown>;
11194
11211
  declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
@@ -11622,7 +11639,7 @@ declare function useDeleteContacts(): _tanstack_react_query.UseMutationResult<vo
11622
11639
 
11623
11640
  declare const leadGenArtifactKeys: {
11624
11641
  all: readonly ["lead-gen-artifacts"];
11625
- list: (organizationId: string | null, ownerKind: AcqArtifactOwnerKind, ownerId: string) => readonly ["lead-gen-artifacts", string | null, "list" | "company" | "contact" | "deal" | "list_member", string];
11642
+ list: (organizationId: string | null, ownerKind: AcqArtifactOwnerKind, ownerId: string) => readonly ["lead-gen-artifacts", string | null, "company" | "contact" | "list" | "deal" | "list_member", string];
11626
11643
  };
11627
11644
  interface UseArtifactsParams {
11628
11645
  ownerKind: AcqArtifactOwnerKind;
@@ -11654,7 +11671,7 @@ declare function useCreateArtifact(): _tanstack_react_query.UseMutationResult<{
11654
11671
  createdAt: string;
11655
11672
  version: number;
11656
11673
  }, Error, {
11657
- ownerKind: "list" | "company" | "contact" | "deal" | "list_member";
11674
+ ownerKind: "company" | "contact" | "list" | "deal" | "list_member";
11658
11675
  ownerId: string;
11659
11676
  kind: string;
11660
11677
  content: Record<string, unknown>;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export { createElevasisQueryClient } from './chunk-YYX7OPZQ.js';
2
- export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, Can, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListActionsProvider, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, SystemShell, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createFeatureAccessHook, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, taskKeys, taskStatusColors, taskTypeColors, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useHasPermission, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-26HFM4MH.js';
2
+ export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, Can, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListActionsProvider, LogEntry, LogGroup, MdxRenderer, MembershipFeaturePanel, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, SystemShell, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createFeatureAccessHook, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, taskKeys, taskStatusColors, taskTypeColors, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useHasPermission, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-F6EFC2MJ.js';
3
3
  import './chunk-CXY7FMUM.js';
4
4
  export { APIErrorAlert, ActivityTimeline, ActivityTrendChart, CardHeader, CenteredErrorState, ChartFrame, CollapsibleSection, CombinedTrendChart, ContextViewer, CostTrendChart, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, DetailCardSkeleton, ElevasisLoader, EmptyState, FeatureUnavailableState, GlowDot, HeroStatsRow, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator, getSeriesColor, observabilityKeys, useCyberColors, useErrorTrends } from './chunk-SIQ3P4OR.js';
5
5
  export { StyledMarkdown } from './chunk-3KMDHCAR.js';
@@ -9,7 +9,7 @@ import './chunk-ZTWA5H77.js';
9
9
  export { TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, brochureStyles, brochureTheme, createCustomValue, createPresetValue, createSurveyConfig, defaultTheme, extractAnswerValue, extractMultiAnswerValues, getAnswerString, getCustomValueText, getMultiAnswerStrings, hasCustomValue, hasPresetValue, isCustomValue, isPresetValue, mergeTheme, useCardStyle, useTypeform, useTypeformContext } from './chunk-AUDNF2Q7.js';
10
10
  export { answerValueSchema, checkboxWithOtherSchema, multiAnswerValueSchema, radioWithOtherSchema } from './chunk-6M6OLGQY.js';
11
11
  import './chunk-BRXELOHC.js';
12
- export { DEFAULT_SEMANTIC_ICON_REGISTRY, SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from './chunk-4U3XAWCN.js';
12
+ export { DEFAULT_SEMANTIC_ICON_REGISTRY, SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from './chunk-O2Q4VMRN.js';
13
13
  export { AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, CollapsibleSidebarGroup, CyberParticles, LinksGroup, PageContainer, Sidebar, SidebarContext, SidebarProvider, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, Topbar, TopbarContainer, Vignette, subsidebarWidth, useAppearance, useSidebar, useSidebarCollapse } from './chunk-LUYVRATI.js';
14
14
  export { NavigationButton } from './chunk-NYBEU5TE.js';
15
15
  export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from './chunk-WLOQ4IBG.js';
@@ -2783,6 +2783,7 @@ type Database = {
2783
2783
  title: string | null;
2784
2784
  updated_at: string;
2785
2785
  user_id: string;
2786
+ visibility: string;
2786
2787
  };
2787
2788
  Insert: {
2788
2789
  content: string;
@@ -2797,6 +2798,7 @@ type Database = {
2797
2798
  title?: string | null;
2798
2799
  updated_at?: string;
2799
2800
  user_id: string;
2801
+ visibility?: string;
2800
2802
  };
2801
2803
  Update: {
2802
2804
  content?: string;
@@ -2811,6 +2813,7 @@ type Database = {
2811
2813
  title?: string | null;
2812
2814
  updated_at?: string;
2813
2815
  user_id?: string;
2816
+ visibility?: string;
2814
2817
  };
2815
2818
  Relationships: [
2816
2819
  {