@elevasis/ui 2.33.0 → 2.33.1
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 +3 -0
- package/dist/app/index.js +3 -3
- package/dist/{chunk-IUKFNASA.js → chunk-2VYMDNJ3.js} +1 -1
- package/dist/{chunk-XOFSMJLF.js → chunk-3YZRKADM.js} +4 -4
- package/dist/{chunk-QNOVUCSV.js → chunk-4AAZXKLL.js} +1 -1
- package/dist/{chunk-E7C4XEWH.js → chunk-53436UTQ.js} +1 -1
- package/dist/{chunk-YAQ25UNM.js → chunk-AV2TKVVV.js} +7 -2
- package/dist/{chunk-GNRMB6DC.js → chunk-DYIDXUJS.js} +160 -13
- package/dist/{chunk-MHLZ4F4N.js → chunk-F3MXFE72.js} +1 -1
- package/dist/{chunk-AHCKOU2M.js → chunk-FOUYP4JX.js} +1 -1
- package/dist/{chunk-XG57WXOL.js → chunk-H6EFQP2P.js} +1 -1
- package/dist/{chunk-E4T2N7P7.js → chunk-KW7ZNQD7.js} +4 -2
- package/dist/{chunk-UVFOURXR.js → chunk-NCEQGEW5.js} +4 -4
- package/dist/{chunk-FFPHJBJC.js → chunk-PIS24NIV.js} +1 -1
- package/dist/{chunk-52NLZN6Z.js → chunk-QVTIOT73.js} +2 -2
- package/dist/{chunk-2GMF5IRF.js → chunk-SWMQTF2H.js} +2 -2
- package/dist/{chunk-TKF5S4XP.js → chunk-UNVRVCXZ.js} +1 -1
- package/dist/{chunk-NOIRGGW2.js → chunk-UYRT7SPM.js} +1 -1
- package/dist/{chunk-UW7IV2Y3.js → chunk-WGUEIGPC.js} +1 -1
- package/dist/{chunk-ZGTDKH3P.js → chunk-WJOE76FI.js} +1 -1
- package/dist/{chunk-JHT5JIJ3.js → chunk-YENKDBUU.js} +7 -7
- package/dist/components/index.d.ts +7 -3
- package/dist/components/index.js +21 -21
- package/dist/components/navigation/index.js +3 -3
- package/dist/execution/index.d.ts +4 -3
- package/dist/features/auth/index.d.ts +3 -0
- package/dist/features/clients/index.js +7 -7
- package/dist/features/crm/index.d.ts +3 -0
- package/dist/features/crm/index.js +9 -9
- package/dist/features/dashboard/index.d.ts +4 -3
- package/dist/features/dashboard/index.js +8 -8
- package/dist/features/delivery/index.d.ts +3 -0
- package/dist/features/delivery/index.js +8 -8
- package/dist/features/knowledge/index.js +4 -4
- package/dist/features/lead-gen/index.js +9 -9
- package/dist/features/monitoring/index.js +9 -9
- package/dist/features/monitoring/requests/index.js +7 -7
- package/dist/features/operations/index.d.ts +131 -33
- package/dist/features/operations/index.js +11 -11
- package/dist/features/settings/index.d.ts +3 -0
- package/dist/features/settings/index.js +8 -8
- package/dist/hooks/delivery/index.d.ts +3 -0
- package/dist/hooks/index.d.ts +23 -8
- package/dist/hooks/index.js +7 -7
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +20 -8
- package/dist/hooks/published.d.ts +23 -8
- package/dist/hooks/published.js +7 -7
- package/dist/index.d.ts +134 -33
- package/dist/index.js +7 -7
- package/dist/initialization/index.d.ts +3 -0
- package/dist/knowledge/index.d.ts +92 -6
- package/dist/knowledge/index.js +4 -5
- package/dist/profile/index.d.ts +3 -0
- package/dist/provider/index.d.ts +94 -5
- package/dist/provider/index.js +6 -6
- package/dist/provider/published.d.ts +94 -5
- package/dist/provider/published.js +4 -4
- package/dist/supabase/index.d.ts +6 -0
- package/dist/types/index.d.ts +23 -8
- package/dist/utils/index.d.ts +4 -3
- package/package.json +4 -4
|
@@ -1699,6 +1699,7 @@ type Database = {
|
|
|
1699
1699
|
origin_execution_id: string | null;
|
|
1700
1700
|
output: Json | null;
|
|
1701
1701
|
resource_id: string;
|
|
1702
|
+
resource_snapshot: Json | null;
|
|
1702
1703
|
resource_status: string;
|
|
1703
1704
|
resource_type: string;
|
|
1704
1705
|
resource_version: string | null;
|
|
@@ -1724,6 +1725,7 @@ type Database = {
|
|
|
1724
1725
|
origin_execution_id?: string | null;
|
|
1725
1726
|
output?: Json | null;
|
|
1726
1727
|
resource_id: string;
|
|
1728
|
+
resource_snapshot?: Json | null;
|
|
1727
1729
|
resource_status?: string;
|
|
1728
1730
|
resource_type?: string;
|
|
1729
1731
|
resource_version?: string | null;
|
|
@@ -1749,6 +1751,7 @@ type Database = {
|
|
|
1749
1751
|
origin_execution_id?: string | null;
|
|
1750
1752
|
output?: Json | null;
|
|
1751
1753
|
resource_id?: string;
|
|
1754
|
+
resource_snapshot?: Json | null;
|
|
1752
1755
|
resource_status?: string;
|
|
1753
1756
|
resource_type?: string;
|
|
1754
1757
|
resource_version?: string | null;
|
|
@@ -3562,6 +3565,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3562
3565
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3563
3566
|
lastModified: z$1.ZodString;
|
|
3564
3567
|
}, z$1.core.$strip>>;
|
|
3568
|
+
topology: z$1.ZodOptional<z$1.ZodObject<{
|
|
3569
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3570
|
+
lastModified: z$1.ZodString;
|
|
3571
|
+
}, z$1.core.$strip>>;
|
|
3565
3572
|
actions: z$1.ZodOptional<z$1.ZodObject<{
|
|
3566
3573
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
3567
3574
|
lastModified: z$1.ZodString;
|
|
@@ -3615,6 +3622,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3615
3622
|
version: 1;
|
|
3616
3623
|
lastModified: string;
|
|
3617
3624
|
};
|
|
3625
|
+
topology: {
|
|
3626
|
+
version: 1;
|
|
3627
|
+
lastModified: string;
|
|
3628
|
+
};
|
|
3618
3629
|
actions: {
|
|
3619
3630
|
version: 1;
|
|
3620
3631
|
lastModified: string;
|
|
@@ -3668,6 +3679,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3668
3679
|
version: 1;
|
|
3669
3680
|
lastModified: string;
|
|
3670
3681
|
} | undefined;
|
|
3682
|
+
topology?: {
|
|
3683
|
+
version: 1;
|
|
3684
|
+
lastModified: string;
|
|
3685
|
+
} | undefined;
|
|
3671
3686
|
actions?: {
|
|
3672
3687
|
version: 1;
|
|
3673
3688
|
lastModified: string;
|
|
@@ -3911,6 +3926,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3911
3926
|
id: z$1.ZodString;
|
|
3912
3927
|
order: z$1.ZodDefault<z$1.ZodNumber>;
|
|
3913
3928
|
systemPath: z$1.ZodString;
|
|
3929
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
3930
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3914
3931
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
3915
3932
|
status: z$1.ZodEnum<{
|
|
3916
3933
|
deprecated: "deprecated";
|
|
@@ -3918,7 +3935,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3918
3935
|
archived: "archived";
|
|
3919
3936
|
}>;
|
|
3920
3937
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
3921
|
-
|
|
3938
|
+
actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3939
|
+
primaryAction: z$1.ZodOptional<z$1.ZodString>;
|
|
3922
3940
|
reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3923
3941
|
writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3924
3942
|
usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -3938,7 +3956,6 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3938
3956
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3939
3957
|
}, z$1.core.$strip>>>;
|
|
3940
3958
|
kind: z$1.ZodLiteral<"workflow">;
|
|
3941
|
-
actionKey: z$1.ZodOptional<z$1.ZodString>;
|
|
3942
3959
|
emits: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
3943
3960
|
eventKey: z$1.ZodString;
|
|
3944
3961
|
label: z$1.ZodString;
|
|
@@ -3955,6 +3972,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3955
3972
|
id: z$1.ZodString;
|
|
3956
3973
|
order: z$1.ZodDefault<z$1.ZodNumber>;
|
|
3957
3974
|
systemPath: z$1.ZodString;
|
|
3975
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
3976
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3958
3977
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
3959
3978
|
status: z$1.ZodEnum<{
|
|
3960
3979
|
deprecated: "deprecated";
|
|
@@ -3962,7 +3981,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3962
3981
|
archived: "archived";
|
|
3963
3982
|
}>;
|
|
3964
3983
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
3965
|
-
|
|
3984
|
+
actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3985
|
+
primaryAction: z$1.ZodOptional<z$1.ZodString>;
|
|
3966
3986
|
reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3967
3987
|
writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
3968
3988
|
usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -4029,6 +4049,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4029
4049
|
id: z$1.ZodString;
|
|
4030
4050
|
order: z$1.ZodDefault<z$1.ZodNumber>;
|
|
4031
4051
|
systemPath: z$1.ZodString;
|
|
4052
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
4053
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
4032
4054
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
4033
4055
|
status: z$1.ZodEnum<{
|
|
4034
4056
|
deprecated: "deprecated";
|
|
@@ -4036,7 +4058,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4036
4058
|
archived: "archived";
|
|
4037
4059
|
}>;
|
|
4038
4060
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
4039
|
-
|
|
4061
|
+
actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4062
|
+
primaryAction: z$1.ZodOptional<z$1.ZodString>;
|
|
4040
4063
|
reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4041
4064
|
writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4042
4065
|
usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -4061,6 +4084,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4061
4084
|
id: z$1.ZodString;
|
|
4062
4085
|
order: z$1.ZodDefault<z$1.ZodNumber>;
|
|
4063
4086
|
systemPath: z$1.ZodString;
|
|
4087
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
4088
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
4064
4089
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
4065
4090
|
status: z$1.ZodEnum<{
|
|
4066
4091
|
deprecated: "deprecated";
|
|
@@ -4068,7 +4093,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4068
4093
|
archived: "archived";
|
|
4069
4094
|
}>;
|
|
4070
4095
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
4071
|
-
|
|
4096
|
+
actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4097
|
+
primaryAction: z$1.ZodOptional<z$1.ZodString>;
|
|
4072
4098
|
reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4073
4099
|
writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
4074
4100
|
usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
@@ -4098,6 +4124,69 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4098
4124
|
file: z$1.ZodString;
|
|
4099
4125
|
}, z$1.core.$strip>]>;
|
|
4100
4126
|
}, z$1.core.$strip>], "kind">>>>;
|
|
4127
|
+
topology: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodObject<{
|
|
4128
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
4129
|
+
relationships: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4130
|
+
from: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
4131
|
+
kind: z$1.ZodLiteral<"system">;
|
|
4132
|
+
id: z$1.ZodString;
|
|
4133
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4134
|
+
kind: z$1.ZodLiteral<"resource">;
|
|
4135
|
+
id: z$1.ZodString;
|
|
4136
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4137
|
+
kind: z$1.ZodLiteral<"ontology">;
|
|
4138
|
+
id: z$1.ZodString;
|
|
4139
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4140
|
+
kind: z$1.ZodLiteral<"policy">;
|
|
4141
|
+
id: z$1.ZodString;
|
|
4142
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4143
|
+
kind: z$1.ZodLiteral<"role">;
|
|
4144
|
+
id: z$1.ZodString;
|
|
4145
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4146
|
+
kind: z$1.ZodLiteral<"trigger">;
|
|
4147
|
+
id: z$1.ZodString;
|
|
4148
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4149
|
+
kind: z$1.ZodLiteral<"humanCheckpoint">;
|
|
4150
|
+
id: z$1.ZodString;
|
|
4151
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4152
|
+
kind: z$1.ZodLiteral<"externalResource">;
|
|
4153
|
+
id: z$1.ZodString;
|
|
4154
|
+
}, z$1.core.$strip>], "kind">;
|
|
4155
|
+
kind: z$1.ZodEnum<{
|
|
4156
|
+
triggers: "triggers";
|
|
4157
|
+
uses: "uses";
|
|
4158
|
+
approval: "approval";
|
|
4159
|
+
}>;
|
|
4160
|
+
to: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
|
|
4161
|
+
kind: z$1.ZodLiteral<"system">;
|
|
4162
|
+
id: z$1.ZodString;
|
|
4163
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4164
|
+
kind: z$1.ZodLiteral<"resource">;
|
|
4165
|
+
id: z$1.ZodString;
|
|
4166
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4167
|
+
kind: z$1.ZodLiteral<"ontology">;
|
|
4168
|
+
id: z$1.ZodString;
|
|
4169
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4170
|
+
kind: z$1.ZodLiteral<"policy">;
|
|
4171
|
+
id: z$1.ZodString;
|
|
4172
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4173
|
+
kind: z$1.ZodLiteral<"role">;
|
|
4174
|
+
id: z$1.ZodString;
|
|
4175
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4176
|
+
kind: z$1.ZodLiteral<"trigger">;
|
|
4177
|
+
id: z$1.ZodString;
|
|
4178
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4179
|
+
kind: z$1.ZodLiteral<"humanCheckpoint">;
|
|
4180
|
+
id: z$1.ZodString;
|
|
4181
|
+
}, z$1.core.$strip>, z$1.ZodObject<{
|
|
4182
|
+
kind: z$1.ZodLiteral<"externalResource">;
|
|
4183
|
+
id: z$1.ZodString;
|
|
4184
|
+
}, z$1.core.$strip>], "kind">;
|
|
4185
|
+
systemPath: z$1.ZodOptional<z$1.ZodString>;
|
|
4186
|
+
required: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
4187
|
+
metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
4188
|
+
}, z$1.core.$strip>>>;
|
|
4189
|
+
}, z$1.core.$strip>>>;
|
|
4101
4190
|
actions: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
4102
4191
|
id: z$1.ZodString;
|
|
4103
4192
|
order: z$1.ZodNumber;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export { SystemShell } from '../chunk-
|
|
1
|
+
export { SystemShell } from '../chunk-PIS24NIV.js';
|
|
2
2
|
import '../chunk-EPTHX4VZ.js';
|
|
3
3
|
import '../chunk-3KMDHCAR.js';
|
|
4
|
-
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-
|
|
4
|
+
export { ElevasisCoreProvider, NotificationProvider, useNotificationAdapter } from '../chunk-WGUEIGPC.js';
|
|
5
5
|
import '../chunk-SZHARWKU.js';
|
|
6
|
-
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from '../chunk-
|
|
6
|
+
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from '../chunk-WJOE76FI.js';
|
|
7
7
|
import '../chunk-TKAYX2SP.js';
|
|
8
8
|
import '../chunk-NYBEU5TE.js';
|
|
9
9
|
import '../chunk-DWXDNT7P.js';
|
|
10
|
-
import '../chunk-
|
|
10
|
+
import '../chunk-DYIDXUJS.js';
|
|
11
11
|
import '../chunk-ND5TDV2J.js';
|
|
12
12
|
import '../chunk-2IFYDILW.js';
|
|
13
13
|
import '../chunk-Q7DJKLEN.js';
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -1597,6 +1597,7 @@ type Database = {
|
|
|
1597
1597
|
origin_execution_id: string | null;
|
|
1598
1598
|
output: Json | null;
|
|
1599
1599
|
resource_id: string;
|
|
1600
|
+
resource_snapshot: Json | null;
|
|
1600
1601
|
resource_status: string;
|
|
1601
1602
|
resource_type: string;
|
|
1602
1603
|
resource_version: string | null;
|
|
@@ -1622,6 +1623,7 @@ type Database = {
|
|
|
1622
1623
|
origin_execution_id?: string | null;
|
|
1623
1624
|
output?: Json | null;
|
|
1624
1625
|
resource_id: string;
|
|
1626
|
+
resource_snapshot?: Json | null;
|
|
1625
1627
|
resource_status?: string;
|
|
1626
1628
|
resource_type?: string;
|
|
1627
1629
|
resource_version?: string | null;
|
|
@@ -1647,6 +1649,7 @@ type Database = {
|
|
|
1647
1649
|
origin_execution_id?: string | null;
|
|
1648
1650
|
output?: Json | null;
|
|
1649
1651
|
resource_id?: string;
|
|
1652
|
+
resource_snapshot?: Json | null;
|
|
1650
1653
|
resource_status?: string;
|
|
1651
1654
|
resource_type?: string;
|
|
1652
1655
|
resource_version?: string | null;
|
|
@@ -4605,6 +4608,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4605
4608
|
origin_execution_id: string | null;
|
|
4606
4609
|
output: Json | null;
|
|
4607
4610
|
resource_id: string;
|
|
4611
|
+
resource_snapshot: Json | null;
|
|
4608
4612
|
resource_status: string;
|
|
4609
4613
|
resource_type: string;
|
|
4610
4614
|
resource_version: string | null;
|
|
@@ -4630,6 +4634,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4630
4634
|
origin_execution_id?: string | null;
|
|
4631
4635
|
output?: Json | null;
|
|
4632
4636
|
resource_id: string;
|
|
4637
|
+
resource_snapshot?: Json | null;
|
|
4633
4638
|
resource_status?: string;
|
|
4634
4639
|
resource_type?: string;
|
|
4635
4640
|
resource_version?: string | null;
|
|
@@ -4655,6 +4660,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
4655
4660
|
origin_execution_id?: string | null;
|
|
4656
4661
|
output?: Json | null;
|
|
4657
4662
|
resource_id?: string;
|
|
4663
|
+
resource_snapshot?: Json | null;
|
|
4658
4664
|
resource_status?: string;
|
|
4659
4665
|
resource_type?: string;
|
|
4660
4666
|
resource_version?: string | null;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -420,6 +420,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
420
420
|
id: z.ZodString;
|
|
421
421
|
order: z.ZodDefault<z.ZodNumber>;
|
|
422
422
|
systemPath: z.ZodString;
|
|
423
|
+
title: z.ZodOptional<z.ZodString>;
|
|
424
|
+
description: z.ZodOptional<z.ZodString>;
|
|
423
425
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
424
426
|
status: z.ZodEnum<{
|
|
425
427
|
deprecated: "deprecated";
|
|
@@ -427,7 +429,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
427
429
|
archived: "archived";
|
|
428
430
|
}>;
|
|
429
431
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
430
|
-
|
|
432
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
433
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
431
434
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
432
435
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
433
436
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -447,7 +450,6 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
447
450
|
description: z.ZodOptional<z.ZodString>;
|
|
448
451
|
}, z.core.$strip>>>;
|
|
449
452
|
kind: z.ZodLiteral<"workflow">;
|
|
450
|
-
actionKey: z.ZodOptional<z.ZodString>;
|
|
451
453
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
452
454
|
eventKey: z.ZodString;
|
|
453
455
|
label: z.ZodString;
|
|
@@ -464,6 +466,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
464
466
|
id: z.ZodString;
|
|
465
467
|
order: z.ZodDefault<z.ZodNumber>;
|
|
466
468
|
systemPath: z.ZodString;
|
|
469
|
+
title: z.ZodOptional<z.ZodString>;
|
|
470
|
+
description: z.ZodOptional<z.ZodString>;
|
|
467
471
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
468
472
|
status: z.ZodEnum<{
|
|
469
473
|
deprecated: "deprecated";
|
|
@@ -471,7 +475,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
471
475
|
archived: "archived";
|
|
472
476
|
}>;
|
|
473
477
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
474
|
-
|
|
478
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
479
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
475
480
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
476
481
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
477
482
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -538,6 +543,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
538
543
|
id: z.ZodString;
|
|
539
544
|
order: z.ZodDefault<z.ZodNumber>;
|
|
540
545
|
systemPath: z.ZodString;
|
|
546
|
+
title: z.ZodOptional<z.ZodString>;
|
|
547
|
+
description: z.ZodOptional<z.ZodString>;
|
|
541
548
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
542
549
|
status: z.ZodEnum<{
|
|
543
550
|
deprecated: "deprecated";
|
|
@@ -545,7 +552,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
545
552
|
archived: "archived";
|
|
546
553
|
}>;
|
|
547
554
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
548
|
-
|
|
555
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
556
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
549
557
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
550
558
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
551
559
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -570,6 +578,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
570
578
|
id: z.ZodString;
|
|
571
579
|
order: z.ZodDefault<z.ZodNumber>;
|
|
572
580
|
systemPath: z.ZodString;
|
|
581
|
+
title: z.ZodOptional<z.ZodString>;
|
|
582
|
+
description: z.ZodOptional<z.ZodString>;
|
|
573
583
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
574
584
|
status: z.ZodEnum<{
|
|
575
585
|
deprecated: "deprecated";
|
|
@@ -577,7 +587,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
577
587
|
archived: "archived";
|
|
578
588
|
}>;
|
|
579
589
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
580
|
-
|
|
590
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
591
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
581
592
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
582
593
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
583
594
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2324,6 +2335,7 @@ type Database = {
|
|
|
2324
2335
|
origin_execution_id: string | null;
|
|
2325
2336
|
output: Json | null;
|
|
2326
2337
|
resource_id: string;
|
|
2338
|
+
resource_snapshot: Json | null;
|
|
2327
2339
|
resource_status: string;
|
|
2328
2340
|
resource_type: string;
|
|
2329
2341
|
resource_version: string | null;
|
|
@@ -2349,6 +2361,7 @@ type Database = {
|
|
|
2349
2361
|
origin_execution_id?: string | null;
|
|
2350
2362
|
output?: Json | null;
|
|
2351
2363
|
resource_id: string;
|
|
2364
|
+
resource_snapshot?: Json | null;
|
|
2352
2365
|
resource_status?: string;
|
|
2353
2366
|
resource_type?: string;
|
|
2354
2367
|
resource_version?: string | null;
|
|
@@ -2374,6 +2387,7 @@ type Database = {
|
|
|
2374
2387
|
origin_execution_id?: string | null;
|
|
2375
2388
|
output?: Json | null;
|
|
2376
2389
|
resource_id?: string;
|
|
2390
|
+
resource_snapshot?: Json | null;
|
|
2377
2391
|
resource_status?: string;
|
|
2378
2392
|
resource_type?: string;
|
|
2379
2393
|
resource_version?: string | null;
|
|
@@ -5269,17 +5283,18 @@ declare const LinkSchema: z.ZodObject<{
|
|
|
5269
5283
|
links: "links";
|
|
5270
5284
|
affects: "affects";
|
|
5271
5285
|
effects: "effects";
|
|
5272
|
-
|
|
5286
|
+
actions: "actions";
|
|
5273
5287
|
reads: "reads";
|
|
5274
5288
|
writes: "writes";
|
|
5275
5289
|
emits: "emits";
|
|
5290
|
+
triggers: "triggers";
|
|
5291
|
+
uses: "uses";
|
|
5292
|
+
approval: "approval";
|
|
5276
5293
|
contains: "contains";
|
|
5277
5294
|
references: "references";
|
|
5278
5295
|
maps_to: "maps_to";
|
|
5279
|
-
uses: "uses";
|
|
5280
5296
|
governs: "governs";
|
|
5281
5297
|
originates_from: "originates_from";
|
|
5282
|
-
triggers: "triggers";
|
|
5283
5298
|
applies_to: "applies_to";
|
|
5284
5299
|
uses_catalog: "uses_catalog";
|
|
5285
5300
|
}>;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -324,17 +324,18 @@ declare const LinkSchema: z.ZodObject<{
|
|
|
324
324
|
links: "links";
|
|
325
325
|
affects: "affects";
|
|
326
326
|
effects: "effects";
|
|
327
|
-
|
|
327
|
+
actions: "actions";
|
|
328
328
|
reads: "reads";
|
|
329
329
|
writes: "writes";
|
|
330
330
|
emits: "emits";
|
|
331
|
+
triggers: "triggers";
|
|
332
|
+
uses: "uses";
|
|
333
|
+
approval: "approval";
|
|
331
334
|
contains: "contains";
|
|
332
335
|
references: "references";
|
|
333
336
|
maps_to: "maps_to";
|
|
334
|
-
uses: "uses";
|
|
335
337
|
governs: "governs";
|
|
336
338
|
originates_from: "originates_from";
|
|
337
|
-
triggers: "triggers";
|
|
338
339
|
applies_to: "applies_to";
|
|
339
340
|
uses_catalog: "uses_catalog";
|
|
340
341
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.33.
|
|
3
|
+
"version": "2.33.1",
|
|
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",
|
|
@@ -253,10 +253,10 @@
|
|
|
253
253
|
"typescript": "5.9.2",
|
|
254
254
|
"vite": "^7.0.0",
|
|
255
255
|
"vitest": "^3.2.4",
|
|
256
|
-
"@
|
|
257
|
-
"@repo/
|
|
258
|
-
"@elevasis/sdk": "1.21.0",
|
|
256
|
+
"@elevasis/sdk": "1.22.0",
|
|
257
|
+
"@repo/core": "0.24.1",
|
|
259
258
|
"@repo/elevasis-core": "1.0.0",
|
|
259
|
+
"@repo/typescript-config": "0.0.0",
|
|
260
260
|
"@repo/eslint-config": "0.0.0"
|
|
261
261
|
},
|
|
262
262
|
"dependencies": {
|