@elevasis/ui 2.70.0 → 2.71.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 (57) hide show
  1. package/dist/app/index.d.ts +26 -0
  2. package/dist/app/index.js +5 -5
  3. package/dist/auth/index.js +1 -1
  4. package/dist/charts/index.js +1 -1
  5. package/dist/{chunk-LWYLZUUV.js → chunk-3BLYJT5L.js} +2 -2
  6. package/dist/{chunk-QDMIFD6F.js → chunk-AIOV5NM7.js} +1 -1
  7. package/dist/{chunk-TJMZUL6E.js → chunk-BM2WKRAQ.js} +1 -1
  8. package/dist/{chunk-DUEGHF7A.js → chunk-CPBT6Z2G.js} +2 -2
  9. package/dist/{chunk-SMH6SQQE.js → chunk-DCMFNSJ6.js} +1 -1
  10. package/dist/{chunk-GJQF3S2Q.js → chunk-DH2MO5DX.js} +1 -1
  11. package/dist/{chunk-5C62IRKS.js → chunk-H3SDGC5F.js} +2 -2
  12. package/dist/{chunk-XKUEO4HG.js → chunk-JTSNU6KA.js} +2 -2
  13. package/dist/{chunk-LY3IKYTZ.js → chunk-LL5H7J4N.js} +1 -1
  14. package/dist/{chunk-AGX2CY2O.js → chunk-TB2PM2OU.js} +1 -1
  15. package/dist/{chunk-CCZJ4OWY.js → chunk-TCQZ4AJI.js} +1 -1
  16. package/dist/{chunk-GZADST64.js → chunk-TVFSVTRG.js} +5 -5
  17. package/dist/{chunk-6TT3FQEZ.js → chunk-UZ7MSORW.js} +101 -4
  18. package/dist/{chunk-MFCV4JMQ.js → chunk-VHPHWTX7.js} +2 -2
  19. package/dist/{chunk-JA2XDMAE.js → chunk-VRRIHA3S.js} +1 -1
  20. package/dist/components/index.d.ts +59 -3
  21. package/dist/components/index.js +19 -19
  22. package/dist/components/navigation/index.js +2 -2
  23. package/dist/features/auth/index.d.ts +26 -0
  24. package/dist/features/auth/index.js +3 -3
  25. package/dist/features/clients/index.js +2 -2
  26. package/dist/features/content/index.d.ts +95 -78
  27. package/dist/features/content/index.js +61 -19
  28. package/dist/features/crm/index.d.ts +26 -0
  29. package/dist/features/crm/index.js +3 -3
  30. package/dist/features/dashboard/index.js +3 -3
  31. package/dist/features/delivery/index.d.ts +26 -0
  32. package/dist/features/delivery/index.js +2 -2
  33. package/dist/features/knowledge/index.js +1 -1
  34. package/dist/features/lead-gen/index.js +3 -3
  35. package/dist/features/monitoring/index.d.ts +33 -3
  36. package/dist/features/monitoring/index.js +4 -4
  37. package/dist/features/monitoring/requests/index.js +2 -2
  38. package/dist/features/operations/index.js +6 -6
  39. package/dist/features/settings/index.d.ts +26 -0
  40. package/dist/features/settings/index.js +3 -3
  41. package/dist/hooks/access/index.js +1 -1
  42. package/dist/hooks/delivery/index.d.ts +26 -0
  43. package/dist/hooks/index.d.ts +301 -12
  44. package/dist/hooks/index.js +1 -1
  45. package/dist/hooks/published.d.ts +301 -12
  46. package/dist/hooks/published.js +1 -1
  47. package/dist/initialization/index.d.ts +26 -0
  48. package/dist/knowledge/index.js +5 -5
  49. package/dist/layout/index.js +4 -4
  50. package/dist/profile/index.d.ts +26 -0
  51. package/dist/provider/index.d.ts +26 -0
  52. package/dist/provider/index.js +1 -1
  53. package/dist/provider/published.d.ts +26 -0
  54. package/dist/provider/published.js +1 -1
  55. package/dist/supabase/index.d.ts +50 -0
  56. package/dist/types/index.d.ts +59 -3
  57. package/package.json +4 -4
@@ -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,8 +1,8 @@
1
- export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings } from '../../chunk-DUEGHF7A.js';
1
+ export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings } from '../../chunk-CPBT6Z2G.js';
2
2
  import '../../chunk-ZFISGKYW.js';
3
- import '../../chunk-SMH6SQQE.js';
3
+ import '../../chunk-DCMFNSJ6.js';
4
4
  import '../../chunk-PDHTXPSF.js';
5
- export { settingsManifest } from '../../chunk-6TT3FQEZ.js';
5
+ export { settingsManifest } from '../../chunk-UZ7MSORW.js';
6
6
  import '../../chunk-R6NMRXNO.js';
7
7
  import '../../chunk-RBGVNPA6.js';
8
8
  import '../../chunk-MKH2KOAO.js';
@@ -1,4 +1,4 @@
1
- export { AccessKeys, useAccess } from '../../chunk-6TT3FQEZ.js';
1
+ export { AccessKeys, useAccess } from '../../chunk-UZ7MSORW.js';
2
2
  import '../../chunk-R6NMRXNO.js';
3
3
  import '../../chunk-RBGVNPA6.js';
4
4
  import '../../chunk-MKH2KOAO.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;