@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
|
@@ -114,8 +114,8 @@ declare const ResourceKindSchema: z.ZodEnum<{
|
|
|
114
114
|
script: "script";
|
|
115
115
|
}>;
|
|
116
116
|
declare const ResourceGovernanceStatusSchema: z.ZodEnum<{
|
|
117
|
-
deprecated: "deprecated";
|
|
118
117
|
active: "active";
|
|
118
|
+
deprecated: "deprecated";
|
|
119
119
|
archived: "archived";
|
|
120
120
|
}>;
|
|
121
121
|
declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -126,8 +126,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
126
126
|
description: z.ZodOptional<z.ZodString>;
|
|
127
127
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
128
128
|
status: z.ZodEnum<{
|
|
129
|
-
deprecated: "deprecated";
|
|
130
129
|
active: "active";
|
|
130
|
+
deprecated: "deprecated";
|
|
131
131
|
archived: "archived";
|
|
132
132
|
}>;
|
|
133
133
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -145,12 +145,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
145
145
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
146
146
|
path: z.ZodString;
|
|
147
147
|
role: z.ZodEnum<{
|
|
148
|
-
config: "config";
|
|
149
148
|
entrypoint: "entrypoint";
|
|
150
149
|
handler: "handler";
|
|
151
150
|
schema: "schema";
|
|
152
151
|
test: "test";
|
|
153
152
|
docs: "docs";
|
|
153
|
+
config: "config";
|
|
154
154
|
}>;
|
|
155
155
|
symbol: z.ZodOptional<z.ZodString>;
|
|
156
156
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -161,10 +161,10 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
161
161
|
label: z.ZodString;
|
|
162
162
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
163
163
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
164
|
+
active: "active";
|
|
164
165
|
deprecated: "deprecated";
|
|
165
166
|
draft: "draft";
|
|
166
167
|
beta: "beta";
|
|
167
|
-
active: "active";
|
|
168
168
|
archived: "archived";
|
|
169
169
|
}>>;
|
|
170
170
|
}, z.core.$strip>>>;
|
|
@@ -176,8 +176,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
176
176
|
description: z.ZodOptional<z.ZodString>;
|
|
177
177
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
178
178
|
status: z.ZodEnum<{
|
|
179
|
-
deprecated: "deprecated";
|
|
180
179
|
active: "active";
|
|
180
|
+
deprecated: "deprecated";
|
|
181
181
|
archived: "archived";
|
|
182
182
|
}>;
|
|
183
183
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -195,12 +195,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
195
195
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
196
196
|
path: z.ZodString;
|
|
197
197
|
role: z.ZodEnum<{
|
|
198
|
-
config: "config";
|
|
199
198
|
entrypoint: "entrypoint";
|
|
200
199
|
handler: "handler";
|
|
201
200
|
schema: "schema";
|
|
202
201
|
test: "test";
|
|
203
202
|
docs: "docs";
|
|
203
|
+
config: "config";
|
|
204
204
|
}>;
|
|
205
205
|
symbol: z.ZodOptional<z.ZodString>;
|
|
206
206
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -242,10 +242,10 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
242
242
|
label: z.ZodString;
|
|
243
243
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
244
244
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
245
|
+
active: "active";
|
|
245
246
|
deprecated: "deprecated";
|
|
246
247
|
draft: "draft";
|
|
247
248
|
beta: "beta";
|
|
248
|
-
active: "active";
|
|
249
249
|
archived: "archived";
|
|
250
250
|
}>>;
|
|
251
251
|
}, z.core.$strip>>>;
|
|
@@ -257,8 +257,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
257
257
|
description: z.ZodOptional<z.ZodString>;
|
|
258
258
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
259
259
|
status: z.ZodEnum<{
|
|
260
|
-
deprecated: "deprecated";
|
|
261
260
|
active: "active";
|
|
261
|
+
deprecated: "deprecated";
|
|
262
262
|
archived: "archived";
|
|
263
263
|
}>;
|
|
264
264
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -276,12 +276,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
276
276
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
277
277
|
path: z.ZodString;
|
|
278
278
|
role: z.ZodEnum<{
|
|
279
|
-
config: "config";
|
|
280
279
|
entrypoint: "entrypoint";
|
|
281
280
|
handler: "handler";
|
|
282
281
|
schema: "schema";
|
|
283
282
|
test: "test";
|
|
284
283
|
docs: "docs";
|
|
284
|
+
config: "config";
|
|
285
285
|
}>;
|
|
286
286
|
symbol: z.ZodOptional<z.ZodString>;
|
|
287
287
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -296,8 +296,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
296
296
|
description: z.ZodOptional<z.ZodString>;
|
|
297
297
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
298
298
|
status: z.ZodEnum<{
|
|
299
|
-
deprecated: "deprecated";
|
|
300
299
|
active: "active";
|
|
300
|
+
deprecated: "deprecated";
|
|
301
301
|
archived: "archived";
|
|
302
302
|
}>;
|
|
303
303
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -315,12 +315,12 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
315
315
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
316
316
|
path: z.ZodString;
|
|
317
317
|
role: z.ZodEnum<{
|
|
318
|
-
config: "config";
|
|
319
318
|
entrypoint: "entrypoint";
|
|
320
319
|
handler: "handler";
|
|
321
320
|
schema: "schema";
|
|
322
321
|
test: "test";
|
|
323
322
|
docs: "docs";
|
|
323
|
+
config: "config";
|
|
324
324
|
}>;
|
|
325
325
|
symbol: z.ZodOptional<z.ZodString>;
|
|
326
326
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -523,9 +523,9 @@ declare const SurfaceTypeSchema: z.ZodEnum<{
|
|
|
523
523
|
dashboard: "dashboard";
|
|
524
524
|
settings: "settings";
|
|
525
525
|
graph: "graph";
|
|
526
|
-
list: "list";
|
|
527
526
|
page: "page";
|
|
528
527
|
detail: "detail";
|
|
528
|
+
list: "list";
|
|
529
529
|
}>;
|
|
530
530
|
interface SidebarSurfaceNode {
|
|
531
531
|
type: 'surface';
|
|
@@ -557,10 +557,10 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
|
|
|
557
557
|
declare const LinkSchema: z.ZodObject<{
|
|
558
558
|
nodeId: z.ZodString;
|
|
559
559
|
kind: z.ZodEnum<{
|
|
560
|
-
links: "links";
|
|
561
560
|
affects: "affects";
|
|
562
|
-
effects: "effects";
|
|
563
561
|
actions: "actions";
|
|
562
|
+
effects: "effects";
|
|
563
|
+
links: "links";
|
|
564
564
|
reads: "reads";
|
|
565
565
|
writes: "writes";
|
|
566
566
|
emits: "emits";
|
|
@@ -982,8 +982,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
982
982
|
description: z.ZodOptional<z.ZodString>;
|
|
983
983
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
984
984
|
status: z.ZodEnum<{
|
|
985
|
-
deprecated: "deprecated";
|
|
986
985
|
active: "active";
|
|
986
|
+
deprecated: "deprecated";
|
|
987
987
|
archived: "archived";
|
|
988
988
|
}>;
|
|
989
989
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1001,12 +1001,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1001
1001
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1002
1002
|
path: z.ZodString;
|
|
1003
1003
|
role: z.ZodEnum<{
|
|
1004
|
-
config: "config";
|
|
1005
1004
|
entrypoint: "entrypoint";
|
|
1006
1005
|
handler: "handler";
|
|
1007
1006
|
schema: "schema";
|
|
1008
1007
|
test: "test";
|
|
1009
1008
|
docs: "docs";
|
|
1009
|
+
config: "config";
|
|
1010
1010
|
}>;
|
|
1011
1011
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1012
1012
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1017,10 +1017,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1017
1017
|
label: z.ZodString;
|
|
1018
1018
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
1019
1019
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
1020
|
+
active: "active";
|
|
1020
1021
|
deprecated: "deprecated";
|
|
1021
1022
|
draft: "draft";
|
|
1022
1023
|
beta: "beta";
|
|
1023
|
-
active: "active";
|
|
1024
1024
|
archived: "archived";
|
|
1025
1025
|
}>>;
|
|
1026
1026
|
}, z.core.$strip>>>;
|
|
@@ -1032,8 +1032,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1032
1032
|
description: z.ZodOptional<z.ZodString>;
|
|
1033
1033
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1034
1034
|
status: z.ZodEnum<{
|
|
1035
|
-
deprecated: "deprecated";
|
|
1036
1035
|
active: "active";
|
|
1036
|
+
deprecated: "deprecated";
|
|
1037
1037
|
archived: "archived";
|
|
1038
1038
|
}>;
|
|
1039
1039
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1051,12 +1051,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1051
1051
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1052
1052
|
path: z.ZodString;
|
|
1053
1053
|
role: z.ZodEnum<{
|
|
1054
|
-
config: "config";
|
|
1055
1054
|
entrypoint: "entrypoint";
|
|
1056
1055
|
handler: "handler";
|
|
1057
1056
|
schema: "schema";
|
|
1058
1057
|
test: "test";
|
|
1059
1058
|
docs: "docs";
|
|
1059
|
+
config: "config";
|
|
1060
1060
|
}>;
|
|
1061
1061
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1062
1062
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1098,10 +1098,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1098
1098
|
label: z.ZodString;
|
|
1099
1099
|
payloadSchema: z.ZodOptional<z.ZodString>;
|
|
1100
1100
|
lifecycle: z.ZodOptional<z.ZodEnum<{
|
|
1101
|
+
active: "active";
|
|
1101
1102
|
deprecated: "deprecated";
|
|
1102
1103
|
draft: "draft";
|
|
1103
1104
|
beta: "beta";
|
|
1104
|
-
active: "active";
|
|
1105
1105
|
archived: "archived";
|
|
1106
1106
|
}>>;
|
|
1107
1107
|
}, z.core.$strip>>>;
|
|
@@ -1113,8 +1113,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1113
1113
|
description: z.ZodOptional<z.ZodString>;
|
|
1114
1114
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1115
1115
|
status: z.ZodEnum<{
|
|
1116
|
-
deprecated: "deprecated";
|
|
1117
1116
|
active: "active";
|
|
1117
|
+
deprecated: "deprecated";
|
|
1118
1118
|
archived: "archived";
|
|
1119
1119
|
}>;
|
|
1120
1120
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1132,12 +1132,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1132
1132
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1133
1133
|
path: z.ZodString;
|
|
1134
1134
|
role: z.ZodEnum<{
|
|
1135
|
-
config: "config";
|
|
1136
1135
|
entrypoint: "entrypoint";
|
|
1137
1136
|
handler: "handler";
|
|
1138
1137
|
schema: "schema";
|
|
1139
1138
|
test: "test";
|
|
1140
1139
|
docs: "docs";
|
|
1140
|
+
config: "config";
|
|
1141
1141
|
}>;
|
|
1142
1142
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1143
1143
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1152,8 +1152,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1152
1152
|
description: z.ZodOptional<z.ZodString>;
|
|
1153
1153
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1154
1154
|
status: z.ZodEnum<{
|
|
1155
|
-
deprecated: "deprecated";
|
|
1156
1155
|
active: "active";
|
|
1156
|
+
deprecated: "deprecated";
|
|
1157
1157
|
archived: "archived";
|
|
1158
1158
|
}>;
|
|
1159
1159
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
@@ -1171,12 +1171,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1171
1171
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1172
1172
|
path: z.ZodString;
|
|
1173
1173
|
role: z.ZodEnum<{
|
|
1174
|
-
config: "config";
|
|
1175
1174
|
entrypoint: "entrypoint";
|
|
1176
1175
|
handler: "handler";
|
|
1177
1176
|
schema: "schema";
|
|
1178
1177
|
test: "test";
|
|
1179
1178
|
docs: "docs";
|
|
1179
|
+
config: "config";
|
|
1180
1180
|
}>;
|
|
1181
1181
|
symbol: z.ZodOptional<z.ZodString>;
|
|
1182
1182
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -1290,10 +1290,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1290
1290
|
}, z.core.$strip>], "kind">>>;
|
|
1291
1291
|
knowledge: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString>>>;
|
|
1292
1292
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
1293
|
+
active: "active";
|
|
1293
1294
|
deprecated: "deprecated";
|
|
1294
1295
|
draft: "draft";
|
|
1295
1296
|
beta: "beta";
|
|
1296
|
-
active: "active";
|
|
1297
1297
|
archived: "archived";
|
|
1298
1298
|
}>>;
|
|
1299
1299
|
}, z.core.$strip>>>>;
|
|
@@ -1371,10 +1371,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1371
1371
|
roleIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
1372
1372
|
}, z.core.$strip>>;
|
|
1373
1373
|
lifecycle: z.ZodDefault<z.ZodEnum<{
|
|
1374
|
+
active: "active";
|
|
1374
1375
|
deprecated: "deprecated";
|
|
1375
1376
|
draft: "draft";
|
|
1376
1377
|
beta: "beta";
|
|
1377
|
-
active: "active";
|
|
1378
1378
|
archived: "archived";
|
|
1379
1379
|
}>>;
|
|
1380
1380
|
}, z.core.$strip>>>>;
|
|
@@ -1457,12 +1457,12 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1457
1457
|
kind: z.ZodEnum<{
|
|
1458
1458
|
knowledge: "knowledge";
|
|
1459
1459
|
system: "system";
|
|
1460
|
+
resource: "resource";
|
|
1460
1461
|
action: "action";
|
|
1461
1462
|
ontology: "ontology";
|
|
1462
1463
|
role: "role";
|
|
1463
|
-
goal: "goal";
|
|
1464
|
-
resource: "resource";
|
|
1465
1464
|
stage: "stage";
|
|
1465
|
+
goal: "goal";
|
|
1466
1466
|
"customer-segment": "customer-segment";
|
|
1467
1467
|
offering: "offering";
|
|
1468
1468
|
}>;
|
|
@@ -1472,7 +1472,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1472
1472
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
1473
1473
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
1474
1474
|
target: {
|
|
1475
|
-
kind: "knowledge" | "system" | "
|
|
1475
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1476
1476
|
id: string;
|
|
1477
1477
|
};
|
|
1478
1478
|
nodeId: string;
|
|
@@ -1480,7 +1480,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1480
1480
|
nodeId: string;
|
|
1481
1481
|
} | {
|
|
1482
1482
|
target: {
|
|
1483
|
-
kind: "knowledge" | "system" | "
|
|
1483
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1484
1484
|
id: string;
|
|
1485
1485
|
};
|
|
1486
1486
|
}>>>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } 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
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -2784,6 +2784,7 @@ type Database = {
|
|
|
2784
2784
|
title: string | null;
|
|
2785
2785
|
updated_at: string;
|
|
2786
2786
|
user_id: string;
|
|
2787
|
+
visibility: string;
|
|
2787
2788
|
};
|
|
2788
2789
|
Insert: {
|
|
2789
2790
|
content: string;
|
|
@@ -2798,6 +2799,7 @@ type Database = {
|
|
|
2798
2799
|
title?: string | null;
|
|
2799
2800
|
updated_at?: string;
|
|
2800
2801
|
user_id: string;
|
|
2802
|
+
visibility?: string;
|
|
2801
2803
|
};
|
|
2802
2804
|
Update: {
|
|
2803
2805
|
content?: string;
|
|
@@ -2812,6 +2814,7 @@ type Database = {
|
|
|
2812
2814
|
title?: string | null;
|
|
2813
2815
|
updated_at?: string;
|
|
2814
2816
|
user_id?: string;
|
|
2817
|
+
visibility?: string;
|
|
2815
2818
|
};
|
|
2816
2819
|
Relationships: [
|
|
2817
2820
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MemberConfigModal, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } 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
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|
|
@@ -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
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } 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
|
import '../../chunk-LUYVRATI.js';
|
|
13
13
|
import '../../chunk-NYBEU5TE.js';
|
|
14
14
|
import '../../chunk-WLOQ4IBG.js';
|