@elevasis/ui 2.70.0 → 2.72.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/api/index.js +3 -3
- package/dist/app/index.d.ts +28 -2
- package/dist/app/index.js +8 -8
- package/dist/auth/index.js +4 -4
- package/dist/charts/index.js +4 -4
- package/dist/{chunk-GZADST64.js → chunk-2454MK7P.js} +7 -7
- package/dist/{chunk-26BTE3Z4.js → chunk-753MKWFV.js} +1 -1
- package/dist/{chunk-LWYLZUUV.js → chunk-7ESZKTQG.js} +3 -3
- package/dist/{chunk-SMH6SQQE.js → chunk-A3JHFZDP.js} +1 -1
- package/dist/{chunk-MFCV4JMQ.js → chunk-AFBFSXP3.js} +4 -4
- package/dist/{chunk-TJMZUL6E.js → chunk-DJWIIPKW.js} +3 -3
- package/dist/{chunk-QDMIFD6F.js → chunk-DKVGO6RJ.js} +1 -1
- package/dist/{chunk-LY3IKYTZ.js → chunk-IMZTRDY2.js} +2 -2
- package/dist/{chunk-JA2XDMAE.js → chunk-IXBRUIYI.js} +1 -1
- package/dist/{chunk-6TT3FQEZ.js → chunk-KIDZXZM5.js} +149 -17
- package/dist/{chunk-CCZJ4OWY.js → chunk-LCHL5SM2.js} +1 -1
- package/dist/{chunk-5C62IRKS.js → chunk-LEQGGX2U.js} +4 -4
- package/dist/{chunk-NM4A63KJ.js → chunk-Q3O3WY7Q.js} +23 -7
- package/dist/{chunk-GJQF3S2Q.js → chunk-RRS2QR3W.js} +1 -1
- package/dist/{chunk-DUEGHF7A.js → chunk-SV4M2BUI.js} +4 -4
- package/dist/{chunk-AGX2CY2O.js → chunk-UZ5JO5TK.js} +1 -1
- package/dist/{chunk-C75XWBYZ.js → chunk-XZIOCB5D.js} +1 -1
- package/dist/{chunk-VDX6DL7Z.js → chunk-Z2W5VNN3.js} +1 -1
- package/dist/{chunk-XKUEO4HG.js → chunk-ZBXCEWKF.js} +3 -3
- package/dist/components/index.d.ts +61 -5
- package/dist/components/index.js +23 -23
- package/dist/components/navigation/index.js +5 -5
- package/dist/features/auth/index.d.ts +26 -0
- package/dist/features/auth/index.js +6 -6
- package/dist/features/clients/index.js +5 -5
- package/dist/features/content/index.d.ts +187 -113
- package/dist/features/content/index.js +200 -303
- package/dist/features/crm/index.d.ts +29 -2
- package/dist/features/crm/index.js +6 -6
- package/dist/features/dashboard/index.d.ts +1 -1
- package/dist/features/dashboard/index.js +6 -6
- package/dist/features/delivery/index.d.ts +26 -0
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/knowledge/index.js +4 -4
- package/dist/features/lead-gen/index.d.ts +3 -2
- package/dist/features/lead-gen/index.js +6 -6
- package/dist/features/monitoring/index.d.ts +33 -3
- package/dist/features/monitoring/index.js +7 -7
- package/dist/features/monitoring/requests/index.js +5 -5
- package/dist/features/operations/index.d.ts +2 -2
- package/dist/features/operations/index.js +9 -9
- package/dist/features/settings/index.d.ts +26 -0
- package/dist/features/settings/index.js +6 -6
- package/dist/hooks/access/index.js +4 -4
- package/dist/hooks/delivery/index.d.ts +26 -0
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +310 -14
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +1 -1
- package/dist/hooks/published.d.ts +310 -14
- package/dist/hooks/published.js +4 -4
- package/dist/initialization/index.d.ts +26 -0
- package/dist/knowledge/index.d.ts +2 -2
- package/dist/knowledge/index.js +18 -18
- package/dist/{knowledge-search-index-LP2WVSQX.js → knowledge-search-index-RZLIVWPJ.js} +5 -5
- package/dist/layout/index.js +7 -7
- package/dist/profile/index.d.ts +26 -0
- package/dist/provider/index.d.ts +28 -2
- package/dist/provider/index.js +4 -4
- package/dist/provider/published.d.ts +28 -2
- package/dist/provider/published.js +4 -4
- package/dist/supabase/index.d.ts +50 -0
- package/dist/test-utils/index.js +3 -3
- package/dist/types/index.d.ts +60 -4
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.js +1 -1
- package/package.json +5 -5
|
@@ -1042,6 +1042,7 @@ type Database = {
|
|
|
1042
1042
|
activities: {
|
|
1043
1043
|
Row: {
|
|
1044
1044
|
activity_type: string;
|
|
1045
|
+
actor_api_key_id: string | null;
|
|
1045
1046
|
actor_id: string | null;
|
|
1046
1047
|
actor_type: string | null;
|
|
1047
1048
|
created_at: string;
|
|
@@ -1058,6 +1059,7 @@ type Database = {
|
|
|
1058
1059
|
};
|
|
1059
1060
|
Insert: {
|
|
1060
1061
|
activity_type: string;
|
|
1062
|
+
actor_api_key_id?: string | null;
|
|
1061
1063
|
actor_id?: string | null;
|
|
1062
1064
|
actor_type?: string | null;
|
|
1063
1065
|
created_at?: string;
|
|
@@ -1074,6 +1076,7 @@ type Database = {
|
|
|
1074
1076
|
};
|
|
1075
1077
|
Update: {
|
|
1076
1078
|
activity_type?: string;
|
|
1079
|
+
actor_api_key_id?: string | null;
|
|
1077
1080
|
actor_id?: string | null;
|
|
1078
1081
|
actor_type?: string | null;
|
|
1079
1082
|
created_at?: string;
|
|
@@ -1089,6 +1092,13 @@ type Database = {
|
|
|
1089
1092
|
title?: string;
|
|
1090
1093
|
};
|
|
1091
1094
|
Relationships: [
|
|
1095
|
+
{
|
|
1096
|
+
foreignKeyName: "activities_actor_api_key_id_fkey";
|
|
1097
|
+
columns: ["actor_api_key_id"];
|
|
1098
|
+
isOneToOne: false;
|
|
1099
|
+
referencedRelation: "api_keys";
|
|
1100
|
+
referencedColumns: ["id"];
|
|
1101
|
+
},
|
|
1092
1102
|
{
|
|
1093
1103
|
foreignKeyName: "activities_actor_id_fkey";
|
|
1094
1104
|
columns: ["actor_id"];
|
|
@@ -1176,6 +1186,7 @@ type Database = {
|
|
|
1176
1186
|
api_keys: {
|
|
1177
1187
|
Row: {
|
|
1178
1188
|
created_at: string | null;
|
|
1189
|
+
created_by: string | null;
|
|
1179
1190
|
id: string;
|
|
1180
1191
|
key_hash: string;
|
|
1181
1192
|
last_used_at: string | null;
|
|
@@ -1184,6 +1195,7 @@ type Database = {
|
|
|
1184
1195
|
};
|
|
1185
1196
|
Insert: {
|
|
1186
1197
|
created_at?: string | null;
|
|
1198
|
+
created_by?: string | null;
|
|
1187
1199
|
id?: string;
|
|
1188
1200
|
key_hash: string;
|
|
1189
1201
|
last_used_at?: string | null;
|
|
@@ -1192,6 +1204,7 @@ type Database = {
|
|
|
1192
1204
|
};
|
|
1193
1205
|
Update: {
|
|
1194
1206
|
created_at?: string | null;
|
|
1207
|
+
created_by?: string | null;
|
|
1195
1208
|
id?: string;
|
|
1196
1209
|
key_hash?: string;
|
|
1197
1210
|
last_used_at?: string | null;
|
|
@@ -1199,6 +1212,13 @@ type Database = {
|
|
|
1199
1212
|
organization_id?: string;
|
|
1200
1213
|
};
|
|
1201
1214
|
Relationships: [
|
|
1215
|
+
{
|
|
1216
|
+
foreignKeyName: "api_keys_created_by_fkey";
|
|
1217
|
+
columns: ["created_by"];
|
|
1218
|
+
isOneToOne: false;
|
|
1219
|
+
referencedRelation: "users";
|
|
1220
|
+
referencedColumns: ["id"];
|
|
1221
|
+
},
|
|
1202
1222
|
{
|
|
1203
1223
|
foreignKeyName: "api_keys_organization_id_fkey";
|
|
1204
1224
|
columns: ["organization_id"];
|
|
@@ -1526,6 +1546,7 @@ type Database = {
|
|
|
1526
1546
|
organization_id: string;
|
|
1527
1547
|
payload: Json;
|
|
1528
1548
|
source_execution_id: string | null;
|
|
1549
|
+
status: string;
|
|
1529
1550
|
step_key: string | null;
|
|
1530
1551
|
};
|
|
1531
1552
|
Insert: {
|
|
@@ -1537,6 +1558,7 @@ type Database = {
|
|
|
1537
1558
|
organization_id: string;
|
|
1538
1559
|
payload?: Json;
|
|
1539
1560
|
source_execution_id?: string | null;
|
|
1561
|
+
status: string;
|
|
1540
1562
|
step_key?: string | null;
|
|
1541
1563
|
};
|
|
1542
1564
|
Update: {
|
|
@@ -1548,6 +1570,7 @@ type Database = {
|
|
|
1548
1570
|
organization_id?: string;
|
|
1549
1571
|
payload?: Json;
|
|
1550
1572
|
source_execution_id?: string | null;
|
|
1573
|
+
status?: string;
|
|
1551
1574
|
step_key?: string | null;
|
|
1552
1575
|
};
|
|
1553
1576
|
Relationships: [
|
|
@@ -1699,6 +1722,7 @@ type Database = {
|
|
|
1699
1722
|
kind: string;
|
|
1700
1723
|
metadata: Json;
|
|
1701
1724
|
organization_id: string;
|
|
1725
|
+
payload: Json;
|
|
1702
1726
|
processing_state: Json;
|
|
1703
1727
|
storage_path: string | null;
|
|
1704
1728
|
title: string;
|
|
@@ -1712,6 +1736,7 @@ type Database = {
|
|
|
1712
1736
|
kind: string;
|
|
1713
1737
|
metadata?: Json;
|
|
1714
1738
|
organization_id: string;
|
|
1739
|
+
payload?: Json;
|
|
1715
1740
|
processing_state?: Json;
|
|
1716
1741
|
storage_path?: string | null;
|
|
1717
1742
|
title: string;
|
|
@@ -1725,6 +1750,7 @@ type Database = {
|
|
|
1725
1750
|
kind?: string;
|
|
1726
1751
|
metadata?: Json;
|
|
1727
1752
|
organization_id?: string;
|
|
1753
|
+
payload?: Json;
|
|
1728
1754
|
processing_state?: Json;
|
|
1729
1755
|
storage_path?: string | null;
|
|
1730
1756
|
title?: string;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings } from '../../chunk-SV4M2BUI.js';
|
|
2
2
|
import '../../chunk-ZFISGKYW.js';
|
|
3
|
-
import '../../chunk-
|
|
3
|
+
import '../../chunk-A3JHFZDP.js';
|
|
4
4
|
import '../../chunk-PDHTXPSF.js';
|
|
5
|
-
export { settingsManifest } from '../../chunk-
|
|
5
|
+
export { settingsManifest } from '../../chunk-KIDZXZM5.js';
|
|
6
6
|
import '../../chunk-R6NMRXNO.js';
|
|
7
7
|
import '../../chunk-RBGVNPA6.js';
|
|
8
8
|
import '../../chunk-MKH2KOAO.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-Z2W5VNN3.js';
|
|
10
10
|
import '../../chunk-L7BZZ4SI.js';
|
|
11
|
-
import '../../chunk-
|
|
11
|
+
import '../../chunk-XZIOCB5D.js';
|
|
12
12
|
import '../../chunk-MISHPEJX.js';
|
|
13
13
|
import '../../chunk-62GVNH5U.js';
|
|
14
14
|
import '../../chunk-P45GQ3ZW.js';
|
|
@@ -20,7 +20,7 @@ import '../../chunk-UD657ICS.js';
|
|
|
20
20
|
import '../../chunk-DD3CCMCZ.js';
|
|
21
21
|
import '../../chunk-RNP5R5I3.js';
|
|
22
22
|
import '../../chunk-RT4KRGZT.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-Q3O3WY7Q.js';
|
|
24
24
|
import '../../chunk-Y6I3IC45.js';
|
|
25
25
|
import '../../chunk-6SSQGWK7.js';
|
|
26
26
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { AccessKeys, useAccess } from '../../chunk-
|
|
1
|
+
export { AccessKeys, useAccess } from '../../chunk-KIDZXZM5.js';
|
|
2
2
|
import '../../chunk-R6NMRXNO.js';
|
|
3
3
|
import '../../chunk-RBGVNPA6.js';
|
|
4
4
|
import '../../chunk-MKH2KOAO.js';
|
|
5
|
-
import '../../chunk-
|
|
5
|
+
import '../../chunk-Z2W5VNN3.js';
|
|
6
6
|
import '../../chunk-L7BZZ4SI.js';
|
|
7
|
-
import '../../chunk-
|
|
7
|
+
import '../../chunk-XZIOCB5D.js';
|
|
8
8
|
import '../../chunk-MISHPEJX.js';
|
|
9
9
|
import '../../chunk-62GVNH5U.js';
|
|
10
10
|
import '../../chunk-P45GQ3ZW.js';
|
|
@@ -16,7 +16,7 @@ import '../../chunk-UD657ICS.js';
|
|
|
16
16
|
import '../../chunk-DD3CCMCZ.js';
|
|
17
17
|
import '../../chunk-RNP5R5I3.js';
|
|
18
18
|
import '../../chunk-RT4KRGZT.js';
|
|
19
|
-
import '../../chunk-
|
|
19
|
+
import '../../chunk-Q3O3WY7Q.js';
|
|
20
20
|
import '../../chunk-Y6I3IC45.js';
|
|
21
21
|
import '../../chunk-6SSQGWK7.js';
|
|
22
22
|
import '../../chunk-BI5VDO2K.js';
|
|
@@ -1040,6 +1040,7 @@ type Database = {
|
|
|
1040
1040
|
activities: {
|
|
1041
1041
|
Row: {
|
|
1042
1042
|
activity_type: string;
|
|
1043
|
+
actor_api_key_id: string | null;
|
|
1043
1044
|
actor_id: string | null;
|
|
1044
1045
|
actor_type: string | null;
|
|
1045
1046
|
created_at: string;
|
|
@@ -1056,6 +1057,7 @@ type Database = {
|
|
|
1056
1057
|
};
|
|
1057
1058
|
Insert: {
|
|
1058
1059
|
activity_type: string;
|
|
1060
|
+
actor_api_key_id?: string | null;
|
|
1059
1061
|
actor_id?: string | null;
|
|
1060
1062
|
actor_type?: string | null;
|
|
1061
1063
|
created_at?: string;
|
|
@@ -1072,6 +1074,7 @@ type Database = {
|
|
|
1072
1074
|
};
|
|
1073
1075
|
Update: {
|
|
1074
1076
|
activity_type?: string;
|
|
1077
|
+
actor_api_key_id?: string | null;
|
|
1075
1078
|
actor_id?: string | null;
|
|
1076
1079
|
actor_type?: string | null;
|
|
1077
1080
|
created_at?: string;
|
|
@@ -1087,6 +1090,13 @@ type Database = {
|
|
|
1087
1090
|
title?: string;
|
|
1088
1091
|
};
|
|
1089
1092
|
Relationships: [
|
|
1093
|
+
{
|
|
1094
|
+
foreignKeyName: "activities_actor_api_key_id_fkey";
|
|
1095
|
+
columns: ["actor_api_key_id"];
|
|
1096
|
+
isOneToOne: false;
|
|
1097
|
+
referencedRelation: "api_keys";
|
|
1098
|
+
referencedColumns: ["id"];
|
|
1099
|
+
},
|
|
1090
1100
|
{
|
|
1091
1101
|
foreignKeyName: "activities_actor_id_fkey";
|
|
1092
1102
|
columns: ["actor_id"];
|
|
@@ -1174,6 +1184,7 @@ type Database = {
|
|
|
1174
1184
|
api_keys: {
|
|
1175
1185
|
Row: {
|
|
1176
1186
|
created_at: string | null;
|
|
1187
|
+
created_by: string | null;
|
|
1177
1188
|
id: string;
|
|
1178
1189
|
key_hash: string;
|
|
1179
1190
|
last_used_at: string | null;
|
|
@@ -1182,6 +1193,7 @@ type Database = {
|
|
|
1182
1193
|
};
|
|
1183
1194
|
Insert: {
|
|
1184
1195
|
created_at?: string | null;
|
|
1196
|
+
created_by?: string | null;
|
|
1185
1197
|
id?: string;
|
|
1186
1198
|
key_hash: string;
|
|
1187
1199
|
last_used_at?: string | null;
|
|
@@ -1190,6 +1202,7 @@ type Database = {
|
|
|
1190
1202
|
};
|
|
1191
1203
|
Update: {
|
|
1192
1204
|
created_at?: string | null;
|
|
1205
|
+
created_by?: string | null;
|
|
1193
1206
|
id?: string;
|
|
1194
1207
|
key_hash?: string;
|
|
1195
1208
|
last_used_at?: string | null;
|
|
@@ -1197,6 +1210,13 @@ type Database = {
|
|
|
1197
1210
|
organization_id?: string;
|
|
1198
1211
|
};
|
|
1199
1212
|
Relationships: [
|
|
1213
|
+
{
|
|
1214
|
+
foreignKeyName: "api_keys_created_by_fkey";
|
|
1215
|
+
columns: ["created_by"];
|
|
1216
|
+
isOneToOne: false;
|
|
1217
|
+
referencedRelation: "users";
|
|
1218
|
+
referencedColumns: ["id"];
|
|
1219
|
+
},
|
|
1200
1220
|
{
|
|
1201
1221
|
foreignKeyName: "api_keys_organization_id_fkey";
|
|
1202
1222
|
columns: ["organization_id"];
|
|
@@ -1524,6 +1544,7 @@ type Database = {
|
|
|
1524
1544
|
organization_id: string;
|
|
1525
1545
|
payload: Json;
|
|
1526
1546
|
source_execution_id: string | null;
|
|
1547
|
+
status: string;
|
|
1527
1548
|
step_key: string | null;
|
|
1528
1549
|
};
|
|
1529
1550
|
Insert: {
|
|
@@ -1535,6 +1556,7 @@ type Database = {
|
|
|
1535
1556
|
organization_id: string;
|
|
1536
1557
|
payload?: Json;
|
|
1537
1558
|
source_execution_id?: string | null;
|
|
1559
|
+
status: string;
|
|
1538
1560
|
step_key?: string | null;
|
|
1539
1561
|
};
|
|
1540
1562
|
Update: {
|
|
@@ -1546,6 +1568,7 @@ type Database = {
|
|
|
1546
1568
|
organization_id?: string;
|
|
1547
1569
|
payload?: Json;
|
|
1548
1570
|
source_execution_id?: string | null;
|
|
1571
|
+
status?: string;
|
|
1549
1572
|
step_key?: string | null;
|
|
1550
1573
|
};
|
|
1551
1574
|
Relationships: [
|
|
@@ -1697,6 +1720,7 @@ type Database = {
|
|
|
1697
1720
|
kind: string;
|
|
1698
1721
|
metadata: Json;
|
|
1699
1722
|
organization_id: string;
|
|
1723
|
+
payload: Json;
|
|
1700
1724
|
processing_state: Json;
|
|
1701
1725
|
storage_path: string | null;
|
|
1702
1726
|
title: string;
|
|
@@ -1710,6 +1734,7 @@ type Database = {
|
|
|
1710
1734
|
kind: string;
|
|
1711
1735
|
metadata?: Json;
|
|
1712
1736
|
organization_id: string;
|
|
1737
|
+
payload?: Json;
|
|
1713
1738
|
processing_state?: Json;
|
|
1714
1739
|
storage_path?: string | null;
|
|
1715
1740
|
title: string;
|
|
@@ -1723,6 +1748,7 @@ type Database = {
|
|
|
1723
1748
|
kind?: string;
|
|
1724
1749
|
metadata?: Json;
|
|
1725
1750
|
organization_id?: string;
|
|
1751
|
+
payload?: Json;
|
|
1726
1752
|
processing_state?: Json;
|
|
1727
1753
|
storage_path?: string | null;
|
|
1728
1754
|
title?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
2
|
-
import '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-XZIOCB5D.js';
|
|
2
|
+
import '../../chunk-Q3O3WY7Q.js';
|
|
3
3
|
import '../../chunk-Y6I3IC45.js';
|
|
4
4
|
import '../../chunk-6SSQGWK7.js';
|
|
5
5
|
import '../../chunk-BI5VDO2K.js';
|