@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
|
@@ -122,6 +122,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
122
122
|
id: z.ZodString;
|
|
123
123
|
order: z.ZodDefault<z.ZodNumber>;
|
|
124
124
|
systemPath: z.ZodString;
|
|
125
|
+
title: z.ZodOptional<z.ZodString>;
|
|
126
|
+
description: z.ZodOptional<z.ZodString>;
|
|
125
127
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
126
128
|
status: z.ZodEnum<{
|
|
127
129
|
deprecated: "deprecated";
|
|
@@ -129,7 +131,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
129
131
|
archived: "archived";
|
|
130
132
|
}>;
|
|
131
133
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
132
|
-
|
|
134
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
135
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
133
136
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
134
137
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
135
138
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -149,7 +152,6 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
149
152
|
description: z.ZodOptional<z.ZodString>;
|
|
150
153
|
}, z.core.$strip>>>;
|
|
151
154
|
kind: z.ZodLiteral<"workflow">;
|
|
152
|
-
actionKey: z.ZodOptional<z.ZodString>;
|
|
153
155
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
154
156
|
eventKey: z.ZodString;
|
|
155
157
|
label: z.ZodString;
|
|
@@ -166,6 +168,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
166
168
|
id: z.ZodString;
|
|
167
169
|
order: z.ZodDefault<z.ZodNumber>;
|
|
168
170
|
systemPath: z.ZodString;
|
|
171
|
+
title: z.ZodOptional<z.ZodString>;
|
|
172
|
+
description: z.ZodOptional<z.ZodString>;
|
|
169
173
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
170
174
|
status: z.ZodEnum<{
|
|
171
175
|
deprecated: "deprecated";
|
|
@@ -173,7 +177,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
173
177
|
archived: "archived";
|
|
174
178
|
}>;
|
|
175
179
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
176
|
-
|
|
180
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
181
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
177
182
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
178
183
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
179
184
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -240,6 +245,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
240
245
|
id: z.ZodString;
|
|
241
246
|
order: z.ZodDefault<z.ZodNumber>;
|
|
242
247
|
systemPath: z.ZodString;
|
|
248
|
+
title: z.ZodOptional<z.ZodString>;
|
|
249
|
+
description: z.ZodOptional<z.ZodString>;
|
|
243
250
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
244
251
|
status: z.ZodEnum<{
|
|
245
252
|
deprecated: "deprecated";
|
|
@@ -247,7 +254,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
247
254
|
archived: "archived";
|
|
248
255
|
}>;
|
|
249
256
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
250
|
-
|
|
257
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
258
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
251
259
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
252
260
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
253
261
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -272,6 +280,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
272
280
|
id: z.ZodString;
|
|
273
281
|
order: z.ZodDefault<z.ZodNumber>;
|
|
274
282
|
systemPath: z.ZodString;
|
|
283
|
+
title: z.ZodOptional<z.ZodString>;
|
|
284
|
+
description: z.ZodOptional<z.ZodString>;
|
|
275
285
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
276
286
|
status: z.ZodEnum<{
|
|
277
287
|
deprecated: "deprecated";
|
|
@@ -279,7 +289,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
279
289
|
archived: "archived";
|
|
280
290
|
}>;
|
|
281
291
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
282
|
-
|
|
292
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
293
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
283
294
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
284
295
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
285
296
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -701,6 +712,30 @@ interface SidebarGroupNode {
|
|
|
701
712
|
}
|
|
702
713
|
type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
|
|
703
714
|
|
|
715
|
+
declare const LinkSchema: z.ZodObject<{
|
|
716
|
+
nodeId: z.ZodString;
|
|
717
|
+
kind: z.ZodEnum<{
|
|
718
|
+
links: "links";
|
|
719
|
+
affects: "affects";
|
|
720
|
+
effects: "effects";
|
|
721
|
+
actions: "actions";
|
|
722
|
+
reads: "reads";
|
|
723
|
+
writes: "writes";
|
|
724
|
+
emits: "emits";
|
|
725
|
+
triggers: "triggers";
|
|
726
|
+
uses: "uses";
|
|
727
|
+
approval: "approval";
|
|
728
|
+
contains: "contains";
|
|
729
|
+
references: "references";
|
|
730
|
+
maps_to: "maps_to";
|
|
731
|
+
governs: "governs";
|
|
732
|
+
originates_from: "originates_from";
|
|
733
|
+
applies_to: "applies_to";
|
|
734
|
+
uses_catalog: "uses_catalog";
|
|
735
|
+
}>;
|
|
736
|
+
}, z.core.$strip>;
|
|
737
|
+
type Link = z.infer<typeof LinkSchema>;
|
|
738
|
+
|
|
704
739
|
declare const OrganizationModelSchema: z.ZodObject<{
|
|
705
740
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
706
741
|
domainMetadata: z.ZodPipe<z.ZodDefault<z.ZodObject<{
|
|
@@ -740,6 +775,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
740
775
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
741
776
|
lastModified: z.ZodString;
|
|
742
777
|
}, z.core.$strip>>;
|
|
778
|
+
topology: z.ZodOptional<z.ZodObject<{
|
|
779
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
780
|
+
lastModified: z.ZodString;
|
|
781
|
+
}, z.core.$strip>>;
|
|
743
782
|
actions: z.ZodOptional<z.ZodObject<{
|
|
744
783
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
745
784
|
lastModified: z.ZodString;
|
|
@@ -793,6 +832,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
793
832
|
version: 1;
|
|
794
833
|
lastModified: string;
|
|
795
834
|
};
|
|
835
|
+
topology: {
|
|
836
|
+
version: 1;
|
|
837
|
+
lastModified: string;
|
|
838
|
+
};
|
|
796
839
|
actions: {
|
|
797
840
|
version: 1;
|
|
798
841
|
lastModified: string;
|
|
@@ -846,6 +889,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
846
889
|
version: 1;
|
|
847
890
|
lastModified: string;
|
|
848
891
|
} | undefined;
|
|
892
|
+
topology?: {
|
|
893
|
+
version: 1;
|
|
894
|
+
lastModified: string;
|
|
895
|
+
} | undefined;
|
|
849
896
|
actions?: {
|
|
850
897
|
version: 1;
|
|
851
898
|
lastModified: string;
|
|
@@ -1089,6 +1136,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1089
1136
|
id: z.ZodString;
|
|
1090
1137
|
order: z.ZodDefault<z.ZodNumber>;
|
|
1091
1138
|
systemPath: z.ZodString;
|
|
1139
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1140
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1092
1141
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1093
1142
|
status: z.ZodEnum<{
|
|
1094
1143
|
deprecated: "deprecated";
|
|
@@ -1096,7 +1145,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1096
1145
|
archived: "archived";
|
|
1097
1146
|
}>;
|
|
1098
1147
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
1099
|
-
|
|
1148
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1149
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
1100
1150
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1101
1151
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1102
1152
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1116,7 +1166,6 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1116
1166
|
description: z.ZodOptional<z.ZodString>;
|
|
1117
1167
|
}, z.core.$strip>>>;
|
|
1118
1168
|
kind: z.ZodLiteral<"workflow">;
|
|
1119
|
-
actionKey: z.ZodOptional<z.ZodString>;
|
|
1120
1169
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1121
1170
|
eventKey: z.ZodString;
|
|
1122
1171
|
label: z.ZodString;
|
|
@@ -1133,6 +1182,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1133
1182
|
id: z.ZodString;
|
|
1134
1183
|
order: z.ZodDefault<z.ZodNumber>;
|
|
1135
1184
|
systemPath: z.ZodString;
|
|
1185
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1186
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1136
1187
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1137
1188
|
status: z.ZodEnum<{
|
|
1138
1189
|
deprecated: "deprecated";
|
|
@@ -1140,7 +1191,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1140
1191
|
archived: "archived";
|
|
1141
1192
|
}>;
|
|
1142
1193
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
1143
|
-
|
|
1194
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1195
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
1144
1196
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1145
1197
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1146
1198
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1207,6 +1259,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1207
1259
|
id: z.ZodString;
|
|
1208
1260
|
order: z.ZodDefault<z.ZodNumber>;
|
|
1209
1261
|
systemPath: z.ZodString;
|
|
1262
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1263
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1210
1264
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1211
1265
|
status: z.ZodEnum<{
|
|
1212
1266
|
deprecated: "deprecated";
|
|
@@ -1214,7 +1268,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1214
1268
|
archived: "archived";
|
|
1215
1269
|
}>;
|
|
1216
1270
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
1217
|
-
|
|
1271
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1272
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
1218
1273
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1219
1274
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1220
1275
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1239,6 +1294,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1239
1294
|
id: z.ZodString;
|
|
1240
1295
|
order: z.ZodDefault<z.ZodNumber>;
|
|
1241
1296
|
systemPath: z.ZodString;
|
|
1297
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1298
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1242
1299
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
1243
1300
|
status: z.ZodEnum<{
|
|
1244
1301
|
deprecated: "deprecated";
|
|
@@ -1246,7 +1303,8 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1246
1303
|
archived: "archived";
|
|
1247
1304
|
}>;
|
|
1248
1305
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
1249
|
-
|
|
1306
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1307
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
1250
1308
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1251
1309
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1252
1310
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -1276,6 +1334,69 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1276
1334
|
file: z.ZodString;
|
|
1277
1335
|
}, z.core.$strip>]>;
|
|
1278
1336
|
}, z.core.$strip>], "kind">>>>;
|
|
1337
|
+
topology: z.ZodDefault<z.ZodDefault<z.ZodObject<{
|
|
1338
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
1339
|
+
relationships: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1340
|
+
from: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1341
|
+
kind: z.ZodLiteral<"system">;
|
|
1342
|
+
id: z.ZodString;
|
|
1343
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1344
|
+
kind: z.ZodLiteral<"resource">;
|
|
1345
|
+
id: z.ZodString;
|
|
1346
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1347
|
+
kind: z.ZodLiteral<"ontology">;
|
|
1348
|
+
id: z.ZodString;
|
|
1349
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1350
|
+
kind: z.ZodLiteral<"policy">;
|
|
1351
|
+
id: z.ZodString;
|
|
1352
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1353
|
+
kind: z.ZodLiteral<"role">;
|
|
1354
|
+
id: z.ZodString;
|
|
1355
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1356
|
+
kind: z.ZodLiteral<"trigger">;
|
|
1357
|
+
id: z.ZodString;
|
|
1358
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1359
|
+
kind: z.ZodLiteral<"humanCheckpoint">;
|
|
1360
|
+
id: z.ZodString;
|
|
1361
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1362
|
+
kind: z.ZodLiteral<"externalResource">;
|
|
1363
|
+
id: z.ZodString;
|
|
1364
|
+
}, z.core.$strip>], "kind">;
|
|
1365
|
+
kind: z.ZodEnum<{
|
|
1366
|
+
triggers: "triggers";
|
|
1367
|
+
uses: "uses";
|
|
1368
|
+
approval: "approval";
|
|
1369
|
+
}>;
|
|
1370
|
+
to: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1371
|
+
kind: z.ZodLiteral<"system">;
|
|
1372
|
+
id: z.ZodString;
|
|
1373
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1374
|
+
kind: z.ZodLiteral<"resource">;
|
|
1375
|
+
id: z.ZodString;
|
|
1376
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1377
|
+
kind: z.ZodLiteral<"ontology">;
|
|
1378
|
+
id: z.ZodString;
|
|
1379
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1380
|
+
kind: z.ZodLiteral<"policy">;
|
|
1381
|
+
id: z.ZodString;
|
|
1382
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1383
|
+
kind: z.ZodLiteral<"role">;
|
|
1384
|
+
id: z.ZodString;
|
|
1385
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1386
|
+
kind: z.ZodLiteral<"trigger">;
|
|
1387
|
+
id: z.ZodString;
|
|
1388
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1389
|
+
kind: z.ZodLiteral<"humanCheckpoint">;
|
|
1390
|
+
id: z.ZodString;
|
|
1391
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1392
|
+
kind: z.ZodLiteral<"externalResource">;
|
|
1393
|
+
id: z.ZodString;
|
|
1394
|
+
}, z.core.$strip>], "kind">;
|
|
1395
|
+
systemPath: z.ZodOptional<z.ZodString>;
|
|
1396
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1397
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
1398
|
+
}, z.core.$strip>>>;
|
|
1399
|
+
}, z.core.$strip>>>;
|
|
1279
1400
|
actions: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1280
1401
|
id: z.ZodString;
|
|
1281
1402
|
order: z.ZodNumber;
|
|
@@ -1512,29 +1633,6 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1512
1633
|
|
|
1513
1634
|
type OrganizationModel = z.infer<typeof OrganizationModelSchema>;
|
|
1514
1635
|
|
|
1515
|
-
declare const LinkSchema: z.ZodObject<{
|
|
1516
|
-
nodeId: z.ZodString;
|
|
1517
|
-
kind: z.ZodEnum<{
|
|
1518
|
-
links: "links";
|
|
1519
|
-
affects: "affects";
|
|
1520
|
-
effects: "effects";
|
|
1521
|
-
implements: "implements";
|
|
1522
|
-
reads: "reads";
|
|
1523
|
-
writes: "writes";
|
|
1524
|
-
emits: "emits";
|
|
1525
|
-
contains: "contains";
|
|
1526
|
-
references: "references";
|
|
1527
|
-
maps_to: "maps_to";
|
|
1528
|
-
uses: "uses";
|
|
1529
|
-
governs: "governs";
|
|
1530
|
-
originates_from: "originates_from";
|
|
1531
|
-
triggers: "triggers";
|
|
1532
|
-
applies_to: "applies_to";
|
|
1533
|
-
uses_catalog: "uses_catalog";
|
|
1534
|
-
}>;
|
|
1535
|
-
}, z.core.$strip>;
|
|
1536
|
-
type Link = z.infer<typeof LinkSchema>;
|
|
1537
|
-
|
|
1538
1636
|
declare const ResourceCategorySchema: z.ZodEnum<{
|
|
1539
1637
|
diagnostic: "diagnostic";
|
|
1540
1638
|
production: "production";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, ExecuteWorkflowModal, ExecutionPanel, 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, ExecuteWorkflowModal, ExecutionPanel, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-YENKDBUU.js';
|
|
2
2
|
import '../../chunk-CXY7FMUM.js';
|
|
3
3
|
import '../../chunk-ZTWA5H77.js';
|
|
4
|
-
import '../../chunk-
|
|
4
|
+
import '../../chunk-KW7ZNQD7.js';
|
|
5
5
|
import '../../chunk-N55DVMAG.js';
|
|
6
6
|
import '../../chunk-CLDCYJQT.js';
|
|
7
|
-
export { DashboardOperationsOverview, OperationsOverview } from '../../chunk-
|
|
7
|
+
export { DashboardOperationsOverview, OperationsOverview } from '../../chunk-2VYMDNJ3.js';
|
|
8
8
|
import '../../chunk-3MEXPLWT.js';
|
|
9
|
-
import '../../chunk-
|
|
9
|
+
import '../../chunk-F3MXFE72.js';
|
|
10
10
|
import '../../chunk-LGKLC5MG.js';
|
|
11
11
|
import '../../chunk-4DYOXEH6.js';
|
|
12
12
|
import '../../chunk-VNFR57DF.js';
|
|
@@ -17,26 +17,26 @@ import '../../chunk-R66W5UDG.js';
|
|
|
17
17
|
import '../../chunk-22UVE3RA.js';
|
|
18
18
|
import '../../chunk-E4WQGJNS.js';
|
|
19
19
|
import '../../chunk-7M2VOCYN.js';
|
|
20
|
-
import '../../chunk-
|
|
20
|
+
import '../../chunk-SWMQTF2H.js';
|
|
21
21
|
import '../../chunk-VNAZTCHA.js';
|
|
22
22
|
import '../../chunk-XZGSCABI.js';
|
|
23
23
|
import '../../chunk-BRXELOHC.js';
|
|
24
24
|
import '../../chunk-3ZMAGTWF.js';
|
|
25
|
-
import '../../chunk-
|
|
26
|
-
import '../../chunk-
|
|
25
|
+
import '../../chunk-FOUYP4JX.js';
|
|
26
|
+
import '../../chunk-53436UTQ.js';
|
|
27
27
|
import '../../chunk-RQA2EVN3.js';
|
|
28
28
|
import '../../chunk-3FV6HBXS.js';
|
|
29
29
|
import '../../chunk-WLOQ4IBG.js';
|
|
30
|
-
import '../../chunk-
|
|
30
|
+
import '../../chunk-PIS24NIV.js';
|
|
31
31
|
import '../../chunk-EPTHX4VZ.js';
|
|
32
32
|
import '../../chunk-3KMDHCAR.js';
|
|
33
|
-
import '../../chunk-
|
|
33
|
+
import '../../chunk-WGUEIGPC.js';
|
|
34
34
|
import '../../chunk-SZHARWKU.js';
|
|
35
|
-
import '../../chunk-
|
|
35
|
+
import '../../chunk-WJOE76FI.js';
|
|
36
36
|
import '../../chunk-TKAYX2SP.js';
|
|
37
37
|
import '../../chunk-NYBEU5TE.js';
|
|
38
38
|
import '../../chunk-DWXDNT7P.js';
|
|
39
|
-
import '../../chunk-
|
|
39
|
+
import '../../chunk-DYIDXUJS.js';
|
|
40
40
|
import '../../chunk-ND5TDV2J.js';
|
|
41
41
|
import '../../chunk-2IFYDILW.js';
|
|
42
42
|
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -1599,6 +1599,7 @@ type Database = {
|
|
|
1599
1599
|
origin_execution_id: string | null;
|
|
1600
1600
|
output: Json | null;
|
|
1601
1601
|
resource_id: string;
|
|
1602
|
+
resource_snapshot: Json | null;
|
|
1602
1603
|
resource_status: string;
|
|
1603
1604
|
resource_type: string;
|
|
1604
1605
|
resource_version: string | null;
|
|
@@ -1624,6 +1625,7 @@ type Database = {
|
|
|
1624
1625
|
origin_execution_id?: string | null;
|
|
1625
1626
|
output?: Json | null;
|
|
1626
1627
|
resource_id: string;
|
|
1628
|
+
resource_snapshot?: Json | null;
|
|
1627
1629
|
resource_status?: string;
|
|
1628
1630
|
resource_type?: string;
|
|
1629
1631
|
resource_version?: string | null;
|
|
@@ -1649,6 +1651,7 @@ type Database = {
|
|
|
1649
1651
|
origin_execution_id?: string | null;
|
|
1650
1652
|
output?: Json | null;
|
|
1651
1653
|
resource_id?: string;
|
|
1654
|
+
resource_snapshot?: Json | null;
|
|
1652
1655
|
resource_status?: string;
|
|
1653
1656
|
resource_type?: string;
|
|
1654
1657
|
resource_version?: string | null;
|
|
@@ -1,30 +1,30 @@
|
|
|
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-UNVRVCXZ.js';
|
|
2
2
|
import '../../chunk-VNFR57DF.js';
|
|
3
3
|
import '../../chunk-RYTEQBAO.js';
|
|
4
4
|
import '../../chunk-PDHTXPSF.js';
|
|
5
5
|
import '../../chunk-R66W5UDG.js';
|
|
6
6
|
import '../../chunk-JFL3GRD4.js';
|
|
7
7
|
import '../../chunk-7M2VOCYN.js';
|
|
8
|
-
import '../../chunk-
|
|
8
|
+
import '../../chunk-SWMQTF2H.js';
|
|
9
9
|
import '../../chunk-VNAZTCHA.js';
|
|
10
10
|
import '../../chunk-XZGSCABI.js';
|
|
11
11
|
import '../../chunk-BRXELOHC.js';
|
|
12
12
|
import '../../chunk-3ZMAGTWF.js';
|
|
13
|
-
import '../../chunk-
|
|
14
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-FOUYP4JX.js';
|
|
14
|
+
import '../../chunk-53436UTQ.js';
|
|
15
15
|
import '../../chunk-RQA2EVN3.js';
|
|
16
16
|
import '../../chunk-3FV6HBXS.js';
|
|
17
17
|
import '../../chunk-WLOQ4IBG.js';
|
|
18
|
-
import '../../chunk-
|
|
18
|
+
import '../../chunk-PIS24NIV.js';
|
|
19
19
|
import '../../chunk-EPTHX4VZ.js';
|
|
20
20
|
import '../../chunk-3KMDHCAR.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-WGUEIGPC.js';
|
|
22
22
|
import '../../chunk-SZHARWKU.js';
|
|
23
|
-
import '../../chunk-
|
|
23
|
+
import '../../chunk-WJOE76FI.js';
|
|
24
24
|
import '../../chunk-TKAYX2SP.js';
|
|
25
25
|
import '../../chunk-NYBEU5TE.js';
|
|
26
26
|
import '../../chunk-DWXDNT7P.js';
|
|
27
|
-
import '../../chunk-
|
|
27
|
+
import '../../chunk-DYIDXUJS.js';
|
|
28
28
|
import '../../chunk-ND5TDV2J.js';
|
|
29
29
|
import '../../chunk-2IFYDILW.js';
|
|
30
30
|
import '../../chunk-Q7DJKLEN.js';
|
|
@@ -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;
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -321,6 +321,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
321
321
|
id: z.ZodString;
|
|
322
322
|
order: z.ZodDefault<z.ZodNumber>;
|
|
323
323
|
systemPath: z.ZodString;
|
|
324
|
+
title: z.ZodOptional<z.ZodString>;
|
|
325
|
+
description: z.ZodOptional<z.ZodString>;
|
|
324
326
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
325
327
|
status: z.ZodEnum<{
|
|
326
328
|
deprecated: "deprecated";
|
|
@@ -328,7 +330,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
328
330
|
archived: "archived";
|
|
329
331
|
}>;
|
|
330
332
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
331
|
-
|
|
333
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
334
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
332
335
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
333
336
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
334
337
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -348,7 +351,6 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
348
351
|
description: z.ZodOptional<z.ZodString>;
|
|
349
352
|
}, z.core.$strip>>>;
|
|
350
353
|
kind: z.ZodLiteral<"workflow">;
|
|
351
|
-
actionKey: z.ZodOptional<z.ZodString>;
|
|
352
354
|
emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
353
355
|
eventKey: z.ZodString;
|
|
354
356
|
label: z.ZodString;
|
|
@@ -365,6 +367,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
365
367
|
id: z.ZodString;
|
|
366
368
|
order: z.ZodDefault<z.ZodNumber>;
|
|
367
369
|
systemPath: z.ZodString;
|
|
370
|
+
title: z.ZodOptional<z.ZodString>;
|
|
371
|
+
description: z.ZodOptional<z.ZodString>;
|
|
368
372
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
369
373
|
status: z.ZodEnum<{
|
|
370
374
|
deprecated: "deprecated";
|
|
@@ -372,7 +376,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
372
376
|
archived: "archived";
|
|
373
377
|
}>;
|
|
374
378
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
375
|
-
|
|
379
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
380
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
376
381
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
377
382
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
378
383
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -439,6 +444,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
439
444
|
id: z.ZodString;
|
|
440
445
|
order: z.ZodDefault<z.ZodNumber>;
|
|
441
446
|
systemPath: z.ZodString;
|
|
447
|
+
title: z.ZodOptional<z.ZodString>;
|
|
448
|
+
description: z.ZodOptional<z.ZodString>;
|
|
442
449
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
443
450
|
status: z.ZodEnum<{
|
|
444
451
|
deprecated: "deprecated";
|
|
@@ -446,7 +453,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
446
453
|
archived: "archived";
|
|
447
454
|
}>;
|
|
448
455
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
449
|
-
|
|
456
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
457
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
450
458
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
451
459
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
452
460
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -471,6 +479,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
471
479
|
id: z.ZodString;
|
|
472
480
|
order: z.ZodDefault<z.ZodNumber>;
|
|
473
481
|
systemPath: z.ZodString;
|
|
482
|
+
title: z.ZodOptional<z.ZodString>;
|
|
483
|
+
description: z.ZodOptional<z.ZodString>;
|
|
474
484
|
ownerRoleId: z.ZodOptional<z.ZodString>;
|
|
475
485
|
status: z.ZodEnum<{
|
|
476
486
|
deprecated: "deprecated";
|
|
@@ -478,7 +488,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
478
488
|
archived: "archived";
|
|
479
489
|
}>;
|
|
480
490
|
ontology: z.ZodOptional<z.ZodObject<{
|
|
481
|
-
|
|
491
|
+
actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
492
|
+
primaryAction: z.ZodOptional<z.ZodString>;
|
|
482
493
|
reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
483
494
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
484
495
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
@@ -2199,6 +2210,7 @@ type Database = {
|
|
|
2199
2210
|
origin_execution_id: string | null;
|
|
2200
2211
|
output: Json | null;
|
|
2201
2212
|
resource_id: string;
|
|
2213
|
+
resource_snapshot: Json | null;
|
|
2202
2214
|
resource_status: string;
|
|
2203
2215
|
resource_type: string;
|
|
2204
2216
|
resource_version: string | null;
|
|
@@ -2224,6 +2236,7 @@ type Database = {
|
|
|
2224
2236
|
origin_execution_id?: string | null;
|
|
2225
2237
|
output?: Json | null;
|
|
2226
2238
|
resource_id: string;
|
|
2239
|
+
resource_snapshot?: Json | null;
|
|
2227
2240
|
resource_status?: string;
|
|
2228
2241
|
resource_type?: string;
|
|
2229
2242
|
resource_version?: string | null;
|
|
@@ -2249,6 +2262,7 @@ type Database = {
|
|
|
2249
2262
|
origin_execution_id?: string | null;
|
|
2250
2263
|
output?: Json | null;
|
|
2251
2264
|
resource_id?: string;
|
|
2265
|
+
resource_snapshot?: Json | null;
|
|
2252
2266
|
resource_status?: string;
|
|
2253
2267
|
resource_type?: string;
|
|
2254
2268
|
resource_version?: string | null;
|
|
@@ -5413,17 +5427,18 @@ declare const LinkSchema: z.ZodObject<{
|
|
|
5413
5427
|
links: "links";
|
|
5414
5428
|
affects: "affects";
|
|
5415
5429
|
effects: "effects";
|
|
5416
|
-
|
|
5430
|
+
actions: "actions";
|
|
5417
5431
|
reads: "reads";
|
|
5418
5432
|
writes: "writes";
|
|
5419
5433
|
emits: "emits";
|
|
5434
|
+
triggers: "triggers";
|
|
5435
|
+
uses: "uses";
|
|
5436
|
+
approval: "approval";
|
|
5420
5437
|
contains: "contains";
|
|
5421
5438
|
references: "references";
|
|
5422
5439
|
maps_to: "maps_to";
|
|
5423
|
-
uses: "uses";
|
|
5424
5440
|
governs: "governs";
|
|
5425
5441
|
originates_from: "originates_from";
|
|
5426
|
-
triggers: "triggers";
|
|
5427
5442
|
applies_to: "applies_to";
|
|
5428
5443
|
uses_catalog: "uses_catalog";
|
|
5429
5444
|
}>;
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import '../chunk-7M2VOCYN.js';
|
|
2
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useHasPermission, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
2
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useClient, useClientStatus, useClients, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateArtifact, useCreateClient, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteOrgRole, useDeleteRequest, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useDeriveActions, useEffectivePermissions, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useHasPermission, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, useOrganizationPermissions, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSystemHealth, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMemberConfig, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-SWMQTF2H.js';
|
|
3
3
|
export { observabilityKeys, useErrorTrends } from '../chunk-VNAZTCHA.js';
|
|
4
4
|
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateTask, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteMilestone, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateProject as useUpdateDeliveryProject, useUpdateMilestone, useUpdateTask } from '../chunk-XZGSCABI.js';
|
|
5
5
|
import '../chunk-BRXELOHC.js';
|
|
6
6
|
export { useMergedExecution } from '../chunk-3ZMAGTWF.js';
|
|
7
|
-
import '../chunk-
|
|
8
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-FOUYP4JX.js';
|
|
8
|
+
import '../chunk-53436UTQ.js';
|
|
9
9
|
import '../chunk-RQA2EVN3.js';
|
|
10
10
|
import '../chunk-3FV6HBXS.js';
|
|
11
11
|
import '../chunk-WLOQ4IBG.js';
|
|
12
|
-
import '../chunk-
|
|
12
|
+
import '../chunk-PIS24NIV.js';
|
|
13
13
|
import '../chunk-EPTHX4VZ.js';
|
|
14
14
|
import '../chunk-3KMDHCAR.js';
|
|
15
|
-
import '../chunk-
|
|
15
|
+
import '../chunk-WGUEIGPC.js';
|
|
16
16
|
import '../chunk-SZHARWKU.js';
|
|
17
|
-
export { createFeatureAccessHook } from '../chunk-
|
|
17
|
+
export { createFeatureAccessHook } from '../chunk-WJOE76FI.js';
|
|
18
18
|
import '../chunk-TKAYX2SP.js';
|
|
19
19
|
import '../chunk-NYBEU5TE.js';
|
|
20
20
|
import '../chunk-DWXDNT7P.js';
|
|
21
|
-
import '../chunk-
|
|
21
|
+
import '../chunk-DYIDXUJS.js';
|
|
22
22
|
import '../chunk-ND5TDV2J.js';
|
|
23
23
|
import '../chunk-2IFYDILW.js';
|
|
24
24
|
import '../chunk-Q7DJKLEN.js';
|