@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.
- package/dist/app/index.d.ts +26 -0
- package/dist/app/index.js +5 -5
- package/dist/auth/index.js +1 -1
- package/dist/charts/index.js +1 -1
- package/dist/{chunk-LWYLZUUV.js → chunk-3BLYJT5L.js} +2 -2
- package/dist/{chunk-QDMIFD6F.js → chunk-AIOV5NM7.js} +1 -1
- package/dist/{chunk-TJMZUL6E.js → chunk-BM2WKRAQ.js} +1 -1
- package/dist/{chunk-DUEGHF7A.js → chunk-CPBT6Z2G.js} +2 -2
- package/dist/{chunk-SMH6SQQE.js → chunk-DCMFNSJ6.js} +1 -1
- package/dist/{chunk-GJQF3S2Q.js → chunk-DH2MO5DX.js} +1 -1
- package/dist/{chunk-5C62IRKS.js → chunk-H3SDGC5F.js} +2 -2
- package/dist/{chunk-XKUEO4HG.js → chunk-JTSNU6KA.js} +2 -2
- package/dist/{chunk-LY3IKYTZ.js → chunk-LL5H7J4N.js} +1 -1
- package/dist/{chunk-AGX2CY2O.js → chunk-TB2PM2OU.js} +1 -1
- package/dist/{chunk-CCZJ4OWY.js → chunk-TCQZ4AJI.js} +1 -1
- package/dist/{chunk-GZADST64.js → chunk-TVFSVTRG.js} +5 -5
- package/dist/{chunk-6TT3FQEZ.js → chunk-UZ7MSORW.js} +101 -4
- package/dist/{chunk-MFCV4JMQ.js → chunk-VHPHWTX7.js} +2 -2
- package/dist/{chunk-JA2XDMAE.js → chunk-VRRIHA3S.js} +1 -1
- package/dist/components/index.d.ts +59 -3
- package/dist/components/index.js +19 -19
- package/dist/components/navigation/index.js +2 -2
- package/dist/features/auth/index.d.ts +26 -0
- package/dist/features/auth/index.js +3 -3
- package/dist/features/clients/index.js +2 -2
- package/dist/features/content/index.d.ts +95 -78
- package/dist/features/content/index.js +61 -19
- package/dist/features/crm/index.d.ts +26 -0
- package/dist/features/crm/index.js +3 -3
- package/dist/features/dashboard/index.js +3 -3
- package/dist/features/delivery/index.d.ts +26 -0
- package/dist/features/delivery/index.js +2 -2
- package/dist/features/knowledge/index.js +1 -1
- package/dist/features/lead-gen/index.js +3 -3
- package/dist/features/monitoring/index.d.ts +33 -3
- package/dist/features/monitoring/index.js +4 -4
- package/dist/features/monitoring/requests/index.js +2 -2
- package/dist/features/operations/index.js +6 -6
- package/dist/features/settings/index.d.ts +26 -0
- package/dist/features/settings/index.js +3 -3
- package/dist/hooks/access/index.js +1 -1
- package/dist/hooks/delivery/index.d.ts +26 -0
- package/dist/hooks/index.d.ts +301 -12
- package/dist/hooks/index.js +1 -1
- package/dist/hooks/published.d.ts +301 -12
- package/dist/hooks/published.js +1 -1
- package/dist/initialization/index.d.ts +26 -0
- package/dist/knowledge/index.js +5 -5
- package/dist/layout/index.js +4 -4
- package/dist/profile/index.d.ts +26 -0
- package/dist/provider/index.d.ts +26 -0
- package/dist/provider/index.js +1 -1
- package/dist/provider/published.d.ts +26 -0
- package/dist/provider/published.js +1 -1
- package/dist/supabase/index.d.ts +50 -0
- package/dist/types/index.d.ts +59 -3
- package/package.json +4 -4
|
@@ -1041,6 +1041,7 @@ type Database = {
|
|
|
1041
1041
|
activities: {
|
|
1042
1042
|
Row: {
|
|
1043
1043
|
activity_type: string;
|
|
1044
|
+
actor_api_key_id: string | null;
|
|
1044
1045
|
actor_id: string | null;
|
|
1045
1046
|
actor_type: string | null;
|
|
1046
1047
|
created_at: string;
|
|
@@ -1057,6 +1058,7 @@ type Database = {
|
|
|
1057
1058
|
};
|
|
1058
1059
|
Insert: {
|
|
1059
1060
|
activity_type: string;
|
|
1061
|
+
actor_api_key_id?: string | null;
|
|
1060
1062
|
actor_id?: string | null;
|
|
1061
1063
|
actor_type?: string | null;
|
|
1062
1064
|
created_at?: string;
|
|
@@ -1073,6 +1075,7 @@ type Database = {
|
|
|
1073
1075
|
};
|
|
1074
1076
|
Update: {
|
|
1075
1077
|
activity_type?: string;
|
|
1078
|
+
actor_api_key_id?: string | null;
|
|
1076
1079
|
actor_id?: string | null;
|
|
1077
1080
|
actor_type?: string | null;
|
|
1078
1081
|
created_at?: string;
|
|
@@ -1088,6 +1091,13 @@ type Database = {
|
|
|
1088
1091
|
title?: string;
|
|
1089
1092
|
};
|
|
1090
1093
|
Relationships: [
|
|
1094
|
+
{
|
|
1095
|
+
foreignKeyName: "activities_actor_api_key_id_fkey";
|
|
1096
|
+
columns: ["actor_api_key_id"];
|
|
1097
|
+
isOneToOne: false;
|
|
1098
|
+
referencedRelation: "api_keys";
|
|
1099
|
+
referencedColumns: ["id"];
|
|
1100
|
+
},
|
|
1091
1101
|
{
|
|
1092
1102
|
foreignKeyName: "activities_actor_id_fkey";
|
|
1093
1103
|
columns: ["actor_id"];
|
|
@@ -1175,6 +1185,7 @@ type Database = {
|
|
|
1175
1185
|
api_keys: {
|
|
1176
1186
|
Row: {
|
|
1177
1187
|
created_at: string | null;
|
|
1188
|
+
created_by: string | null;
|
|
1178
1189
|
id: string;
|
|
1179
1190
|
key_hash: string;
|
|
1180
1191
|
last_used_at: string | null;
|
|
@@ -1183,6 +1194,7 @@ type Database = {
|
|
|
1183
1194
|
};
|
|
1184
1195
|
Insert: {
|
|
1185
1196
|
created_at?: string | null;
|
|
1197
|
+
created_by?: string | null;
|
|
1186
1198
|
id?: string;
|
|
1187
1199
|
key_hash: string;
|
|
1188
1200
|
last_used_at?: string | null;
|
|
@@ -1191,6 +1203,7 @@ type Database = {
|
|
|
1191
1203
|
};
|
|
1192
1204
|
Update: {
|
|
1193
1205
|
created_at?: string | null;
|
|
1206
|
+
created_by?: string | null;
|
|
1194
1207
|
id?: string;
|
|
1195
1208
|
key_hash?: string;
|
|
1196
1209
|
last_used_at?: string | null;
|
|
@@ -1198,6 +1211,13 @@ type Database = {
|
|
|
1198
1211
|
organization_id?: string;
|
|
1199
1212
|
};
|
|
1200
1213
|
Relationships: [
|
|
1214
|
+
{
|
|
1215
|
+
foreignKeyName: "api_keys_created_by_fkey";
|
|
1216
|
+
columns: ["created_by"];
|
|
1217
|
+
isOneToOne: false;
|
|
1218
|
+
referencedRelation: "users";
|
|
1219
|
+
referencedColumns: ["id"];
|
|
1220
|
+
},
|
|
1201
1221
|
{
|
|
1202
1222
|
foreignKeyName: "api_keys_organization_id_fkey";
|
|
1203
1223
|
columns: ["organization_id"];
|
|
@@ -1525,6 +1545,7 @@ type Database = {
|
|
|
1525
1545
|
organization_id: string;
|
|
1526
1546
|
payload: Json;
|
|
1527
1547
|
source_execution_id: string | null;
|
|
1548
|
+
status: string;
|
|
1528
1549
|
step_key: string | null;
|
|
1529
1550
|
};
|
|
1530
1551
|
Insert: {
|
|
@@ -1536,6 +1557,7 @@ type Database = {
|
|
|
1536
1557
|
organization_id: string;
|
|
1537
1558
|
payload?: Json;
|
|
1538
1559
|
source_execution_id?: string | null;
|
|
1560
|
+
status: string;
|
|
1539
1561
|
step_key?: string | null;
|
|
1540
1562
|
};
|
|
1541
1563
|
Update: {
|
|
@@ -1547,6 +1569,7 @@ type Database = {
|
|
|
1547
1569
|
organization_id?: string;
|
|
1548
1570
|
payload?: Json;
|
|
1549
1571
|
source_execution_id?: string | null;
|
|
1572
|
+
status?: string;
|
|
1550
1573
|
step_key?: string | null;
|
|
1551
1574
|
};
|
|
1552
1575
|
Relationships: [
|
|
@@ -1698,6 +1721,7 @@ type Database = {
|
|
|
1698
1721
|
kind: string;
|
|
1699
1722
|
metadata: Json;
|
|
1700
1723
|
organization_id: string;
|
|
1724
|
+
payload: Json;
|
|
1701
1725
|
processing_state: Json;
|
|
1702
1726
|
storage_path: string | null;
|
|
1703
1727
|
title: string;
|
|
@@ -1711,6 +1735,7 @@ type Database = {
|
|
|
1711
1735
|
kind: string;
|
|
1712
1736
|
metadata?: Json;
|
|
1713
1737
|
organization_id: string;
|
|
1738
|
+
payload?: Json;
|
|
1714
1739
|
processing_state?: Json;
|
|
1715
1740
|
storage_path?: string | null;
|
|
1716
1741
|
title: string;
|
|
@@ -1724,6 +1749,7 @@ type Database = {
|
|
|
1724
1749
|
kind?: string;
|
|
1725
1750
|
metadata?: Json;
|
|
1726
1751
|
organization_id?: string;
|
|
1752
|
+
payload?: Json;
|
|
1727
1753
|
processing_state?: Json;
|
|
1728
1754
|
storage_path?: string | null;
|
|
1729
1755
|
title?: string;
|
package/dist/knowledge/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import '../chunk-
|
|
2
|
-
import '../chunk-
|
|
3
|
-
import '../chunk-
|
|
1
|
+
import '../chunk-DH2MO5DX.js';
|
|
2
|
+
import '../chunk-AIOV5NM7.js';
|
|
3
|
+
import '../chunk-DCMFNSJ6.js';
|
|
4
4
|
import { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
5
|
-
import { getConceptDefinition, normaliseConceptKey, SemanticIcon, getKnowledgeIconToken, getKnowledgeGraphNodeCommand, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, findOmTreeGroup, SubshellContentContainer, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, SurfaceDefinitionSchema, RoleSchema, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, buildKnowledgeOmTreeData, findKnowledgeTreeNodeByValue, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-
|
|
6
|
-
export { FILTERABLE_DOMAIN_KEYS, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, SemanticIcon, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent } from '../chunk-
|
|
5
|
+
import { getConceptDefinition, normaliseConceptKey, SemanticIcon, getKnowledgeIconToken, getKnowledgeGraphNodeCommand, IdentityDomainSchema, WorkflowResourceEntrySchema, AgentResourceEntrySchema, IntegrationResourceEntrySchema, ScriptResourceEntrySchema, findOmTreeGroup, SubshellContentContainer, getKnowledgeNodeReadCommand, getKnowledgeOntologyProjection, getPrimaryOntologyItemsForDomain, projectNavigationSurfaces, projectNavigationGroups, SurfaceDefinitionSchema, RoleSchema, getOntologyDomainLabel, getKnowledgeDomainFolderCommand, buildKnowledgeOmTreeData, findKnowledgeTreeNodeByValue, getKnowledgeTreeFolderCommand, KNOWLEDGE_DOMAINS_WITH_PANELS } from '../chunk-UZ7MSORW.js';
|
|
6
|
+
export { FILTERABLE_DOMAIN_KEYS, KNOWLEDGE_DOMAINS_WITH_PANELS, KNOWLEDGE_ICON_TOKEN_BY_KIND, KnowledgeSearchBar, KnowledgeTree, OM_NESTED_TREE_GROUPS, OM_TREE_GROUPS, SemanticIcon, buildKnowledgeOmTreeData, extendSemanticIconRegistry, findKnowledgeTreeNodeByValue, findOmTreeGroup, getKnowledgeIconToken, getSemanticIconComponent, getSharedOrganizationGraph, resolveSemanticIconComponent } from '../chunk-UZ7MSORW.js';
|
|
7
7
|
import { usePresetsContext } from '../chunk-R6NMRXNO.js';
|
|
8
8
|
import '../chunk-RBGVNPA6.js';
|
|
9
9
|
import '../chunk-MKH2KOAO.js';
|
package/dist/layout/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export { AppShellContainer, AppShellContentContainer, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, Sidebar, SidebarContext, SidebarProvider, SubshellNavList, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-
|
|
2
|
-
export { SubshellLoader } from '../chunk-
|
|
3
|
-
export { AppShellCenteredContainer, AppShellError, AppShellLoader } from '../chunk-
|
|
1
|
+
export { AppShellContainer, AppShellContentContainer, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, CollapsibleSidebarGroup, CyberParticles, LinksGroup, Sidebar, SidebarContext, SidebarProvider, SubshellNavList, Topbar, TopbarActions, TopbarContainer, Vignette, subsidebarWidth, useSidebar, useSidebarCollapse } from '../chunk-DH2MO5DX.js';
|
|
2
|
+
export { SubshellLoader } from '../chunk-AIOV5NM7.js';
|
|
3
|
+
export { AppShellCenteredContainer, AppShellError, AppShellLoader } from '../chunk-DCMFNSJ6.js';
|
|
4
4
|
export { PageContainer } from '../chunk-BZZCNLT6.js';
|
|
5
|
-
export { SubshellContainer, SubshellContentContainer, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader } from '../chunk-
|
|
5
|
+
export { SubshellContainer, SubshellContentContainer, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader } from '../chunk-UZ7MSORW.js';
|
|
6
6
|
import '../chunk-R6NMRXNO.js';
|
|
7
7
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from '../chunk-RBGVNPA6.js';
|
|
8
8
|
import '../chunk-MKH2KOAO.js';
|
package/dist/profile/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/provider/index.d.ts
CHANGED
|
@@ -1144,6 +1144,7 @@ type Database = {
|
|
|
1144
1144
|
activities: {
|
|
1145
1145
|
Row: {
|
|
1146
1146
|
activity_type: string;
|
|
1147
|
+
actor_api_key_id: string | null;
|
|
1147
1148
|
actor_id: string | null;
|
|
1148
1149
|
actor_type: string | null;
|
|
1149
1150
|
created_at: string;
|
|
@@ -1160,6 +1161,7 @@ type Database = {
|
|
|
1160
1161
|
};
|
|
1161
1162
|
Insert: {
|
|
1162
1163
|
activity_type: string;
|
|
1164
|
+
actor_api_key_id?: string | null;
|
|
1163
1165
|
actor_id?: string | null;
|
|
1164
1166
|
actor_type?: string | null;
|
|
1165
1167
|
created_at?: string;
|
|
@@ -1176,6 +1178,7 @@ type Database = {
|
|
|
1176
1178
|
};
|
|
1177
1179
|
Update: {
|
|
1178
1180
|
activity_type?: string;
|
|
1181
|
+
actor_api_key_id?: string | null;
|
|
1179
1182
|
actor_id?: string | null;
|
|
1180
1183
|
actor_type?: string | null;
|
|
1181
1184
|
created_at?: string;
|
|
@@ -1191,6 +1194,13 @@ type Database = {
|
|
|
1191
1194
|
title?: string;
|
|
1192
1195
|
};
|
|
1193
1196
|
Relationships: [
|
|
1197
|
+
{
|
|
1198
|
+
foreignKeyName: "activities_actor_api_key_id_fkey";
|
|
1199
|
+
columns: ["actor_api_key_id"];
|
|
1200
|
+
isOneToOne: false;
|
|
1201
|
+
referencedRelation: "api_keys";
|
|
1202
|
+
referencedColumns: ["id"];
|
|
1203
|
+
},
|
|
1194
1204
|
{
|
|
1195
1205
|
foreignKeyName: "activities_actor_id_fkey";
|
|
1196
1206
|
columns: ["actor_id"];
|
|
@@ -1278,6 +1288,7 @@ type Database = {
|
|
|
1278
1288
|
api_keys: {
|
|
1279
1289
|
Row: {
|
|
1280
1290
|
created_at: string | null;
|
|
1291
|
+
created_by: string | null;
|
|
1281
1292
|
id: string;
|
|
1282
1293
|
key_hash: string;
|
|
1283
1294
|
last_used_at: string | null;
|
|
@@ -1286,6 +1297,7 @@ type Database = {
|
|
|
1286
1297
|
};
|
|
1287
1298
|
Insert: {
|
|
1288
1299
|
created_at?: string | null;
|
|
1300
|
+
created_by?: string | null;
|
|
1289
1301
|
id?: string;
|
|
1290
1302
|
key_hash: string;
|
|
1291
1303
|
last_used_at?: string | null;
|
|
@@ -1294,6 +1306,7 @@ type Database = {
|
|
|
1294
1306
|
};
|
|
1295
1307
|
Update: {
|
|
1296
1308
|
created_at?: string | null;
|
|
1309
|
+
created_by?: string | null;
|
|
1297
1310
|
id?: string;
|
|
1298
1311
|
key_hash?: string;
|
|
1299
1312
|
last_used_at?: string | null;
|
|
@@ -1301,6 +1314,13 @@ type Database = {
|
|
|
1301
1314
|
organization_id?: string;
|
|
1302
1315
|
};
|
|
1303
1316
|
Relationships: [
|
|
1317
|
+
{
|
|
1318
|
+
foreignKeyName: "api_keys_created_by_fkey";
|
|
1319
|
+
columns: ["created_by"];
|
|
1320
|
+
isOneToOne: false;
|
|
1321
|
+
referencedRelation: "users";
|
|
1322
|
+
referencedColumns: ["id"];
|
|
1323
|
+
},
|
|
1304
1324
|
{
|
|
1305
1325
|
foreignKeyName: "api_keys_organization_id_fkey";
|
|
1306
1326
|
columns: ["organization_id"];
|
|
@@ -1628,6 +1648,7 @@ type Database = {
|
|
|
1628
1648
|
organization_id: string;
|
|
1629
1649
|
payload: Json;
|
|
1630
1650
|
source_execution_id: string | null;
|
|
1651
|
+
status: string;
|
|
1631
1652
|
step_key: string | null;
|
|
1632
1653
|
};
|
|
1633
1654
|
Insert: {
|
|
@@ -1639,6 +1660,7 @@ type Database = {
|
|
|
1639
1660
|
organization_id: string;
|
|
1640
1661
|
payload?: Json;
|
|
1641
1662
|
source_execution_id?: string | null;
|
|
1663
|
+
status: string;
|
|
1642
1664
|
step_key?: string | null;
|
|
1643
1665
|
};
|
|
1644
1666
|
Update: {
|
|
@@ -1650,6 +1672,7 @@ type Database = {
|
|
|
1650
1672
|
organization_id?: string;
|
|
1651
1673
|
payload?: Json;
|
|
1652
1674
|
source_execution_id?: string | null;
|
|
1675
|
+
status?: string;
|
|
1653
1676
|
step_key?: string | null;
|
|
1654
1677
|
};
|
|
1655
1678
|
Relationships: [
|
|
@@ -1801,6 +1824,7 @@ type Database = {
|
|
|
1801
1824
|
kind: string;
|
|
1802
1825
|
metadata: Json;
|
|
1803
1826
|
organization_id: string;
|
|
1827
|
+
payload: Json;
|
|
1804
1828
|
processing_state: Json;
|
|
1805
1829
|
storage_path: string | null;
|
|
1806
1830
|
title: string;
|
|
@@ -1814,6 +1838,7 @@ type Database = {
|
|
|
1814
1838
|
kind: string;
|
|
1815
1839
|
metadata?: Json;
|
|
1816
1840
|
organization_id: string;
|
|
1841
|
+
payload?: Json;
|
|
1817
1842
|
processing_state?: Json;
|
|
1818
1843
|
storage_path?: string | null;
|
|
1819
1844
|
title: string;
|
|
@@ -1827,6 +1852,7 @@ type Database = {
|
|
|
1827
1852
|
kind?: string;
|
|
1828
1853
|
metadata?: Json;
|
|
1829
1854
|
organization_id?: string;
|
|
1855
|
+
payload?: Json;
|
|
1830
1856
|
processing_state?: Json;
|
|
1831
1857
|
storage_path?: string | null;
|
|
1832
1858
|
title?: string;
|
package/dist/provider/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppearanceProvider, CrmActionsProvider, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, ListActionsProvider, NotificationProvider, SystemShell, createTestSystemsProvider, useAppearance, useCrmActions, useElevasisSystems, useListActions, useNotificationAdapter, useOptionalElevasisSystems, useResolvedOrganizationModel } from '../chunk-
|
|
1
|
+
export { AppearanceProvider, CrmActionsProvider, ElevasisCoreProvider, ElevasisSystemsProvider, ElevasisUIProvider, ListActionsProvider, NotificationProvider, SystemShell, createTestSystemsProvider, useAppearance, useCrmActions, useElevasisSystems, useListActions, useNotificationAdapter, useOptionalElevasisSystems, useResolvedOrganizationModel } from '../chunk-UZ7MSORW.js';
|
|
2
2
|
import '../chunk-R6NMRXNO.js';
|
|
3
3
|
import '../chunk-RBGVNPA6.js';
|
|
4
4
|
import '../chunk-MKH2KOAO.js';
|
|
@@ -1143,6 +1143,7 @@ type Database = {
|
|
|
1143
1143
|
activities: {
|
|
1144
1144
|
Row: {
|
|
1145
1145
|
activity_type: string;
|
|
1146
|
+
actor_api_key_id: string | null;
|
|
1146
1147
|
actor_id: string | null;
|
|
1147
1148
|
actor_type: string | null;
|
|
1148
1149
|
created_at: string;
|
|
@@ -1159,6 +1160,7 @@ type Database = {
|
|
|
1159
1160
|
};
|
|
1160
1161
|
Insert: {
|
|
1161
1162
|
activity_type: string;
|
|
1163
|
+
actor_api_key_id?: string | null;
|
|
1162
1164
|
actor_id?: string | null;
|
|
1163
1165
|
actor_type?: string | null;
|
|
1164
1166
|
created_at?: string;
|
|
@@ -1175,6 +1177,7 @@ type Database = {
|
|
|
1175
1177
|
};
|
|
1176
1178
|
Update: {
|
|
1177
1179
|
activity_type?: string;
|
|
1180
|
+
actor_api_key_id?: string | null;
|
|
1178
1181
|
actor_id?: string | null;
|
|
1179
1182
|
actor_type?: string | null;
|
|
1180
1183
|
created_at?: string;
|
|
@@ -1190,6 +1193,13 @@ type Database = {
|
|
|
1190
1193
|
title?: string;
|
|
1191
1194
|
};
|
|
1192
1195
|
Relationships: [
|
|
1196
|
+
{
|
|
1197
|
+
foreignKeyName: "activities_actor_api_key_id_fkey";
|
|
1198
|
+
columns: ["actor_api_key_id"];
|
|
1199
|
+
isOneToOne: false;
|
|
1200
|
+
referencedRelation: "api_keys";
|
|
1201
|
+
referencedColumns: ["id"];
|
|
1202
|
+
},
|
|
1193
1203
|
{
|
|
1194
1204
|
foreignKeyName: "activities_actor_id_fkey";
|
|
1195
1205
|
columns: ["actor_id"];
|
|
@@ -1277,6 +1287,7 @@ type Database = {
|
|
|
1277
1287
|
api_keys: {
|
|
1278
1288
|
Row: {
|
|
1279
1289
|
created_at: string | null;
|
|
1290
|
+
created_by: string | null;
|
|
1280
1291
|
id: string;
|
|
1281
1292
|
key_hash: string;
|
|
1282
1293
|
last_used_at: string | null;
|
|
@@ -1285,6 +1296,7 @@ type Database = {
|
|
|
1285
1296
|
};
|
|
1286
1297
|
Insert: {
|
|
1287
1298
|
created_at?: string | null;
|
|
1299
|
+
created_by?: string | null;
|
|
1288
1300
|
id?: string;
|
|
1289
1301
|
key_hash: string;
|
|
1290
1302
|
last_used_at?: string | null;
|
|
@@ -1293,6 +1305,7 @@ type Database = {
|
|
|
1293
1305
|
};
|
|
1294
1306
|
Update: {
|
|
1295
1307
|
created_at?: string | null;
|
|
1308
|
+
created_by?: string | null;
|
|
1296
1309
|
id?: string;
|
|
1297
1310
|
key_hash?: string;
|
|
1298
1311
|
last_used_at?: string | null;
|
|
@@ -1300,6 +1313,13 @@ type Database = {
|
|
|
1300
1313
|
organization_id?: string;
|
|
1301
1314
|
};
|
|
1302
1315
|
Relationships: [
|
|
1316
|
+
{
|
|
1317
|
+
foreignKeyName: "api_keys_created_by_fkey";
|
|
1318
|
+
columns: ["created_by"];
|
|
1319
|
+
isOneToOne: false;
|
|
1320
|
+
referencedRelation: "users";
|
|
1321
|
+
referencedColumns: ["id"];
|
|
1322
|
+
},
|
|
1303
1323
|
{
|
|
1304
1324
|
foreignKeyName: "api_keys_organization_id_fkey";
|
|
1305
1325
|
columns: ["organization_id"];
|
|
@@ -1627,6 +1647,7 @@ type Database = {
|
|
|
1627
1647
|
organization_id: string;
|
|
1628
1648
|
payload: Json;
|
|
1629
1649
|
source_execution_id: string | null;
|
|
1650
|
+
status: string;
|
|
1630
1651
|
step_key: string | null;
|
|
1631
1652
|
};
|
|
1632
1653
|
Insert: {
|
|
@@ -1638,6 +1659,7 @@ type Database = {
|
|
|
1638
1659
|
organization_id: string;
|
|
1639
1660
|
payload?: Json;
|
|
1640
1661
|
source_execution_id?: string | null;
|
|
1662
|
+
status: string;
|
|
1641
1663
|
step_key?: string | null;
|
|
1642
1664
|
};
|
|
1643
1665
|
Update: {
|
|
@@ -1649,6 +1671,7 @@ type Database = {
|
|
|
1649
1671
|
organization_id?: string;
|
|
1650
1672
|
payload?: Json;
|
|
1651
1673
|
source_execution_id?: string | null;
|
|
1674
|
+
status?: string;
|
|
1652
1675
|
step_key?: string | null;
|
|
1653
1676
|
};
|
|
1654
1677
|
Relationships: [
|
|
@@ -1800,6 +1823,7 @@ type Database = {
|
|
|
1800
1823
|
kind: string;
|
|
1801
1824
|
metadata: Json;
|
|
1802
1825
|
organization_id: string;
|
|
1826
|
+
payload: Json;
|
|
1803
1827
|
processing_state: Json;
|
|
1804
1828
|
storage_path: string | null;
|
|
1805
1829
|
title: string;
|
|
@@ -1813,6 +1837,7 @@ type Database = {
|
|
|
1813
1837
|
kind: string;
|
|
1814
1838
|
metadata?: Json;
|
|
1815
1839
|
organization_id: string;
|
|
1840
|
+
payload?: Json;
|
|
1816
1841
|
processing_state?: Json;
|
|
1817
1842
|
storage_path?: string | null;
|
|
1818
1843
|
title: string;
|
|
@@ -1826,6 +1851,7 @@ type Database = {
|
|
|
1826
1851
|
kind?: string;
|
|
1827
1852
|
metadata?: Json;
|
|
1828
1853
|
organization_id?: string;
|
|
1854
|
+
payload?: Json;
|
|
1829
1855
|
processing_state?: Json;
|
|
1830
1856
|
storage_path?: string | null;
|
|
1831
1857
|
title?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-
|
|
1
|
+
export { AppearanceProvider, ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useAppearance, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-UZ7MSORW.js';
|
|
2
2
|
import '../chunk-R6NMRXNO.js';
|
|
3
3
|
import '../chunk-RBGVNPA6.js';
|
|
4
4
|
import '../chunk-MKH2KOAO.js';
|