@elevasis/ui 2.35.0 → 2.36.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 +25 -18
- package/dist/app/index.js +2 -2
- package/dist/{chunk-26HFM4MH.js → chunk-F6EFC2MJ.js} +1555 -1903
- package/dist/{chunk-VDOOGGBA.js → chunk-K4UZU3TU.js} +2 -2
- package/dist/{chunk-4U3XAWCN.js → chunk-O2Q4VMRN.js} +134 -495
- package/dist/components/index.d.ts +7 -4
- package/dist/components/index.js +2 -2
- package/dist/components/navigation/index.js +2 -2
- package/dist/execution/index.d.ts +2 -2
- package/dist/features/auth/index.d.ts +3 -0
- package/dist/features/auth/index.js +2 -2
- package/dist/features/clients/index.js +2 -2
- package/dist/features/crm/index.d.ts +3 -0
- package/dist/features/crm/index.js +2 -2
- package/dist/features/dashboard/index.d.ts +3 -3
- package/dist/features/dashboard/index.js +2 -2
- package/dist/features/delivery/index.d.ts +3 -0
- package/dist/features/delivery/index.js +2 -2
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +286 -48
- package/dist/features/lead-gen/index.js +2 -2
- package/dist/features/monitoring/index.js +2 -2
- package/dist/features/monitoring/requests/index.js +2 -2
- package/dist/features/operations/index.d.ts +30 -30
- package/dist/features/operations/index.js +2 -2
- package/dist/features/settings/index.d.ts +3 -0
- package/dist/features/settings/index.js +2 -2
- package/dist/hooks/delivery/index.d.ts +3 -0
- package/dist/hooks/delivery/index.js +2 -2
- package/dist/hooks/index.d.ts +29 -16
- package/dist/hooks/index.js +2 -2
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +13 -13
- package/dist/hooks/published.d.ts +29 -16
- package/dist/hooks/published.js +2 -2
- package/dist/index.d.ts +51 -34
- package/dist/index.js +2 -2
- package/dist/initialization/index.d.ts +3 -0
- package/dist/knowledge/index.d.ts +21 -21
- package/dist/knowledge/index.js +6 -6
- package/dist/{knowledge-search-index-ORIJCEZX.js → knowledge-search-index-NBCTFIOH.js} +2 -2
- package/dist/organization/index.js +2 -2
- package/dist/profile/index.d.ts +3 -0
- package/dist/provider/index.d.ts +25 -18
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +25 -18
- package/dist/provider/published.js +2 -2
- package/dist/sse/index.js +26 -5
- package/dist/supabase/index.d.ts +6 -0
- package/dist/types/index.d.ts +16 -13
- package/dist/utils/index.d.ts +3 -3
- package/package.json +4 -4
|
@@ -2884,6 +2884,7 @@ type Database = {
|
|
|
2884
2884
|
title: string | null;
|
|
2885
2885
|
updated_at: string;
|
|
2886
2886
|
user_id: string;
|
|
2887
|
+
visibility: string;
|
|
2887
2888
|
};
|
|
2888
2889
|
Insert: {
|
|
2889
2890
|
content: string;
|
|
@@ -2898,6 +2899,7 @@ type Database = {
|
|
|
2898
2899
|
title?: string | null;
|
|
2899
2900
|
updated_at?: string;
|
|
2900
2901
|
user_id: string;
|
|
2902
|
+
visibility?: string;
|
|
2901
2903
|
};
|
|
2902
2904
|
Update: {
|
|
2903
2905
|
content?: string;
|
|
@@ -2912,6 +2914,7 @@ type Database = {
|
|
|
2912
2914
|
title?: string | null;
|
|
2913
2915
|
updated_at?: string;
|
|
2914
2916
|
user_id?: string;
|
|
2917
|
+
visibility?: string;
|
|
2915
2918
|
};
|
|
2916
2919
|
Relationships: [
|
|
2917
2920
|
{
|
|
@@ -3309,6 +3312,10 @@ declare const AcqListResponseSchema: z$1.ZodObject<{
|
|
|
3309
3312
|
enabled: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
3310
3313
|
order: z$1.ZodOptional<z$1.ZodNumber>;
|
|
3311
3314
|
}, z$1.core.$strip>>>;
|
|
3315
|
+
dataMode: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3316
|
+
mock: "mock";
|
|
3317
|
+
live: "live";
|
|
3318
|
+
}>>;
|
|
3312
3319
|
}, z$1.core.$strip>;
|
|
3313
3320
|
}, z$1.core.$strip>;
|
|
3314
3321
|
type AcqListResponse = z$1.infer<typeof AcqListResponseSchema>;
|
|
@@ -3467,9 +3474,9 @@ declare const SurfaceTypeSchema: z$1.ZodEnum<{
|
|
|
3467
3474
|
dashboard: "dashboard";
|
|
3468
3475
|
settings: "settings";
|
|
3469
3476
|
graph: "graph";
|
|
3470
|
-
list: "list";
|
|
3471
3477
|
page: "page";
|
|
3472
3478
|
detail: "detail";
|
|
3479
|
+
list: "list";
|
|
3473
3480
|
}>;
|
|
3474
3481
|
interface SidebarSurfaceNode {
|
|
3475
3482
|
type: 'surface';
|
|
@@ -3902,8 +3909,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3902
3909
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3903
3910
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
3904
3911
|
status: z$1.ZodEnum<{
|
|
3905
|
-
deprecated: "deprecated";
|
|
3906
3912
|
active: "active";
|
|
3913
|
+
deprecated: "deprecated";
|
|
3907
3914
|
archived: "archived";
|
|
3908
3915
|
}>;
|
|
3909
3916
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -3921,12 +3928,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3921
3928
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3922
3929
|
path: z$1.ZodString;
|
|
3923
3930
|
role: z$1.ZodEnum<{
|
|
3924
|
-
config: "config";
|
|
3925
3931
|
entrypoint: "entrypoint";
|
|
3926
3932
|
handler: "handler";
|
|
3927
3933
|
schema: "schema";
|
|
3928
3934
|
test: "test";
|
|
3929
3935
|
docs: "docs";
|
|
3936
|
+
config: "config";
|
|
3930
3937
|
}>;
|
|
3931
3938
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
3932
3939
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -3937,10 +3944,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3937
3944
|
label: z$1.ZodString;
|
|
3938
3945
|
payloadSchema: z$1.ZodOptional<z$1.ZodString>;
|
|
3939
3946
|
lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
|
|
3947
|
+
active: "active";
|
|
3940
3948
|
deprecated: "deprecated";
|
|
3941
3949
|
draft: "draft";
|
|
3942
3950
|
beta: "beta";
|
|
3943
|
-
active: "active";
|
|
3944
3951
|
archived: "archived";
|
|
3945
3952
|
}>>;
|
|
3946
3953
|
}, z$1.core.$strip>>>;
|
|
@@ -3952,8 +3959,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3952
3959
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
3953
3960
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
3954
3961
|
status: z$1.ZodEnum<{
|
|
3955
|
-
deprecated: "deprecated";
|
|
3956
3962
|
active: "active";
|
|
3963
|
+
deprecated: "deprecated";
|
|
3957
3964
|
archived: "archived";
|
|
3958
3965
|
}>;
|
|
3959
3966
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -3971,12 +3978,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
3971
3978
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
3972
3979
|
path: z$1.ZodString;
|
|
3973
3980
|
role: z$1.ZodEnum<{
|
|
3974
|
-
config: "config";
|
|
3975
3981
|
entrypoint: "entrypoint";
|
|
3976
3982
|
handler: "handler";
|
|
3977
3983
|
schema: "schema";
|
|
3978
3984
|
test: "test";
|
|
3979
3985
|
docs: "docs";
|
|
3986
|
+
config: "config";
|
|
3980
3987
|
}>;
|
|
3981
3988
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
3982
3989
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4018,10 +4025,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4018
4025
|
label: z$1.ZodString;
|
|
4019
4026
|
payloadSchema: z$1.ZodOptional<z$1.ZodString>;
|
|
4020
4027
|
lifecycle: z$1.ZodOptional<z$1.ZodEnum<{
|
|
4028
|
+
active: "active";
|
|
4021
4029
|
deprecated: "deprecated";
|
|
4022
4030
|
draft: "draft";
|
|
4023
4031
|
beta: "beta";
|
|
4024
|
-
active: "active";
|
|
4025
4032
|
archived: "archived";
|
|
4026
4033
|
}>>;
|
|
4027
4034
|
}, z$1.core.$strip>>>;
|
|
@@ -4033,8 +4040,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4033
4040
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
4034
4041
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
4035
4042
|
status: z$1.ZodEnum<{
|
|
4036
|
-
deprecated: "deprecated";
|
|
4037
4043
|
active: "active";
|
|
4044
|
+
deprecated: "deprecated";
|
|
4038
4045
|
archived: "archived";
|
|
4039
4046
|
}>;
|
|
4040
4047
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -4052,12 +4059,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4052
4059
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
4053
4060
|
path: z$1.ZodString;
|
|
4054
4061
|
role: z$1.ZodEnum<{
|
|
4055
|
-
config: "config";
|
|
4056
4062
|
entrypoint: "entrypoint";
|
|
4057
4063
|
handler: "handler";
|
|
4058
4064
|
schema: "schema";
|
|
4059
4065
|
test: "test";
|
|
4060
4066
|
docs: "docs";
|
|
4067
|
+
config: "config";
|
|
4061
4068
|
}>;
|
|
4062
4069
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
4063
4070
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4072,8 +4079,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4072
4079
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
4073
4080
|
ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
|
|
4074
4081
|
status: z$1.ZodEnum<{
|
|
4075
|
-
deprecated: "deprecated";
|
|
4076
4082
|
active: "active";
|
|
4083
|
+
deprecated: "deprecated";
|
|
4077
4084
|
archived: "archived";
|
|
4078
4085
|
}>;
|
|
4079
4086
|
ontology: z$1.ZodOptional<z$1.ZodObject<{
|
|
@@ -4091,12 +4098,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4091
4098
|
codeRefs: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
4092
4099
|
path: z$1.ZodString;
|
|
4093
4100
|
role: z$1.ZodEnum<{
|
|
4094
|
-
config: "config";
|
|
4095
4101
|
entrypoint: "entrypoint";
|
|
4096
4102
|
handler: "handler";
|
|
4097
4103
|
schema: "schema";
|
|
4098
4104
|
test: "test";
|
|
4099
4105
|
docs: "docs";
|
|
4106
|
+
config: "config";
|
|
4100
4107
|
}>;
|
|
4101
4108
|
symbol: z$1.ZodOptional<z$1.ZodString>;
|
|
4102
4109
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
@@ -4210,10 +4217,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4210
4217
|
}, z$1.core.$strip>], "kind">>>;
|
|
4211
4218
|
knowledge: z$1.ZodOptional<z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>>;
|
|
4212
4219
|
lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
|
|
4220
|
+
active: "active";
|
|
4213
4221
|
deprecated: "deprecated";
|
|
4214
4222
|
draft: "draft";
|
|
4215
4223
|
beta: "beta";
|
|
4216
|
-
active: "active";
|
|
4217
4224
|
archived: "archived";
|
|
4218
4225
|
}>>;
|
|
4219
4226
|
}, z$1.core.$strip>>>>;
|
|
@@ -4291,10 +4298,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4291
4298
|
roleIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
4292
4299
|
}, z$1.core.$strip>>;
|
|
4293
4300
|
lifecycle: z$1.ZodDefault<z$1.ZodEnum<{
|
|
4301
|
+
active: "active";
|
|
4294
4302
|
deprecated: "deprecated";
|
|
4295
4303
|
draft: "draft";
|
|
4296
4304
|
beta: "beta";
|
|
4297
|
-
active: "active";
|
|
4298
4305
|
archived: "archived";
|
|
4299
4306
|
}>>;
|
|
4300
4307
|
}, z$1.core.$strip>>>>;
|
|
@@ -4377,12 +4384,12 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4377
4384
|
kind: z$1.ZodEnum<{
|
|
4378
4385
|
knowledge: "knowledge";
|
|
4379
4386
|
system: "system";
|
|
4387
|
+
resource: "resource";
|
|
4380
4388
|
action: "action";
|
|
4381
4389
|
ontology: "ontology";
|
|
4382
4390
|
role: "role";
|
|
4383
|
-
goal: "goal";
|
|
4384
|
-
resource: "resource";
|
|
4385
4391
|
stage: "stage";
|
|
4392
|
+
goal: "goal";
|
|
4386
4393
|
"customer-segment": "customer-segment";
|
|
4387
4394
|
offering: "offering";
|
|
4388
4395
|
}>;
|
|
@@ -4392,7 +4399,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4392
4399
|
nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
4393
4400
|
}, z$1.core.$strip>]>, z$1.ZodTransform<{
|
|
4394
4401
|
target: {
|
|
4395
|
-
kind: "knowledge" | "system" | "
|
|
4402
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4396
4403
|
id: string;
|
|
4397
4404
|
};
|
|
4398
4405
|
nodeId: string;
|
|
@@ -4400,7 +4407,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
4400
4407
|
nodeId: string;
|
|
4401
4408
|
} | {
|
|
4402
4409
|
target: {
|
|
4403
|
-
kind: "knowledge" | "system" | "
|
|
4410
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
4404
4411
|
id: string;
|
|
4405
4412
|
};
|
|
4406
4413
|
}>>>>;
|
|
@@ -4427,7 +4434,7 @@ type FieldPath<T> = T extends object ? {
|
|
|
4427
4434
|
[K in keyof T & string]: T[K] extends ReadonlyArray<unknown> | unknown[] ? K : T[K] extends object | undefined ? K | `${K}.${FieldPath<NonNullable<T[K]>>}` : K;
|
|
4428
4435
|
}[keyof T & string] : never;
|
|
4429
4436
|
/** Discriminated string union of supported Mantine components. */
|
|
4430
|
-
type StepConfigComponent = 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
|
|
4437
|
+
type StepConfigComponent = 'checkboxgroup' | 'segmented' | 'tags' | 'multiselect' | 'select' | 'textinput' | 'textarea' | 'numberinput' | 'switch' | 'json';
|
|
4431
4438
|
/** Rendering hint for a single field within a section. */
|
|
4432
4439
|
interface StepConfigFieldHint<T> {
|
|
4433
4440
|
/** Typed dotted path into T — typo = TS error. */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-
|
|
1
|
+
export { ElevasisCoreProvider, ElevasisSystemsProvider, NotificationProvider, SystemShell, useElevasisSystems, useNotificationAdapter, useOptionalElevasisSystems } from '../chunk-F6EFC2MJ.js';
|
|
2
2
|
import '../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../chunk-SIQ3P4OR.js';
|
|
4
4
|
import '../chunk-3KMDHCAR.js';
|
|
@@ -8,7 +8,7 @@ import '../chunk-ZTWA5H77.js';
|
|
|
8
8
|
import '../chunk-AUDNF2Q7.js';
|
|
9
9
|
import '../chunk-6M6OLGQY.js';
|
|
10
10
|
import '../chunk-BRXELOHC.js';
|
|
11
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-O2Q4VMRN.js';
|
|
12
12
|
export { AppearanceProvider, useAppearance } from '../chunk-LUYVRATI.js';
|
|
13
13
|
import '../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../chunk-WLOQ4IBG.js';
|
package/dist/sse/index.js
CHANGED
|
@@ -119,17 +119,38 @@ var SSEConnectionManager = class {
|
|
|
119
119
|
clearTimeout(existing.closeTimeout);
|
|
120
120
|
existing.closeTimeout = void 0;
|
|
121
121
|
}
|
|
122
|
-
existing.subscribers.
|
|
122
|
+
existing.subscribers.set(subscriberId, options);
|
|
123
|
+
if (existing.lastOpenResponse) {
|
|
124
|
+
void options.onopen?.(existing.lastOpenResponse);
|
|
125
|
+
}
|
|
123
126
|
} else {
|
|
124
127
|
const controller = new AbortController();
|
|
125
|
-
|
|
128
|
+
const subscribers = /* @__PURE__ */ new Map();
|
|
129
|
+
subscribers.set(subscriberId, options);
|
|
130
|
+
const connection = {
|
|
126
131
|
controller,
|
|
127
|
-
subscribers
|
|
132
|
+
subscribers,
|
|
128
133
|
url: options.url
|
|
129
|
-
}
|
|
134
|
+
};
|
|
135
|
+
this.connections.set(key, connection);
|
|
130
136
|
fetchEventSourceWithTokenRefresh({
|
|
131
137
|
...options,
|
|
132
|
-
signal: controller.signal
|
|
138
|
+
signal: controller.signal,
|
|
139
|
+
async onopen(response) {
|
|
140
|
+
connection.lastOpenResponse = response;
|
|
141
|
+
await Promise.all(
|
|
142
|
+
Array.from(connection.subscribers.values()).map((subscriberOptions) => subscriberOptions.onopen?.(response))
|
|
143
|
+
);
|
|
144
|
+
},
|
|
145
|
+
onmessage(event) {
|
|
146
|
+
connection.subscribers.forEach((subscriberOptions) => subscriberOptions.onmessage?.(event));
|
|
147
|
+
},
|
|
148
|
+
onerror(error) {
|
|
149
|
+
connection.subscribers.forEach((subscriberOptions) => subscriberOptions.onerror?.(error));
|
|
150
|
+
},
|
|
151
|
+
onclose() {
|
|
152
|
+
connection.subscribers.forEach((subscriberOptions) => subscriberOptions.onclose?.());
|
|
153
|
+
}
|
|
133
154
|
});
|
|
134
155
|
}
|
|
135
156
|
return () => this.unsubscribe(key, subscriberId);
|
package/dist/supabase/index.d.ts
CHANGED
|
@@ -2782,6 +2782,7 @@ type Database = {
|
|
|
2782
2782
|
title: string | null;
|
|
2783
2783
|
updated_at: string;
|
|
2784
2784
|
user_id: string;
|
|
2785
|
+
visibility: string;
|
|
2785
2786
|
};
|
|
2786
2787
|
Insert: {
|
|
2787
2788
|
content: string;
|
|
@@ -2796,6 +2797,7 @@ type Database = {
|
|
|
2796
2797
|
title?: string | null;
|
|
2797
2798
|
updated_at?: string;
|
|
2798
2799
|
user_id: string;
|
|
2800
|
+
visibility?: string;
|
|
2799
2801
|
};
|
|
2800
2802
|
Update: {
|
|
2801
2803
|
content?: string;
|
|
@@ -2810,6 +2812,7 @@ type Database = {
|
|
|
2810
2812
|
title?: string | null;
|
|
2811
2813
|
updated_at?: string;
|
|
2812
2814
|
user_id?: string;
|
|
2815
|
+
visibility?: string;
|
|
2813
2816
|
};
|
|
2814
2817
|
Relationships: [
|
|
2815
2818
|
{
|
|
@@ -5727,6 +5730,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
5727
5730
|
title: string | null;
|
|
5728
5731
|
updated_at: string;
|
|
5729
5732
|
user_id: string;
|
|
5733
|
+
visibility: string;
|
|
5730
5734
|
};
|
|
5731
5735
|
Insert: {
|
|
5732
5736
|
content: string;
|
|
@@ -5741,6 +5745,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
5741
5745
|
title?: string | null;
|
|
5742
5746
|
updated_at?: string;
|
|
5743
5747
|
user_id: string;
|
|
5748
|
+
visibility?: string;
|
|
5744
5749
|
};
|
|
5745
5750
|
Update: {
|
|
5746
5751
|
content?: string;
|
|
@@ -5755,6 +5760,7 @@ declare const useSupabase: () => SupabaseClient<Database, "public", "public", {
|
|
|
5755
5760
|
title?: string | null;
|
|
5756
5761
|
updated_at?: string;
|
|
5757
5762
|
user_id?: string;
|
|
5763
|
+
visibility?: string;
|
|
5758
5764
|
};
|
|
5759
5765
|
Relationships: [{
|
|
5760
5766
|
foreignKeyName: "user_notes_organization_id_fkey";
|
package/dist/types/index.d.ts
CHANGED
|
@@ -412,8 +412,8 @@ interface ModelConfig {
|
|
|
412
412
|
}
|
|
413
413
|
|
|
414
414
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
415
|
-
deprecated: "deprecated";
|
|
416
415
|
active: "active";
|
|
416
|
+
deprecated: "deprecated";
|
|
417
417
|
archived: "archived";
|
|
418
418
|
}>;
|
|
419
419
|
declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -424,8 +424,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
424
424
|
description: z.ZodOptional<z.ZodString>;
|
|
425
425
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
426
426
|
status: z.ZodEnum<{
|
|
427
|
-
deprecated: "deprecated";
|
|
428
427
|
active: "active";
|
|
428
|
+
deprecated: "deprecated";
|
|
429
429
|
archived: "archived";
|
|
430
430
|
}>;
|
|
431
431
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -443,12 +443,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
443
443
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
444
444
|
path: z.ZodString;
|
|
445
445
|
role: z.ZodEnum<{
|
|
446
|
-
config: "config";
|
|
447
446
|
entrypoint: "entrypoint";
|
|
448
447
|
handler: "handler";
|
|
449
448
|
schema: "schema";
|
|
450
449
|
test: "test";
|
|
451
450
|
docs: "docs";
|
|
451
|
+
config: "config";
|
|
452
452
|
}>;
|
|
453
453
|
symbol: z.ZodOptional<z.ZodString>;
|
|
454
454
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -459,10 +459,10 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
459
459
|
label: z.ZodString;
|
|
460
460
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
461
461
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
462
|
+
active: "active";
|
|
462
463
|
deprecated: "deprecated";
|
|
463
464
|
draft: "draft";
|
|
464
465
|
beta: "beta";
|
|
465
|
-
active: "active";
|
|
466
466
|
archived: "archived";
|
|
467
467
|
}>>;
|
|
468
468
|
}, z.core.$strip>>>;
|
|
@@ -474,8 +474,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
474
474
|
description: z.ZodOptional<z.ZodString>;
|
|
475
475
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
476
476
|
status: z.ZodEnum<{
|
|
477
|
-
deprecated: "deprecated";
|
|
478
477
|
active: "active";
|
|
478
|
+
deprecated: "deprecated";
|
|
479
479
|
archived: "archived";
|
|
480
480
|
}>;
|
|
481
481
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -493,12 +493,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
493
493
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
494
494
|
path: z.ZodString;
|
|
495
495
|
role: z.ZodEnum<{
|
|
496
|
-
config: "config";
|
|
497
496
|
entrypoint: "entrypoint";
|
|
498
497
|
handler: "handler";
|
|
499
498
|
schema: "schema";
|
|
500
499
|
test: "test";
|
|
501
500
|
docs: "docs";
|
|
501
|
+
config: "config";
|
|
502
502
|
}>;
|
|
503
503
|
symbol: z.ZodOptional<z.ZodString>;
|
|
504
504
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -540,10 +540,10 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
540
540
|
label: z.ZodString;
|
|
541
541
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
542
542
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
543
|
+
active: "active";
|
|
543
544
|
deprecated: "deprecated";
|
|
544
545
|
draft: "draft";
|
|
545
546
|
beta: "beta";
|
|
546
|
-
active: "active";
|
|
547
547
|
archived: "archived";
|
|
548
548
|
}>>;
|
|
549
549
|
}, z.core.$strip>>>;
|
|
@@ -555,8 +555,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
555
555
|
description: z.ZodOptional<z.ZodString>;
|
|
556
556
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
557
557
|
status: z.ZodEnum<{
|
|
558
|
-
deprecated: "deprecated";
|
|
559
558
|
active: "active";
|
|
559
|
+
deprecated: "deprecated";
|
|
560
560
|
archived: "archived";
|
|
561
561
|
}>;
|
|
562
562
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -574,12 +574,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
574
574
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
575
575
|
path: z.ZodString;
|
|
576
576
|
role: z.ZodEnum<{
|
|
577
|
-
config: "config";
|
|
578
577
|
entrypoint: "entrypoint";
|
|
579
578
|
handler: "handler";
|
|
580
579
|
schema: "schema";
|
|
581
580
|
test: "test";
|
|
582
581
|
docs: "docs";
|
|
582
|
+
config: "config";
|
|
583
583
|
}>;
|
|
584
584
|
symbol: z.ZodOptional<z.ZodString>;
|
|
585
585
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -594,8 +594,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
594
594
|
description: z.ZodOptional<z.ZodString>;
|
|
595
595
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
596
596
|
status: z.ZodEnum<{
|
|
597
|
-
deprecated: "deprecated";
|
|
598
597
|
active: "active";
|
|
598
|
+
deprecated: "deprecated";
|
|
599
599
|
archived: "archived";
|
|
600
600
|
}>;
|
|
601
601
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -613,12 +613,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
613
613
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
614
614
|
path: z.ZodString;
|
|
615
615
|
role: z.ZodEnum<{
|
|
616
|
-
config: "config";
|
|
617
616
|
entrypoint: "entrypoint";
|
|
618
617
|
handler: "handler";
|
|
619
618
|
schema: "schema";
|
|
620
619
|
test: "test";
|
|
621
620
|
docs: "docs";
|
|
621
|
+
config: "config";
|
|
622
622
|
}>;
|
|
623
623
|
symbol: z.ZodOptional<z.ZodString>;
|
|
624
624
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -3536,6 +3536,7 @@ type Database = {
|
|
|
3536
3536
|
title: string | null;
|
|
3537
3537
|
updated_at: string;
|
|
3538
3538
|
user_id: string;
|
|
3539
|
+
visibility: string;
|
|
3539
3540
|
};
|
|
3540
3541
|
Insert: {
|
|
3541
3542
|
content: string;
|
|
@@ -3550,6 +3551,7 @@ type Database = {
|
|
|
3550
3551
|
title?: string | null;
|
|
3551
3552
|
updated_at?: string;
|
|
3552
3553
|
user_id: string;
|
|
3554
|
+
visibility?: string;
|
|
3553
3555
|
};
|
|
3554
3556
|
Update: {
|
|
3555
3557
|
content?: string;
|
|
@@ -3564,6 +3566,7 @@ type Database = {
|
|
|
3564
3566
|
title?: string | null;
|
|
3565
3567
|
updated_at?: string;
|
|
3566
3568
|
user_id?: string;
|
|
3569
|
+
visibility?: string;
|
|
3567
3570
|
};
|
|
3568
3571
|
Relationships: [
|
|
3569
3572
|
{
|
|
@@ -4346,10 +4349,10 @@ interface SystemEntry {
|
|
|
4346
4349
|
declare const LinkSchema: z.ZodObject<{
|
|
4347
4350
|
nodeId: z.ZodString;
|
|
4348
4351
|
kind: z.ZodEnum<{
|
|
4349
|
-
links: "links";
|
|
4350
4352
|
affects: "affects";
|
|
4351
|
-
effects: "effects";
|
|
4352
4353
|
actions: "actions";
|
|
4354
|
+
effects: "effects";
|
|
4355
|
+
links: "links";
|
|
4353
4356
|
reads: "reads";
|
|
4354
4357
|
writes: "writes";
|
|
4355
4358
|
emits: "emits";
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -80,8 +80,8 @@ declare function debounce<T extends (...args: Parameters<T>) => void>(fn: T, wai
|
|
|
80
80
|
};
|
|
81
81
|
|
|
82
82
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
83
|
-
deprecated: "deprecated";
|
|
84
83
|
active: "active";
|
|
84
|
+
deprecated: "deprecated";
|
|
85
85
|
archived: "archived";
|
|
86
86
|
}>;
|
|
87
87
|
type ResourceGovernanceStatus = z.infer<typeof ResourceGovernanceStatusSchema>;
|
|
@@ -227,10 +227,10 @@ interface SystemEntry {
|
|
|
227
227
|
declare const LinkSchema: z.ZodObject<{
|
|
228
228
|
nodeId: z.ZodString;
|
|
229
229
|
kind: z.ZodEnum<{
|
|
230
|
-
links: "links";
|
|
231
230
|
affects: "affects";
|
|
232
|
-
effects: "effects";
|
|
233
231
|
actions: "actions";
|
|
232
|
+
effects: "effects";
|
|
233
|
+
links: "links";
|
|
234
234
|
reads: "reads";
|
|
235
235
|
writes: "writes";
|
|
236
236
|
emits: "emits";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevasis/ui",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.36.0",
|
|
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,11 +253,11 @@
|
|
|
253
253
|
"typescript": "5.9.2",
|
|
254
254
|
"vite": "^7.0.0",
|
|
255
255
|
"vitest": "^3.2.4",
|
|
256
|
-
"@elevasis/sdk": "1.
|
|
256
|
+
"@elevasis/sdk": "1.25.0",
|
|
257
257
|
"@repo/typescript-config": "0.0.0",
|
|
258
|
-
"@repo/
|
|
258
|
+
"@repo/eslint-config": "0.0.0",
|
|
259
259
|
"@repo/elevasis-core": "1.0.0",
|
|
260
|
-
"@repo/
|
|
260
|
+
"@repo/core": "0.29.0"
|
|
261
261
|
},
|
|
262
262
|
"dependencies": {
|
|
263
263
|
"@dagrejs/dagre": "^1.1.4",
|