@elevasis/ui 1.26.1 → 1.27.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 (53) hide show
  1. package/dist/charts/index.js +2 -2
  2. package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
  3. package/dist/chunk-5COLSYBE.js +199 -0
  4. package/dist/{chunk-RMPXGBNI.js → chunk-5JSR6TL5.js} +2 -2
  5. package/dist/chunk-BAGYETKM.js +635 -0
  6. package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
  7. package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
  8. package/dist/chunk-ITCEULI5.js +238 -0
  9. package/dist/{chunk-4WKWLFBZ.js → chunk-P5EWG45B.js} +1 -1
  10. package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
  11. package/dist/{chunk-ZVJKIJFG.js → chunk-RCQPWA5X.js} +13 -42
  12. package/dist/chunk-TLAIQC7B.js +6382 -0
  13. package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
  14. package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
  15. package/dist/chunk-WJ7W7JU4.js +2115 -0
  16. package/dist/{chunk-YNGQ7U5H.js → chunk-WLNEJ6JJ.js} +2 -2
  17. package/dist/{chunk-4INR75ZS.js → chunk-Y2SYGFRF.js} +589 -65
  18. package/dist/components/index.d.ts +333 -73
  19. package/dist/components/index.js +838 -686
  20. package/dist/features/auth/index.d.ts +125 -0
  21. package/dist/features/auth/index.js +2 -2
  22. package/dist/features/dashboard/index.d.ts +28 -2
  23. package/dist/features/dashboard/index.js +21 -635
  24. package/dist/features/monitoring/index.d.ts +28 -1
  25. package/dist/features/monitoring/index.js +19 -529
  26. package/dist/features/operations/index.d.ts +51 -8
  27. package/dist/features/operations/index.js +25 -3760
  28. package/dist/features/settings/index.d.ts +153 -1
  29. package/dist/features/settings/index.js +19 -1438
  30. package/dist/hooks/index.d.ts +262 -25
  31. package/dist/hooks/index.js +12 -8
  32. package/dist/hooks/published.d.ts +137 -25
  33. package/dist/hooks/published.js +11 -7
  34. package/dist/index.d.ts +310 -28
  35. package/dist/index.js +12 -11
  36. package/dist/initialization/index.d.ts +125 -0
  37. package/dist/layout/index.d.ts +2 -0
  38. package/dist/layout/index.js +6 -5
  39. package/dist/organization/index.js +1 -2
  40. package/dist/profile/index.d.ts +125 -0
  41. package/dist/provider/index.d.ts +48 -3
  42. package/dist/provider/index.js +10 -4
  43. package/dist/provider/published.d.ts +48 -3
  44. package/dist/provider/published.js +8 -2
  45. package/dist/supabase/index.d.ts +242 -0
  46. package/dist/theme/index.js +2 -2
  47. package/dist/types/index.d.ts +126 -1
  48. package/package.json +3 -3
  49. package/dist/chunk-LR4WVA7W.js +0 -682
  50. package/dist/chunk-R7WLWGPO.js +0 -126
  51. package/dist/chunk-TCKIAHDC.js +0 -2626
  52. package/dist/chunk-V7XHGJQZ.js +0 -145
  53. package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
@@ -533,6 +533,106 @@ type Database = {
533
533
  }
534
534
  ];
535
535
  };
536
+ acq_list_companies: {
537
+ Row: {
538
+ added_at: string;
539
+ added_by: string | null;
540
+ company_id: string;
541
+ id: string;
542
+ list_id: string;
543
+ source_execution_id: string | null;
544
+ source_input_hash: string | null;
545
+ source_resource_id: string | null;
546
+ stage: string | null;
547
+ stage_updated_at: string | null;
548
+ };
549
+ Insert: {
550
+ added_at?: string;
551
+ added_by?: string | null;
552
+ company_id: string;
553
+ id?: string;
554
+ list_id: string;
555
+ source_execution_id?: string | null;
556
+ source_input_hash?: string | null;
557
+ source_resource_id?: string | null;
558
+ stage?: string | null;
559
+ stage_updated_at?: string | null;
560
+ };
561
+ Update: {
562
+ added_at?: string;
563
+ added_by?: string | null;
564
+ company_id?: string;
565
+ id?: string;
566
+ list_id?: string;
567
+ source_execution_id?: string | null;
568
+ source_input_hash?: string | null;
569
+ source_resource_id?: string | null;
570
+ stage?: string | null;
571
+ stage_updated_at?: string | null;
572
+ };
573
+ Relationships: [
574
+ {
575
+ foreignKeyName: "acq_list_companies_company_id_fkey";
576
+ columns: ["company_id"];
577
+ isOneToOne: false;
578
+ referencedRelation: "acq_companies";
579
+ referencedColumns: ["id"];
580
+ },
581
+ {
582
+ foreignKeyName: "acq_list_companies_list_id_fkey";
583
+ columns: ["list_id"];
584
+ isOneToOne: false;
585
+ referencedRelation: "acq_lists";
586
+ referencedColumns: ["id"];
587
+ },
588
+ {
589
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey";
590
+ columns: ["source_execution_id"];
591
+ isOneToOne: false;
592
+ referencedRelation: "execution_logs";
593
+ referencedColumns: ["execution_id"];
594
+ }
595
+ ];
596
+ };
597
+ acq_list_executions: {
598
+ Row: {
599
+ created_at: string;
600
+ execution_id: string;
601
+ id: string;
602
+ list_id: string;
603
+ payload: Json;
604
+ };
605
+ Insert: {
606
+ created_at?: string;
607
+ execution_id: string;
608
+ id?: string;
609
+ list_id: string;
610
+ payload?: Json;
611
+ };
612
+ Update: {
613
+ created_at?: string;
614
+ execution_id?: string;
615
+ id?: string;
616
+ list_id?: string;
617
+ payload?: Json;
618
+ };
619
+ Relationships: [
620
+ {
621
+ foreignKeyName: "acq_list_executions_execution_id_fkey";
622
+ columns: ["execution_id"];
623
+ isOneToOne: false;
624
+ referencedRelation: "execution_logs";
625
+ referencedColumns: ["execution_id"];
626
+ },
627
+ {
628
+ foreignKeyName: "acq_list_executions_list_id_fkey";
629
+ columns: ["list_id"];
630
+ isOneToOne: false;
631
+ referencedRelation: "acq_lists";
632
+ referencedColumns: ["id"];
633
+ }
634
+ ];
635
+ };
536
636
  acq_list_members: {
537
637
  Row: {
538
638
  added_at: string;
@@ -540,6 +640,11 @@ type Database = {
540
640
  contact_id: string;
541
641
  id: string;
542
642
  list_id: string;
643
+ source_execution_id: string | null;
644
+ source_input_hash: string | null;
645
+ source_resource_id: string | null;
646
+ stage: string | null;
647
+ stage_updated_at: string | null;
543
648
  };
544
649
  Insert: {
545
650
  added_at?: string;
@@ -547,6 +652,11 @@ type Database = {
547
652
  contact_id: string;
548
653
  id?: string;
549
654
  list_id: string;
655
+ source_execution_id?: string | null;
656
+ source_input_hash?: string | null;
657
+ source_resource_id?: string | null;
658
+ stage?: string | null;
659
+ stage_updated_at?: string | null;
550
660
  };
551
661
  Update: {
552
662
  added_at?: string;
@@ -554,6 +664,11 @@ type Database = {
554
664
  contact_id?: string;
555
665
  id?: string;
556
666
  list_id?: string;
667
+ source_execution_id?: string | null;
668
+ source_input_hash?: string | null;
669
+ source_resource_id?: string | null;
670
+ stage?: string | null;
671
+ stage_updated_at?: string | null;
557
672
  };
558
673
  Relationships: [
559
674
  {
@@ -569,6 +684,13 @@ type Database = {
569
684
  isOneToOne: false;
570
685
  referencedRelation: "acq_lists";
571
686
  referencedColumns: ["id"];
687
+ },
688
+ {
689
+ foreignKeyName: "acq_list_members_source_execution_id_fkey";
690
+ columns: ["source_execution_id"];
691
+ isOneToOne: false;
692
+ referencedRelation: "execution_logs";
693
+ referencedColumns: ["execution_id"];
572
694
  }
573
695
  ];
574
696
  };
@@ -576,6 +698,7 @@ type Database = {
576
698
  Row: {
577
699
  batch_ids: string[];
578
700
  completed_at: string | null;
701
+ config: Json;
579
702
  created_at: string;
580
703
  description: string | null;
581
704
  id: string;
@@ -590,6 +713,7 @@ type Database = {
590
713
  Insert: {
591
714
  batch_ids?: string[];
592
715
  completed_at?: string | null;
716
+ config?: Json;
593
717
  created_at?: string;
594
718
  description?: string | null;
595
719
  id?: string;
@@ -604,6 +728,7 @@ type Database = {
604
728
  Update: {
605
729
  batch_ids?: string[];
606
730
  completed_at?: string | null;
731
+ config?: Json;
607
732
  created_at?: string;
608
733
  description?: string | null;
609
734
  id?: string;
@@ -2974,6 +3099,99 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2974
3099
  referencedColumns: ["id"];
2975
3100
  }];
2976
3101
  };
3102
+ acq_list_companies: {
3103
+ Row: {
3104
+ added_at: string;
3105
+ added_by: string | null;
3106
+ company_id: string;
3107
+ id: string;
3108
+ list_id: string;
3109
+ source_execution_id: string | null;
3110
+ source_input_hash: string | null;
3111
+ source_resource_id: string | null;
3112
+ stage: string | null;
3113
+ stage_updated_at: string | null;
3114
+ };
3115
+ Insert: {
3116
+ added_at?: string;
3117
+ added_by?: string | null;
3118
+ company_id: string;
3119
+ id?: string;
3120
+ list_id: string;
3121
+ source_execution_id?: string | null;
3122
+ source_input_hash?: string | null;
3123
+ source_resource_id?: string | null;
3124
+ stage?: string | null;
3125
+ stage_updated_at?: string | null;
3126
+ };
3127
+ Update: {
3128
+ added_at?: string;
3129
+ added_by?: string | null;
3130
+ company_id?: string;
3131
+ id?: string;
3132
+ list_id?: string;
3133
+ source_execution_id?: string | null;
3134
+ source_input_hash?: string | null;
3135
+ source_resource_id?: string | null;
3136
+ stage?: string | null;
3137
+ stage_updated_at?: string | null;
3138
+ };
3139
+ Relationships: [{
3140
+ foreignKeyName: "acq_list_companies_company_id_fkey";
3141
+ columns: ["company_id"];
3142
+ isOneToOne: false;
3143
+ referencedRelation: "acq_companies";
3144
+ referencedColumns: ["id"];
3145
+ }, {
3146
+ foreignKeyName: "acq_list_companies_list_id_fkey";
3147
+ columns: ["list_id"];
3148
+ isOneToOne: false;
3149
+ referencedRelation: "acq_lists";
3150
+ referencedColumns: ["id"];
3151
+ }, {
3152
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey";
3153
+ columns: ["source_execution_id"];
3154
+ isOneToOne: false;
3155
+ referencedRelation: "execution_logs";
3156
+ referencedColumns: ["execution_id"];
3157
+ }];
3158
+ };
3159
+ acq_list_executions: {
3160
+ Row: {
3161
+ created_at: string;
3162
+ execution_id: string;
3163
+ id: string;
3164
+ list_id: string;
3165
+ payload: Json;
3166
+ };
3167
+ Insert: {
3168
+ created_at?: string;
3169
+ execution_id: string;
3170
+ id?: string;
3171
+ list_id: string;
3172
+ payload?: Json;
3173
+ };
3174
+ Update: {
3175
+ created_at?: string;
3176
+ execution_id?: string;
3177
+ id?: string;
3178
+ list_id?: string;
3179
+ payload?: Json;
3180
+ };
3181
+ Relationships: [{
3182
+ foreignKeyName: "acq_list_executions_execution_id_fkey";
3183
+ columns: ["execution_id"];
3184
+ isOneToOne: false;
3185
+ referencedRelation: "execution_logs";
3186
+ referencedColumns: ["execution_id"];
3187
+ }, {
3188
+ foreignKeyName: "acq_list_executions_list_id_fkey";
3189
+ columns: ["list_id"];
3190
+ isOneToOne: false;
3191
+ referencedRelation: "acq_lists";
3192
+ referencedColumns: ["id"];
3193
+ }];
3194
+ };
2977
3195
  acq_list_members: {
2978
3196
  Row: {
2979
3197
  added_at: string;
@@ -2981,6 +3199,11 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2981
3199
  contact_id: string;
2982
3200
  id: string;
2983
3201
  list_id: string;
3202
+ source_execution_id: string | null;
3203
+ source_input_hash: string | null;
3204
+ source_resource_id: string | null;
3205
+ stage: string | null;
3206
+ stage_updated_at: string | null;
2984
3207
  };
2985
3208
  Insert: {
2986
3209
  added_at?: string;
@@ -2988,6 +3211,11 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2988
3211
  contact_id: string;
2989
3212
  id?: string;
2990
3213
  list_id: string;
3214
+ source_execution_id?: string | null;
3215
+ source_input_hash?: string | null;
3216
+ source_resource_id?: string | null;
3217
+ stage?: string | null;
3218
+ stage_updated_at?: string | null;
2991
3219
  };
2992
3220
  Update: {
2993
3221
  added_at?: string;
@@ -2995,6 +3223,11 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
2995
3223
  contact_id?: string;
2996
3224
  id?: string;
2997
3225
  list_id?: string;
3226
+ source_execution_id?: string | null;
3227
+ source_input_hash?: string | null;
3228
+ source_resource_id?: string | null;
3229
+ stage?: string | null;
3230
+ stage_updated_at?: string | null;
2998
3231
  };
2999
3232
  Relationships: [{
3000
3233
  foreignKeyName: "acq_list_members_contact_id_fkey";
@@ -3008,12 +3241,19 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
3008
3241
  isOneToOne: false;
3009
3242
  referencedRelation: "acq_lists";
3010
3243
  referencedColumns: ["id"];
3244
+ }, {
3245
+ foreignKeyName: "acq_list_members_source_execution_id_fkey";
3246
+ columns: ["source_execution_id"];
3247
+ isOneToOne: false;
3248
+ referencedRelation: "execution_logs";
3249
+ referencedColumns: ["execution_id"];
3011
3250
  }];
3012
3251
  };
3013
3252
  acq_lists: {
3014
3253
  Row: {
3015
3254
  batch_ids: string[];
3016
3255
  completed_at: string | null;
3256
+ config: Json;
3017
3257
  created_at: string;
3018
3258
  description: string | null;
3019
3259
  id: string;
@@ -3028,6 +3268,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
3028
3268
  Insert: {
3029
3269
  batch_ids?: string[];
3030
3270
  completed_at?: string | null;
3271
+ config?: Json;
3031
3272
  created_at?: string;
3032
3273
  description?: string | null;
3033
3274
  id?: string;
@@ -3042,6 +3283,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
3042
3283
  Update: {
3043
3284
  batch_ids?: string[];
3044
3285
  completed_at?: string | null;
3286
+ config?: Json;
3045
3287
  created_at?: string;
3046
3288
  description?: string | null;
3047
3289
  id?: string;
@@ -1,3 +1,3 @@
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';
1
+ export { useAvailablePresets } from '../chunk-QTD5HPKD.js';
2
+ export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, generateShades, getPreset, mantineThemeOverride, PRESETS as presets, usePresetsContext } from '../chunk-TXPUIHX2.js';
3
3
  import '../chunk-CYXZHBP4.js';
@@ -975,6 +975,106 @@ type Database = {
975
975
  }
976
976
  ];
977
977
  };
978
+ acq_list_companies: {
979
+ Row: {
980
+ added_at: string;
981
+ added_by: string | null;
982
+ company_id: string;
983
+ id: string;
984
+ list_id: string;
985
+ source_execution_id: string | null;
986
+ source_input_hash: string | null;
987
+ source_resource_id: string | null;
988
+ stage: string | null;
989
+ stage_updated_at: string | null;
990
+ };
991
+ Insert: {
992
+ added_at?: string;
993
+ added_by?: string | null;
994
+ company_id: string;
995
+ id?: string;
996
+ list_id: string;
997
+ source_execution_id?: string | null;
998
+ source_input_hash?: string | null;
999
+ source_resource_id?: string | null;
1000
+ stage?: string | null;
1001
+ stage_updated_at?: string | null;
1002
+ };
1003
+ Update: {
1004
+ added_at?: string;
1005
+ added_by?: string | null;
1006
+ company_id?: string;
1007
+ id?: string;
1008
+ list_id?: string;
1009
+ source_execution_id?: string | null;
1010
+ source_input_hash?: string | null;
1011
+ source_resource_id?: string | null;
1012
+ stage?: string | null;
1013
+ stage_updated_at?: string | null;
1014
+ };
1015
+ Relationships: [
1016
+ {
1017
+ foreignKeyName: "acq_list_companies_company_id_fkey";
1018
+ columns: ["company_id"];
1019
+ isOneToOne: false;
1020
+ referencedRelation: "acq_companies";
1021
+ referencedColumns: ["id"];
1022
+ },
1023
+ {
1024
+ foreignKeyName: "acq_list_companies_list_id_fkey";
1025
+ columns: ["list_id"];
1026
+ isOneToOne: false;
1027
+ referencedRelation: "acq_lists";
1028
+ referencedColumns: ["id"];
1029
+ },
1030
+ {
1031
+ foreignKeyName: "acq_list_companies_source_execution_id_fkey";
1032
+ columns: ["source_execution_id"];
1033
+ isOneToOne: false;
1034
+ referencedRelation: "execution_logs";
1035
+ referencedColumns: ["execution_id"];
1036
+ }
1037
+ ];
1038
+ };
1039
+ acq_list_executions: {
1040
+ Row: {
1041
+ created_at: string;
1042
+ execution_id: string;
1043
+ id: string;
1044
+ list_id: string;
1045
+ payload: Json;
1046
+ };
1047
+ Insert: {
1048
+ created_at?: string;
1049
+ execution_id: string;
1050
+ id?: string;
1051
+ list_id: string;
1052
+ payload?: Json;
1053
+ };
1054
+ Update: {
1055
+ created_at?: string;
1056
+ execution_id?: string;
1057
+ id?: string;
1058
+ list_id?: string;
1059
+ payload?: Json;
1060
+ };
1061
+ Relationships: [
1062
+ {
1063
+ foreignKeyName: "acq_list_executions_execution_id_fkey";
1064
+ columns: ["execution_id"];
1065
+ isOneToOne: false;
1066
+ referencedRelation: "execution_logs";
1067
+ referencedColumns: ["execution_id"];
1068
+ },
1069
+ {
1070
+ foreignKeyName: "acq_list_executions_list_id_fkey";
1071
+ columns: ["list_id"];
1072
+ isOneToOne: false;
1073
+ referencedRelation: "acq_lists";
1074
+ referencedColumns: ["id"];
1075
+ }
1076
+ ];
1077
+ };
978
1078
  acq_list_members: {
979
1079
  Row: {
980
1080
  added_at: string;
@@ -982,6 +1082,11 @@ type Database = {
982
1082
  contact_id: string;
983
1083
  id: string;
984
1084
  list_id: string;
1085
+ source_execution_id: string | null;
1086
+ source_input_hash: string | null;
1087
+ source_resource_id: string | null;
1088
+ stage: string | null;
1089
+ stage_updated_at: string | null;
985
1090
  };
986
1091
  Insert: {
987
1092
  added_at?: string;
@@ -989,6 +1094,11 @@ type Database = {
989
1094
  contact_id: string;
990
1095
  id?: string;
991
1096
  list_id: string;
1097
+ source_execution_id?: string | null;
1098
+ source_input_hash?: string | null;
1099
+ source_resource_id?: string | null;
1100
+ stage?: string | null;
1101
+ stage_updated_at?: string | null;
992
1102
  };
993
1103
  Update: {
994
1104
  added_at?: string;
@@ -996,6 +1106,11 @@ type Database = {
996
1106
  contact_id?: string;
997
1107
  id?: string;
998
1108
  list_id?: string;
1109
+ source_execution_id?: string | null;
1110
+ source_input_hash?: string | null;
1111
+ source_resource_id?: string | null;
1112
+ stage?: string | null;
1113
+ stage_updated_at?: string | null;
999
1114
  };
1000
1115
  Relationships: [
1001
1116
  {
@@ -1011,6 +1126,13 @@ type Database = {
1011
1126
  isOneToOne: false;
1012
1127
  referencedRelation: "acq_lists";
1013
1128
  referencedColumns: ["id"];
1129
+ },
1130
+ {
1131
+ foreignKeyName: "acq_list_members_source_execution_id_fkey";
1132
+ columns: ["source_execution_id"];
1133
+ isOneToOne: false;
1134
+ referencedRelation: "execution_logs";
1135
+ referencedColumns: ["execution_id"];
1014
1136
  }
1015
1137
  ];
1016
1138
  };
@@ -1018,6 +1140,7 @@ type Database = {
1018
1140
  Row: {
1019
1141
  batch_ids: string[];
1020
1142
  completed_at: string | null;
1143
+ config: Json;
1021
1144
  created_at: string;
1022
1145
  description: string | null;
1023
1146
  id: string;
@@ -1032,6 +1155,7 @@ type Database = {
1032
1155
  Insert: {
1033
1156
  batch_ids?: string[];
1034
1157
  completed_at?: string | null;
1158
+ config?: Json;
1035
1159
  created_at?: string;
1036
1160
  description?: string | null;
1037
1161
  id?: string;
@@ -1046,6 +1170,7 @@ type Database = {
1046
1170
  Update: {
1047
1171
  batch_ids?: string[];
1048
1172
  completed_at?: string | null;
1173
+ config?: Json;
1049
1174
  created_at?: string;
1050
1175
  description?: string | null;
1051
1176
  id?: string;
@@ -3005,7 +3130,7 @@ interface TaskSchedule extends ScheduleOriginTracking {
3005
3130
 
3006
3131
  /** Raw database row type for acq_deals table */
3007
3132
  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';
3133
+ type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
3009
3134
  interface KanbanStageConfig {
3010
3135
  color: string;
3011
3136
  label?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/ui",
3
- "version": "1.26.1",
3
+ "version": "1.27.0",
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",
@@ -239,8 +239,8 @@
239
239
  "typescript": "5.9.2",
240
240
  "vite": "^7.0.0",
241
241
  "@repo/core": "0.0.0",
242
- "@repo/eslint-config": "0.0.0",
243
- "@repo/typescript-config": "0.0.0"
242
+ "@repo/typescript-config": "0.0.0",
243
+ "@repo/eslint-config": "0.0.0"
244
244
  },
245
245
  "dependencies": {
246
246
  "@dagrejs/dagre": "^1.1.4",