@elevasis/ui 1.26.1 → 1.28.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.
- package/dist/charts/index.js +2 -2
- package/dist/{chunk-MHW43EOH.js → chunk-2IFYDILW.js} +2 -1
- package/dist/{chunk-AWT255UH.js → chunk-2IJCM3VQ.js} +37 -37
- package/dist/{chunk-4INR75ZS.js → chunk-37NT4BNV.js} +589 -65
- package/dist/chunk-5COLSYBE.js +199 -0
- package/dist/{chunk-YNGQ7U5H.js → chunk-7CJ5QBN2.js} +2 -2
- package/dist/{chunk-L3GVDMCA.js → chunk-C27LLJM6.js} +3 -195
- package/dist/chunk-C4WOXS2C.js +6646 -0
- package/dist/{chunk-RMPXGBNI.js → chunk-D25AE46Q.js} +2 -2
- package/dist/{chunk-ZVJKIJFG.js → chunk-EBCIUZVV.js} +13 -42
- package/dist/{chunk-O4UB5DQQ.js → chunk-F2J7675J.js} +1 -1
- package/dist/chunk-KLG4H5NM.js +247 -0
- package/dist/{chunk-BS4J2LAW.js → chunk-QTD5HPKD.js} +1 -1
- package/dist/chunk-S4S6K4MV.js +635 -0
- package/dist/{chunk-FEZZ3IDU.js → chunk-TXPUIHX2.js} +10 -10
- package/dist/{chunk-L4XXM55J.js → chunk-W4VYXIN7.js} +142 -3
- package/dist/{chunk-4WKWLFBZ.js → chunk-ZUJ7WMGV.js} +1 -1
- package/dist/chunk-ZXBD5SBV.js +2115 -0
- package/dist/components/index.d.ts +339 -73
- package/dist/components/index.js +840 -688
- package/dist/features/auth/index.d.ts +125 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +28 -2
- package/dist/features/dashboard/index.js +21 -635
- package/dist/features/monitoring/index.d.ts +28 -1
- package/dist/features/monitoring/index.js +19 -529
- package/dist/features/operations/index.d.ts +57 -8
- package/dist/features/operations/index.js +25 -3760
- package/dist/features/settings/index.d.ts +153 -1
- package/dist/features/settings/index.js +19 -1438
- package/dist/hooks/index.d.ts +262 -25
- package/dist/hooks/index.js +12 -8
- package/dist/hooks/published.d.ts +137 -25
- package/dist/hooks/published.js +11 -7
- package/dist/index.d.ts +388 -99
- package/dist/index.js +12 -11
- package/dist/initialization/index.d.ts +125 -0
- package/dist/layout/index.d.ts +2 -0
- package/dist/layout/index.js +6 -5
- package/dist/organization/index.js +1 -2
- package/dist/profile/index.d.ts +125 -0
- package/dist/provider/index.d.ts +130 -3
- package/dist/provider/index.js +10 -4
- package/dist/provider/published.d.ts +130 -3
- package/dist/provider/published.js +8 -2
- package/dist/router/context.d.ts +1 -0
- package/dist/router/index.d.ts +1 -0
- package/dist/router/index.js +1 -1
- package/dist/supabase/index.d.ts +242 -0
- package/dist/theme/index.js +2 -2
- package/dist/types/index.d.ts +126 -1
- package/package.json +1 -1
- package/dist/chunk-LR4WVA7W.js +0 -682
- package/dist/chunk-R7WLWGPO.js +0 -126
- package/dist/chunk-TCKIAHDC.js +0 -2626
- package/dist/chunk-V7XHGJQZ.js +0 -145
- package/dist/{chunk-WWEMNIHW.js → chunk-YYBM5LNJ.js} +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -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' | '
|
|
3133
|
+
type DealStage = 'interested' | 'proposal' | 'closing' | 'closed_won' | 'closed_lost' | 'nurturing';
|
|
3009
3134
|
interface KanbanStageConfig {
|
|
3010
3135
|
color: string;
|
|
3011
3136
|
label?: string;
|