@elevasis/ui 1.24.3 → 1.25.1

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 (42) hide show
  1. package/dist/charts/index.js +2 -2
  2. package/dist/{chunk-H3MU3WTM.js → chunk-7JJCGPYD.js} +2 -2
  3. package/dist/{chunk-TQBM3OEW.js → chunk-BS4J2LAW.js} +1 -1
  4. package/dist/{chunk-JR2C4XAN.js → chunk-CYXZHBP4.js} +202 -295
  5. package/dist/{chunk-ZDKC3V7C.js → chunk-EFPFPCP2.js} +57 -58
  6. package/dist/{chunk-OH74INP2.js → chunk-FEZZ3IDU.js} +434 -314
  7. package/dist/{chunk-JTUX5FDC.js → chunk-FURGQSSG.js} +374 -2
  8. package/dist/{chunk-IAZT3VO6.js → chunk-G25YWGUL.js} +4 -1
  9. package/dist/{chunk-QDO6NF2I.js → chunk-GQCQDCLJ.js} +380 -63
  10. package/dist/{chunk-CTF6FS2M.js → chunk-L3GVDMCA.js} +211 -1
  11. package/dist/{chunk-BGTZFEKR.js → chunk-LHNPRLSA.js} +6 -252
  12. package/dist/{chunk-VMMNFRAO.js → chunk-QNABH7YG.js} +3 -3
  13. package/dist/{chunk-WY5IJI37.js → chunk-QUL3XRLS.js} +3 -3
  14. package/dist/{chunk-TML32XBW.js → chunk-RMPXGBNI.js} +2 -2
  15. package/dist/{chunk-UG5565XQ.js → chunk-US4JUSI3.js} +3 -3
  16. package/dist/components/index.d.ts +3005 -192
  17. package/dist/components/index.js +1541 -26
  18. package/dist/features/auth/index.d.ts +108 -9
  19. package/dist/features/dashboard/index.js +8 -8
  20. package/dist/features/monitoring/index.js +9 -9
  21. package/dist/features/operations/index.d.ts +8 -2
  22. package/dist/features/operations/index.js +53 -56
  23. package/dist/features/settings/index.d.ts +108 -9
  24. package/dist/features/settings/index.js +28 -11
  25. package/dist/hooks/index.d.ts +3279 -185
  26. package/dist/hooks/index.js +5 -5
  27. package/dist/hooks/published.d.ts +345 -11
  28. package/dist/hooks/published.js +4 -4
  29. package/dist/index.d.ts +3285 -187
  30. package/dist/index.js +6 -6
  31. package/dist/initialization/index.d.ts +108 -9
  32. package/dist/layout/index.d.ts +60 -3
  33. package/dist/layout/index.js +2 -2
  34. package/dist/profile/index.d.ts +108 -9
  35. package/dist/provider/index.d.ts +6 -2
  36. package/dist/provider/index.js +3 -3
  37. package/dist/provider/published.d.ts +6 -2
  38. package/dist/supabase/index.d.ts +210 -18
  39. package/dist/theme/index.d.ts +6 -2
  40. package/dist/theme/index.js +3 -3
  41. package/dist/types/index.d.ts +143 -10
  42. package/package.json +1 -1
@@ -11,7 +11,6 @@ type Database = {
11
11
  Tables: {
12
12
  acq_companies: {
13
13
  Row: {
14
- attio_company_id: string | null;
15
14
  batch_id: string | null;
16
15
  category: string | null;
17
16
  category_pain: string | null;
@@ -35,7 +34,6 @@ type Database = {
35
34
  website: string | null;
36
35
  };
37
36
  Insert: {
38
- attio_company_id?: string | null;
39
37
  batch_id?: string | null;
40
38
  category?: string | null;
41
39
  category_pain?: string | null;
@@ -59,7 +57,6 @@ type Database = {
59
57
  website?: string | null;
60
58
  };
61
59
  Update: {
62
- attio_company_id?: string | null;
63
60
  batch_id?: string | null;
64
61
  category?: string | null;
65
62
  category_pain?: string | null;
@@ -94,7 +91,6 @@ type Database = {
94
91
  };
95
92
  acq_contacts: {
96
93
  Row: {
97
- attio_person_id: string | null;
98
94
  batch_id: string | null;
99
95
  brochure_first_viewed_at: string | null;
100
96
  brochure_view_count: number;
@@ -120,7 +116,6 @@ type Database = {
120
116
  updated_at: string;
121
117
  };
122
118
  Insert: {
123
- attio_person_id?: string | null;
124
119
  batch_id?: string | null;
125
120
  brochure_first_viewed_at?: string | null;
126
121
  brochure_view_count?: number;
@@ -146,7 +141,6 @@ type Database = {
146
141
  updated_at?: string;
147
142
  };
148
143
  Update: {
149
- attio_person_id?: string | null;
150
144
  batch_id?: string | null;
151
145
  brochure_first_viewed_at?: string | null;
152
146
  brochure_view_count?: number;
@@ -304,10 +298,117 @@ type Database = {
304
298
  }
305
299
  ];
306
300
  };
301
+ acq_deal_notes: {
302
+ Row: {
303
+ author_user_id: string | null;
304
+ body: string;
305
+ created_at: string;
306
+ deal_id: string;
307
+ id: string;
308
+ organization_id: string;
309
+ updated_at: string;
310
+ };
311
+ Insert: {
312
+ author_user_id?: string | null;
313
+ body: string;
314
+ created_at?: string;
315
+ deal_id: string;
316
+ id?: string;
317
+ organization_id: string;
318
+ updated_at?: string;
319
+ };
320
+ Update: {
321
+ author_user_id?: string | null;
322
+ body?: string;
323
+ created_at?: string;
324
+ deal_id?: string;
325
+ id?: string;
326
+ organization_id?: string;
327
+ updated_at?: string;
328
+ };
329
+ Relationships: [
330
+ {
331
+ foreignKeyName: "acq_deal_notes_deal_id_fkey";
332
+ columns: ["deal_id"];
333
+ isOneToOne: false;
334
+ referencedRelation: "acq_deals";
335
+ referencedColumns: ["id"];
336
+ },
337
+ {
338
+ foreignKeyName: "acq_deal_notes_organization_id_fkey";
339
+ columns: ["organization_id"];
340
+ isOneToOne: false;
341
+ referencedRelation: "organizations";
342
+ referencedColumns: ["id"];
343
+ }
344
+ ];
345
+ };
346
+ acq_deal_tasks: {
347
+ Row: {
348
+ assignee_user_id: string | null;
349
+ completed_at: string | null;
350
+ completed_by_user_id: string | null;
351
+ created_at: string;
352
+ created_by_user_id: string | null;
353
+ deal_id: string;
354
+ description: string | null;
355
+ due_at: string | null;
356
+ id: string;
357
+ kind: string;
358
+ organization_id: string;
359
+ title: string;
360
+ updated_at: string;
361
+ };
362
+ Insert: {
363
+ assignee_user_id?: string | null;
364
+ completed_at?: string | null;
365
+ completed_by_user_id?: string | null;
366
+ created_at?: string;
367
+ created_by_user_id?: string | null;
368
+ deal_id: string;
369
+ description?: string | null;
370
+ due_at?: string | null;
371
+ id?: string;
372
+ kind?: string;
373
+ organization_id: string;
374
+ title: string;
375
+ updated_at?: string;
376
+ };
377
+ Update: {
378
+ assignee_user_id?: string | null;
379
+ completed_at?: string | null;
380
+ completed_by_user_id?: string | null;
381
+ created_at?: string;
382
+ created_by_user_id?: string | null;
383
+ deal_id?: string;
384
+ description?: string | null;
385
+ due_at?: string | null;
386
+ id?: string;
387
+ kind?: string;
388
+ organization_id?: string;
389
+ title?: string;
390
+ updated_at?: string;
391
+ };
392
+ Relationships: [
393
+ {
394
+ foreignKeyName: "acq_deal_tasks_deal_id_fkey";
395
+ columns: ["deal_id"];
396
+ isOneToOne: false;
397
+ referencedRelation: "acq_deals";
398
+ referencedColumns: ["id"];
399
+ },
400
+ {
401
+ foreignKeyName: "acq_deal_tasks_organization_id_fkey";
402
+ columns: ["organization_id"];
403
+ isOneToOne: false;
404
+ referencedRelation: "organizations";
405
+ referencedColumns: ["id"];
406
+ }
407
+ ];
408
+ };
307
409
  acq_deals: {
308
410
  Row: {
309
411
  activity_log: Json;
310
- attio_deal_id: string;
311
412
  cached_stage: string | null;
312
413
  closed_lost_at: string | null;
313
414
  closed_lost_reason: string | null;
@@ -342,7 +443,6 @@ type Database = {
342
443
  };
343
444
  Insert: {
344
445
  activity_log?: Json;
345
- attio_deal_id: string;
346
446
  cached_stage?: string | null;
347
447
  closed_lost_at?: string | null;
348
448
  closed_lost_reason?: string | null;
@@ -377,7 +477,6 @@ type Database = {
377
477
  };
378
478
  Update: {
379
479
  activity_log?: Json;
380
- attio_deal_id?: string;
381
480
  cached_stage?: string | null;
382
481
  closed_lost_at?: string | null;
383
482
  closed_lost_reason?: string | null;
@@ -2373,7 +2472,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2373
2472
  Tables: {
2374
2473
  acq_companies: {
2375
2474
  Row: {
2376
- attio_company_id: string | null;
2377
2475
  batch_id: string | null;
2378
2476
  category: string | null;
2379
2477
  category_pain: string | null;
@@ -2397,7 +2495,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2397
2495
  website: string | null;
2398
2496
  };
2399
2497
  Insert: {
2400
- attio_company_id?: string | null;
2401
2498
  batch_id?: string | null;
2402
2499
  category?: string | null;
2403
2500
  category_pain?: string | null;
@@ -2421,7 +2518,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2421
2518
  website?: string | null;
2422
2519
  };
2423
2520
  Update: {
2424
- attio_company_id?: string | null;
2425
2521
  batch_id?: string | null;
2426
2522
  category?: string | null;
2427
2523
  category_pain?: string | null;
@@ -2454,7 +2550,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2454
2550
  };
2455
2551
  acq_contacts: {
2456
2552
  Row: {
2457
- attio_person_id: string | null;
2458
2553
  batch_id: string | null;
2459
2554
  brochure_first_viewed_at: string | null;
2460
2555
  brochure_view_count: number;
@@ -2480,7 +2575,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2480
2575
  updated_at: string;
2481
2576
  };
2482
2577
  Insert: {
2483
- attio_person_id?: string | null;
2484
2578
  batch_id?: string | null;
2485
2579
  brochure_first_viewed_at?: string | null;
2486
2580
  brochure_view_count?: number;
@@ -2506,7 +2600,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2506
2600
  updated_at?: string;
2507
2601
  };
2508
2602
  Update: {
2509
- attio_person_id?: string | null;
2510
2603
  batch_id?: string | null;
2511
2604
  brochure_first_viewed_at?: string | null;
2512
2605
  brochure_view_count?: number;
@@ -2656,10 +2749,111 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2656
2749
  referencedColumns: ["id"];
2657
2750
  }];
2658
2751
  };
2752
+ acq_deal_notes: {
2753
+ Row: {
2754
+ author_user_id: string | null;
2755
+ body: string;
2756
+ created_at: string;
2757
+ deal_id: string;
2758
+ id: string;
2759
+ organization_id: string;
2760
+ updated_at: string;
2761
+ };
2762
+ Insert: {
2763
+ author_user_id?: string | null;
2764
+ body: string;
2765
+ created_at?: string;
2766
+ deal_id: string;
2767
+ id?: string;
2768
+ organization_id: string;
2769
+ updated_at?: string;
2770
+ };
2771
+ Update: {
2772
+ author_user_id?: string | null;
2773
+ body?: string;
2774
+ created_at?: string;
2775
+ deal_id?: string;
2776
+ id?: string;
2777
+ organization_id?: string;
2778
+ updated_at?: string;
2779
+ };
2780
+ Relationships: [{
2781
+ foreignKeyName: "acq_deal_notes_deal_id_fkey";
2782
+ columns: ["deal_id"];
2783
+ isOneToOne: false;
2784
+ referencedRelation: "acq_deals";
2785
+ referencedColumns: ["id"];
2786
+ }, {
2787
+ foreignKeyName: "acq_deal_notes_organization_id_fkey";
2788
+ columns: ["organization_id"];
2789
+ isOneToOne: false;
2790
+ referencedRelation: "organizations";
2791
+ referencedColumns: ["id"];
2792
+ }];
2793
+ };
2794
+ acq_deal_tasks: {
2795
+ Row: {
2796
+ assignee_user_id: string | null;
2797
+ completed_at: string | null;
2798
+ completed_by_user_id: string | null;
2799
+ created_at: string;
2800
+ created_by_user_id: string | null;
2801
+ deal_id: string;
2802
+ description: string | null;
2803
+ due_at: string | null;
2804
+ id: string;
2805
+ kind: string;
2806
+ organization_id: string;
2807
+ title: string;
2808
+ updated_at: string;
2809
+ };
2810
+ Insert: {
2811
+ assignee_user_id?: string | null;
2812
+ completed_at?: string | null;
2813
+ completed_by_user_id?: string | null;
2814
+ created_at?: string;
2815
+ created_by_user_id?: string | null;
2816
+ deal_id: string;
2817
+ description?: string | null;
2818
+ due_at?: string | null;
2819
+ id?: string;
2820
+ kind?: string;
2821
+ organization_id: string;
2822
+ title: string;
2823
+ updated_at?: string;
2824
+ };
2825
+ Update: {
2826
+ assignee_user_id?: string | null;
2827
+ completed_at?: string | null;
2828
+ completed_by_user_id?: string | null;
2829
+ created_at?: string;
2830
+ created_by_user_id?: string | null;
2831
+ deal_id?: string;
2832
+ description?: string | null;
2833
+ due_at?: string | null;
2834
+ id?: string;
2835
+ kind?: string;
2836
+ organization_id?: string;
2837
+ title?: string;
2838
+ updated_at?: string;
2839
+ };
2840
+ Relationships: [{
2841
+ foreignKeyName: "acq_deal_tasks_deal_id_fkey";
2842
+ columns: ["deal_id"];
2843
+ isOneToOne: false;
2844
+ referencedRelation: "acq_deals";
2845
+ referencedColumns: ["id"];
2846
+ }, {
2847
+ foreignKeyName: "acq_deal_tasks_organization_id_fkey";
2848
+ columns: ["organization_id"];
2849
+ isOneToOne: false;
2850
+ referencedRelation: "organizations";
2851
+ referencedColumns: ["id"];
2852
+ }];
2853
+ };
2659
2854
  acq_deals: {
2660
2855
  Row: {
2661
2856
  activity_log: Json;
2662
- attio_deal_id: string;
2663
2857
  cached_stage: string | null;
2664
2858
  closed_lost_at: string | null;
2665
2859
  closed_lost_reason: string | null;
@@ -2694,7 +2888,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2694
2888
  };
2695
2889
  Insert: {
2696
2890
  activity_log?: Json;
2697
- attio_deal_id: string;
2698
2891
  cached_stage?: string | null;
2699
2892
  closed_lost_at?: string | null;
2700
2893
  closed_lost_reason?: string | null;
@@ -2729,7 +2922,6 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2729
2922
  };
2730
2923
  Update: {
2731
2924
  activity_log?: Json;
2732
- attio_deal_id?: string;
2733
2925
  cached_stage?: string | null;
2734
2926
  closed_lost_at?: string | null;
2735
2927
  closed_lost_reason?: string | null;
@@ -18,6 +18,8 @@ interface ElevasisTokenOverrides {
18
18
  background?: string;
19
19
  surface?: string;
20
20
  surfaceHover?: string;
21
+ /** Opaque surface for floating overlays (modals, menus, popovers) — guarantees readable contrast against decorative backgrounds. */
22
+ elevatedSurface?: string;
21
23
  text?: string;
22
24
  textDimmed?: string;
23
25
  textSubtle?: string;
@@ -67,9 +69,11 @@ interface FrameworkThemeOverrides {
67
69
  };
68
70
  components?: Record<string, unknown>;
69
71
  }
72
+ /** Tokens every preset must define. `elevatedSurface` is progressively adopted and stays optional. */
73
+ type PresetTokens = Required<Omit<ElevasisTokenOverrides, 'elevatedSurface'>> & Pick<ElevasisTokenOverrides, 'elevatedSurface'>;
70
74
  interface ThemePreset {
71
- light: Required<ElevasisTokenOverrides>;
72
- dark: Required<ElevasisTokenOverrides>;
75
+ light: PresetTokens;
76
+ dark: PresetTokens;
73
77
  /** Optional framework theme overrides bundled with this preset (fonts, radius, etc.). */
74
78
  framework?: FrameworkThemeOverrides;
75
79
  /**
@@ -1,3 +1,3 @@
1
- export { useAvailablePresets } from '../chunk-TQBM3OEW.js';
2
- export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-OH74INP2.js';
3
- import '../chunk-JR2C4XAN.js';
1
+ export { useAvailablePresets } from '../chunk-BS4J2LAW.js';
2
+ export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-FEZZ3IDU.js';
3
+ import '../chunk-CYXZHBP4.js';
@@ -453,7 +453,6 @@ type Database = {
453
453
  Tables: {
454
454
  acq_companies: {
455
455
  Row: {
456
- attio_company_id: string | null;
457
456
  batch_id: string | null;
458
457
  category: string | null;
459
458
  category_pain: string | null;
@@ -477,7 +476,6 @@ type Database = {
477
476
  website: string | null;
478
477
  };
479
478
  Insert: {
480
- attio_company_id?: string | null;
481
479
  batch_id?: string | null;
482
480
  category?: string | null;
483
481
  category_pain?: string | null;
@@ -501,7 +499,6 @@ type Database = {
501
499
  website?: string | null;
502
500
  };
503
501
  Update: {
504
- attio_company_id?: string | null;
505
502
  batch_id?: string | null;
506
503
  category?: string | null;
507
504
  category_pain?: string | null;
@@ -536,7 +533,6 @@ type Database = {
536
533
  };
537
534
  acq_contacts: {
538
535
  Row: {
539
- attio_person_id: string | null;
540
536
  batch_id: string | null;
541
537
  brochure_first_viewed_at: string | null;
542
538
  brochure_view_count: number;
@@ -562,7 +558,6 @@ type Database = {
562
558
  updated_at: string;
563
559
  };
564
560
  Insert: {
565
- attio_person_id?: string | null;
566
561
  batch_id?: string | null;
567
562
  brochure_first_viewed_at?: string | null;
568
563
  brochure_view_count?: number;
@@ -588,7 +583,6 @@ type Database = {
588
583
  updated_at?: string;
589
584
  };
590
585
  Update: {
591
- attio_person_id?: string | null;
592
586
  batch_id?: string | null;
593
587
  brochure_first_viewed_at?: string | null;
594
588
  brochure_view_count?: number;
@@ -746,10 +740,117 @@ type Database = {
746
740
  }
747
741
  ];
748
742
  };
743
+ acq_deal_notes: {
744
+ Row: {
745
+ author_user_id: string | null;
746
+ body: string;
747
+ created_at: string;
748
+ deal_id: string;
749
+ id: string;
750
+ organization_id: string;
751
+ updated_at: string;
752
+ };
753
+ Insert: {
754
+ author_user_id?: string | null;
755
+ body: string;
756
+ created_at?: string;
757
+ deal_id: string;
758
+ id?: string;
759
+ organization_id: string;
760
+ updated_at?: string;
761
+ };
762
+ Update: {
763
+ author_user_id?: string | null;
764
+ body?: string;
765
+ created_at?: string;
766
+ deal_id?: string;
767
+ id?: string;
768
+ organization_id?: string;
769
+ updated_at?: string;
770
+ };
771
+ Relationships: [
772
+ {
773
+ foreignKeyName: "acq_deal_notes_deal_id_fkey";
774
+ columns: ["deal_id"];
775
+ isOneToOne: false;
776
+ referencedRelation: "acq_deals";
777
+ referencedColumns: ["id"];
778
+ },
779
+ {
780
+ foreignKeyName: "acq_deal_notes_organization_id_fkey";
781
+ columns: ["organization_id"];
782
+ isOneToOne: false;
783
+ referencedRelation: "organizations";
784
+ referencedColumns: ["id"];
785
+ }
786
+ ];
787
+ };
788
+ acq_deal_tasks: {
789
+ Row: {
790
+ assignee_user_id: string | null;
791
+ completed_at: string | null;
792
+ completed_by_user_id: string | null;
793
+ created_at: string;
794
+ created_by_user_id: string | null;
795
+ deal_id: string;
796
+ description: string | null;
797
+ due_at: string | null;
798
+ id: string;
799
+ kind: string;
800
+ organization_id: string;
801
+ title: string;
802
+ updated_at: string;
803
+ };
804
+ Insert: {
805
+ assignee_user_id?: string | null;
806
+ completed_at?: string | null;
807
+ completed_by_user_id?: string | null;
808
+ created_at?: string;
809
+ created_by_user_id?: string | null;
810
+ deal_id: string;
811
+ description?: string | null;
812
+ due_at?: string | null;
813
+ id?: string;
814
+ kind?: string;
815
+ organization_id: string;
816
+ title: string;
817
+ updated_at?: string;
818
+ };
819
+ Update: {
820
+ assignee_user_id?: string | null;
821
+ completed_at?: string | null;
822
+ completed_by_user_id?: string | null;
823
+ created_at?: string;
824
+ created_by_user_id?: string | null;
825
+ deal_id?: string;
826
+ description?: string | null;
827
+ due_at?: string | null;
828
+ id?: string;
829
+ kind?: string;
830
+ organization_id?: string;
831
+ title?: string;
832
+ updated_at?: string;
833
+ };
834
+ Relationships: [
835
+ {
836
+ foreignKeyName: "acq_deal_tasks_deal_id_fkey";
837
+ columns: ["deal_id"];
838
+ isOneToOne: false;
839
+ referencedRelation: "acq_deals";
840
+ referencedColumns: ["id"];
841
+ },
842
+ {
843
+ foreignKeyName: "acq_deal_tasks_organization_id_fkey";
844
+ columns: ["organization_id"];
845
+ isOneToOne: false;
846
+ referencedRelation: "organizations";
847
+ referencedColumns: ["id"];
848
+ }
849
+ ];
850
+ };
749
851
  acq_deals: {
750
852
  Row: {
751
853
  activity_log: Json;
752
- attio_deal_id: string;
753
854
  cached_stage: string | null;
754
855
  closed_lost_at: string | null;
755
856
  closed_lost_reason: string | null;
@@ -784,7 +885,6 @@ type Database = {
784
885
  };
785
886
  Insert: {
786
887
  activity_log?: Json;
787
- attio_deal_id: string;
788
888
  cached_stage?: string | null;
789
889
  closed_lost_at?: string | null;
790
890
  closed_lost_reason?: string | null;
@@ -819,7 +919,6 @@ type Database = {
819
919
  };
820
920
  Update: {
821
921
  activity_log?: Json;
822
- attio_deal_id?: string;
823
922
  cached_stage?: string | null;
824
923
  closed_lost_at?: string | null;
825
924
  closed_lost_reason?: string | null;
@@ -2904,6 +3003,40 @@ interface TaskSchedule extends ScheduleOriginTracking {
2904
3003
  updatedAt: Date;
2905
3004
  }
2906
3005
 
3006
+ /** Raw database row type for acq_deals table */
3007
+ type AcqDealRow = Database['public']['Tables']['acq_deals']['Row'];
3008
+ type DealStage = 'interested' | 'booked' | 'qualified' | 'demo_booked' | 'proposal' | 'proposal_sent' | 'proposal_signed' | 'payment_sent' | 'proposal_revision' | 'closed_won' | 'closed_lost' | 'nurturing' | 'cancelled' | 'no_show';
3009
+ interface KanbanStageConfig {
3010
+ color: string;
3011
+ label?: string;
3012
+ }
3013
+ type KanbanBoardConfig = Partial<Record<DealStage, KanbanStageConfig>>;
3014
+ interface DealContact {
3015
+ id: string;
3016
+ first_name: string | null;
3017
+ last_name: string | null;
3018
+ email: string;
3019
+ title: string | null;
3020
+ headline: string | null;
3021
+ linkedin_url: string | null;
3022
+ pipeline_status: Record<string, unknown> | null;
3023
+ enrichment_data: Record<string, unknown> | null;
3024
+ company: {
3025
+ id: string;
3026
+ name: string;
3027
+ domain: string | null;
3028
+ website: string | null;
3029
+ linkedin_url: string | null;
3030
+ segment: string | null;
3031
+ category: string | null;
3032
+ num_employees: number | null;
3033
+ } | null;
3034
+ }
3035
+ /** Deal list item with joined contact and company data */
3036
+ interface DealListItem extends AcqDealRow {
3037
+ contact: DealContact | null;
3038
+ }
3039
+
2907
3040
  type MessageType = MessageEvent$1['type'];
2908
3041
  /**
2909
3042
  * Session Data Transfer Object (DTO)
@@ -7143,4 +7276,4 @@ interface CommandViewStatsResponse {
7143
7276
  generatedAt: string
7144
7277
  }
7145
7278
 
7146
- export type { AIResourceDefinition, APIExecutionDetail, APIExecutionListResponse, APIExecutionSummary, AbsoluteScheduleConfig, AbsoluteScheduleItem, ActionConfig, Activity, ActivitySSEEvent, ActivityStatus, ActivityType, AgentIterationData, AgentMemory, ApiKeyListItem, BusinessImpactMetrics, CalibrationProject, CalibrationRun, CalibrationRunWithFullData, CalibrationSSEEvent, ChatMessage, CheckpointListResponse, CommandQueueSSEEvent, CommandViewAgent, CommandViewData, CommandViewNode, CommandViewNodeType, CommandViewStatsResponse, CommandViewWorkflow, ConfigVariant, CostBreakdownMetrics, CostByModelResponse, CostSummaryResponse, CostTrendsResponse, CreateCalibrationProjectInput, CreateCalibrationRunInput, CreateWebhookEndpointRequest, CredentialListItem, DashboardMetrics, Deployment, DeploymentStatus, DomainDefinition, ErrorAnalysisMetrics, ErrorDetailFull, ErrorDetailResponse, ErrorTrend, ExecutionHealthMetrics, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLog, ExecutionLogMessage, ExecutionMetricsDetail, ExecutionSSEEvent, ExecutionStatus$1 as ExecutionStatus, ExecutionSummary, FailingResource, GradingRubric, HumanCheckpointDefinition, HumanCheckpointStats, ListMembershipsParams, MembershipFeatureConfig, MembershipStatus, MembershipWithDetails, MessageEvent$1 as MessageEvent, MessageType, ModelConfig, NotificationDTO, NotificationSSEEvent, PatchTaskParams, RecentExecutionsByResourceResponse, RecurringScheduleConfig, RelativeScheduleConfig, RelativeScheduleItem, ResourceDefinition$1 as ResourceDefinition, ResourceDomain, ResourceErrorsResponse, ResourceExecutionSummary, ResourceExecutionsResponse, ResourceHealth, ResourceIdentifier, ResourceStats, ResourceStatus$1 as ResourceStatus, ResourceType$1 as ResourceType, ResourcesHealthResponse, SerializedAgentDefinition, SerializedExecutionInterface, SerializedWorkflowDefinition, SessionCalibrationResult, SessionDTO, SessionTokenUsage, SingleCalibrationResult, StatsTimeRange, SupabaseUserProfile, Task, TaskSchedule, TaskScheduleConfig, TaskStatus, TimeRange, WorkflowNodeVisualizerData as TimelineData, UpdateCalibrationProjectInput, UpdateWebhookEndpointRequest, UserConfig, WebhookEndpoint, WebhookEndpointResponse };
7279
+ export type { AIResourceDefinition, APIExecutionDetail, APIExecutionListResponse, APIExecutionSummary, AbsoluteScheduleConfig, AbsoluteScheduleItem, ActionConfig, Activity, ActivitySSEEvent, ActivityStatus, ActivityType, AgentIterationData, AgentMemory, ApiKeyListItem, BusinessImpactMetrics, CalibrationProject, CalibrationRun, CalibrationRunWithFullData, CalibrationSSEEvent, ChatMessage, CheckpointListResponse, CommandQueueSSEEvent, CommandViewAgent, CommandViewData, CommandViewNode, CommandViewNodeType, CommandViewStatsResponse, CommandViewWorkflow, ConfigVariant, CostBreakdownMetrics, CostByModelResponse, CostSummaryResponse, CostTrendsResponse, CreateCalibrationProjectInput, CreateCalibrationRunInput, CreateWebhookEndpointRequest, CredentialListItem, DashboardMetrics, DealListItem, DealStage, Deployment, DeploymentStatus, DomainDefinition, ErrorAnalysisMetrics, ErrorDetailFull, ErrorDetailResponse, ErrorTrend, ExecutionHealthMetrics, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLog, ExecutionLogMessage, ExecutionMetricsDetail, ExecutionSSEEvent, ExecutionStatus$1 as ExecutionStatus, ExecutionSummary, FailingResource, GradingRubric, HumanCheckpointDefinition, HumanCheckpointStats, KanbanBoardConfig, ListMembershipsParams, MembershipFeatureConfig, MembershipStatus, MembershipWithDetails, MessageEvent$1 as MessageEvent, MessageType, ModelConfig, NotificationDTO, NotificationSSEEvent, PatchTaskParams, RecentExecutionsByResourceResponse, RecurringScheduleConfig, RelativeScheduleConfig, RelativeScheduleItem, ResourceDefinition$1 as ResourceDefinition, ResourceDomain, ResourceErrorsResponse, ResourceExecutionSummary, ResourceExecutionsResponse, ResourceHealth, ResourceIdentifier, ResourceStats, ResourceStatus$1 as ResourceStatus, ResourceType$1 as ResourceType, ResourcesHealthResponse, SerializedAgentDefinition, SerializedExecutionInterface, SerializedWorkflowDefinition, SessionCalibrationResult, SessionDTO, SessionTokenUsage, SingleCalibrationResult, StatsTimeRange, SupabaseUserProfile, Task, TaskSchedule, TaskScheduleConfig, TaskStatus, TimeRange, WorkflowNodeVisualizerData as TimelineData, UpdateCalibrationProjectInput, UpdateWebhookEndpointRequest, UserConfig, WebhookEndpoint, WebhookEndpointResponse };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "1.24.3",
3
+ "version": "1.25.1",
4
4
  "description": "UI components and platform-aware hooks for building custom frontends on the Elevasis platform",
5
5
  "type": "module",
6
6
  "license": "MIT",