@elevasis/ui 2.33.0 → 2.33.2

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.
Files changed (63) hide show
  1. package/dist/app/index.d.ts +3 -0
  2. package/dist/app/index.js +3 -3
  3. package/dist/{chunk-TKF5S4XP.js → chunk-2ZZ72TAB.js} +1 -1
  4. package/dist/{chunk-XG57WXOL.js → chunk-32I2RCGC.js} +1 -1
  5. package/dist/{chunk-52NLZN6Z.js → chunk-44I4LOH6.js} +2 -2
  6. package/dist/{chunk-GNRMB6DC.js → chunk-52K5RFDH.js} +161 -14
  7. package/dist/{chunk-UVFOURXR.js → chunk-A4VDJJCV.js} +4 -4
  8. package/dist/{chunk-UW7IV2Y3.js → chunk-GWGQI6V4.js} +1 -1
  9. package/dist/{chunk-ZGTDKH3P.js → chunk-IBWMR4TI.js} +6 -4
  10. package/dist/{chunk-DWXDNT7P.js → chunk-IOXOPMYS.js} +1 -1
  11. package/dist/{chunk-QNOVUCSV.js → chunk-J2UD7BOH.js} +1 -1
  12. package/dist/{chunk-E4T2N7P7.js → chunk-KW7ZNQD7.js} +4 -2
  13. package/dist/{chunk-IUKFNASA.js → chunk-O56ESZCQ.js} +1 -1
  14. package/dist/{chunk-E7C4XEWH.js → chunk-OIBHQH5Q.js} +1 -1
  15. package/dist/{chunk-AHCKOU2M.js → chunk-QDFJSUG3.js} +1 -1
  16. package/dist/{chunk-JHT5JIJ3.js → chunk-T3J6U77J.js} +8 -8
  17. package/dist/{chunk-MHLZ4F4N.js → chunk-TBVLQRXT.js} +1 -1
  18. package/dist/{chunk-NOIRGGW2.js → chunk-TGVAIWIL.js} +1 -1
  19. package/dist/{chunk-XOFSMJLF.js → chunk-VGU4ZFYZ.js} +4 -4
  20. package/dist/{chunk-FFPHJBJC.js → chunk-WKW6B5ID.js} +1 -1
  21. package/dist/{chunk-YAQ25UNM.js → chunk-Z2K2EAPL.js} +9 -4
  22. package/dist/{chunk-2GMF5IRF.js → chunk-ZMK5Z6KE.js} +2 -2
  23. package/dist/components/index.d.ts +7 -3
  24. package/dist/components/index.js +22 -22
  25. package/dist/components/navigation/index.js +4 -4
  26. package/dist/execution/index.d.ts +4 -3
  27. package/dist/features/auth/index.d.ts +3 -0
  28. package/dist/features/clients/index.js +8 -8
  29. package/dist/features/crm/index.d.ts +3 -0
  30. package/dist/features/crm/index.js +10 -10
  31. package/dist/features/dashboard/index.d.ts +4 -3
  32. package/dist/features/dashboard/index.js +9 -9
  33. package/dist/features/delivery/index.d.ts +3 -0
  34. package/dist/features/delivery/index.js +9 -9
  35. package/dist/features/knowledge/index.js +5 -5
  36. package/dist/features/lead-gen/index.js +10 -10
  37. package/dist/features/monitoring/index.js +10 -10
  38. package/dist/features/monitoring/requests/index.js +8 -8
  39. package/dist/features/operations/index.d.ts +131 -33
  40. package/dist/features/operations/index.js +12 -12
  41. package/dist/features/settings/index.d.ts +3 -0
  42. package/dist/features/settings/index.js +9 -9
  43. package/dist/hooks/delivery/index.d.ts +3 -0
  44. package/dist/hooks/index.d.ts +23 -8
  45. package/dist/hooks/index.js +8 -8
  46. package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +20 -8
  47. package/dist/hooks/published.d.ts +23 -8
  48. package/dist/hooks/published.js +8 -8
  49. package/dist/index.d.ts +135 -34
  50. package/dist/index.js +8 -8
  51. package/dist/initialization/index.d.ts +3 -0
  52. package/dist/knowledge/index.d.ts +92 -6
  53. package/dist/knowledge/index.js +7 -8
  54. package/dist/{knowledge-search-index-P7PR626V.js → knowledge-search-index-VMAW7FLR.js} +139 -147
  55. package/dist/profile/index.d.ts +3 -0
  56. package/dist/provider/index.d.ts +95 -6
  57. package/dist/provider/index.js +7 -7
  58. package/dist/provider/published.d.ts +95 -6
  59. package/dist/provider/published.js +5 -5
  60. package/dist/supabase/index.d.ts +6 -0
  61. package/dist/types/index.d.ts +23 -8
  62. package/dist/utils/index.d.ts +4 -3
  63. package/package.json +5 -5
@@ -9,6 +9,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
9
9
  id: z.ZodString;
10
10
  order: z.ZodDefault<z.ZodNumber>;
11
11
  systemPath: z.ZodString;
12
+ title: z.ZodOptional<z.ZodString>;
13
+ description: z.ZodOptional<z.ZodString>;
12
14
  ownerRoleId: z.ZodOptional<z.ZodString>;
13
15
  status: z.ZodEnum<{
14
16
  deprecated: "deprecated";
@@ -16,7 +18,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
16
18
  archived: "archived";
17
19
  }>;
18
20
  ontology: z.ZodOptional<z.ZodObject<{
19
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
21
+ actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
22
+ primaryAction: z.ZodOptional<z.ZodString>;
20
23
  reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
21
24
  writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
22
25
  usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -36,7 +39,6 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
36
39
  description: z.ZodOptional<z.ZodString>;
37
40
  }, z.core.$strip>>>;
38
41
  kind: z.ZodLiteral<"workflow">;
39
- actionKey: z.ZodOptional<z.ZodString>;
40
42
  emits: z.ZodOptional<z.ZodArray<z.ZodObject<{
41
43
  eventKey: z.ZodString;
42
44
  label: z.ZodString;
@@ -53,6 +55,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
53
55
  id: z.ZodString;
54
56
  order: z.ZodDefault<z.ZodNumber>;
55
57
  systemPath: z.ZodString;
58
+ title: z.ZodOptional<z.ZodString>;
59
+ description: z.ZodOptional<z.ZodString>;
56
60
  ownerRoleId: z.ZodOptional<z.ZodString>;
57
61
  status: z.ZodEnum<{
58
62
  deprecated: "deprecated";
@@ -60,7 +64,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
60
64
  archived: "archived";
61
65
  }>;
62
66
  ontology: z.ZodOptional<z.ZodObject<{
63
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
67
+ actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
68
+ primaryAction: z.ZodOptional<z.ZodString>;
64
69
  reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
65
70
  writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
66
71
  usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -127,6 +132,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
127
132
  id: z.ZodString;
128
133
  order: z.ZodDefault<z.ZodNumber>;
129
134
  systemPath: z.ZodString;
135
+ title: z.ZodOptional<z.ZodString>;
136
+ description: z.ZodOptional<z.ZodString>;
130
137
  ownerRoleId: z.ZodOptional<z.ZodString>;
131
138
  status: z.ZodEnum<{
132
139
  deprecated: "deprecated";
@@ -134,7 +141,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
134
141
  archived: "archived";
135
142
  }>;
136
143
  ontology: z.ZodOptional<z.ZodObject<{
137
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
144
+ actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
145
+ primaryAction: z.ZodOptional<z.ZodString>;
138
146
  reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
139
147
  writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
140
148
  usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -159,6 +167,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
159
167
  id: z.ZodString;
160
168
  order: z.ZodDefault<z.ZodNumber>;
161
169
  systemPath: z.ZodString;
170
+ title: z.ZodOptional<z.ZodString>;
171
+ description: z.ZodOptional<z.ZodString>;
162
172
  ownerRoleId: z.ZodOptional<z.ZodString>;
163
173
  status: z.ZodEnum<{
164
174
  deprecated: "deprecated";
@@ -166,7 +176,8 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
166
176
  archived: "archived";
167
177
  }>;
168
178
  ontology: z.ZodOptional<z.ZodObject<{
169
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
179
+ actions: z.ZodOptional<z.ZodArray<z.ZodString>>;
180
+ primaryAction: z.ZodOptional<z.ZodString>;
170
181
  reads: z.ZodOptional<z.ZodArray<z.ZodString>>;
171
182
  writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
172
183
  usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -704,17 +715,18 @@ declare const LinkSchema: z.ZodObject<{
704
715
  links: "links";
705
716
  affects: "affects";
706
717
  effects: "effects";
707
- implements: "implements";
718
+ actions: "actions";
708
719
  reads: "reads";
709
720
  writes: "writes";
710
721
  emits: "emits";
722
+ triggers: "triggers";
723
+ uses: "uses";
724
+ approval: "approval";
711
725
  contains: "contains";
712
726
  references: "references";
713
727
  maps_to: "maps_to";
714
- uses: "uses";
715
728
  governs: "governs";
716
729
  originates_from: "originates_from";
717
- triggers: "triggers";
718
730
  applies_to: "applies_to";
719
731
  uses_catalog: "uses_catalog";
720
732
  }>;
@@ -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
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
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
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
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
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
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
- implements: z.ZodOptional<z.ZodArray<z.ZodString>>;
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
- implements: "implements";
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
  }>;
@@ -1,23 +1,23 @@
1
- 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-2GMF5IRF.js';
1
+ 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-ZMK5Z6KE.js';
2
2
  export { observabilityKeys, useErrorTrends } from '../chunk-VNAZTCHA.js';
3
3
  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';
4
4
  import '../chunk-BRXELOHC.js';
5
5
  export { useMergedExecution } from '../chunk-3ZMAGTWF.js';
6
- import '../chunk-AHCKOU2M.js';
7
- import '../chunk-E7C4XEWH.js';
6
+ import '../chunk-QDFJSUG3.js';
7
+ import '../chunk-OIBHQH5Q.js';
8
8
  import '../chunk-RQA2EVN3.js';
9
9
  import '../chunk-3FV6HBXS.js';
10
10
  import '../chunk-WLOQ4IBG.js';
11
- import '../chunk-FFPHJBJC.js';
11
+ import '../chunk-WKW6B5ID.js';
12
12
  import '../chunk-EPTHX4VZ.js';
13
13
  import '../chunk-3KMDHCAR.js';
14
- import '../chunk-UW7IV2Y3.js';
14
+ import '../chunk-GWGQI6V4.js';
15
15
  import '../chunk-SZHARWKU.js';
16
- export { createFeatureAccessHook } from '../chunk-ZGTDKH3P.js';
16
+ export { createFeatureAccessHook } from '../chunk-IBWMR4TI.js';
17
17
  import '../chunk-TKAYX2SP.js';
18
18
  import '../chunk-NYBEU5TE.js';
19
- import '../chunk-DWXDNT7P.js';
20
- import '../chunk-GNRMB6DC.js';
19
+ import '../chunk-IOXOPMYS.js';
20
+ import '../chunk-52K5RFDH.js';
21
21
  import '../chunk-ND5TDV2J.js';
22
22
  import '../chunk-2IFYDILW.js';
23
23
  import '../chunk-Q7DJKLEN.js';
package/dist/index.d.ts CHANGED
@@ -449,6 +449,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
449
449
  id: z$1.ZodString;
450
450
  order: z$1.ZodDefault<z$1.ZodNumber>;
451
451
  systemPath: z$1.ZodString;
452
+ title: z$1.ZodOptional<z$1.ZodString>;
453
+ description: z$1.ZodOptional<z$1.ZodString>;
452
454
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
453
455
  status: z$1.ZodEnum<{
454
456
  deprecated: "deprecated";
@@ -456,7 +458,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
456
458
  archived: "archived";
457
459
  }>;
458
460
  ontology: z$1.ZodOptional<z$1.ZodObject<{
459
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
461
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
462
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
460
463
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
461
464
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
462
465
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -476,7 +479,6 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
476
479
  description: z$1.ZodOptional<z$1.ZodString>;
477
480
  }, z$1.core.$strip>>>;
478
481
  kind: z$1.ZodLiteral<"workflow">;
479
- actionKey: z$1.ZodOptional<z$1.ZodString>;
480
482
  emits: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
481
483
  eventKey: z$1.ZodString;
482
484
  label: z$1.ZodString;
@@ -493,6 +495,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
493
495
  id: z$1.ZodString;
494
496
  order: z$1.ZodDefault<z$1.ZodNumber>;
495
497
  systemPath: z$1.ZodString;
498
+ title: z$1.ZodOptional<z$1.ZodString>;
499
+ description: z$1.ZodOptional<z$1.ZodString>;
496
500
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
497
501
  status: z$1.ZodEnum<{
498
502
  deprecated: "deprecated";
@@ -500,7 +504,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
500
504
  archived: "archived";
501
505
  }>;
502
506
  ontology: z$1.ZodOptional<z$1.ZodObject<{
503
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
507
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
508
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
504
509
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
505
510
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
506
511
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -567,6 +572,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
567
572
  id: z$1.ZodString;
568
573
  order: z$1.ZodDefault<z$1.ZodNumber>;
569
574
  systemPath: z$1.ZodString;
575
+ title: z$1.ZodOptional<z$1.ZodString>;
576
+ description: z$1.ZodOptional<z$1.ZodString>;
570
577
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
571
578
  status: z$1.ZodEnum<{
572
579
  deprecated: "deprecated";
@@ -574,7 +581,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
574
581
  archived: "archived";
575
582
  }>;
576
583
  ontology: z$1.ZodOptional<z$1.ZodObject<{
577
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
584
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
585
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
578
586
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
579
587
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
580
588
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -599,6 +607,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
599
607
  id: z$1.ZodString;
600
608
  order: z$1.ZodDefault<z$1.ZodNumber>;
601
609
  systemPath: z$1.ZodString;
610
+ title: z$1.ZodOptional<z$1.ZodString>;
611
+ description: z$1.ZodOptional<z$1.ZodString>;
602
612
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
603
613
  status: z$1.ZodEnum<{
604
614
  deprecated: "deprecated";
@@ -606,7 +616,8 @@ declare const ResourceEntrySchema: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
606
616
  archived: "archived";
607
617
  }>;
608
618
  ontology: z$1.ZodOptional<z$1.ZodObject<{
609
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
619
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
620
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
610
621
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
611
622
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
612
623
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -2400,6 +2411,7 @@ type Database = {
2400
2411
  origin_execution_id: string | null;
2401
2412
  output: Json | null;
2402
2413
  resource_id: string;
2414
+ resource_snapshot: Json | null;
2403
2415
  resource_status: string;
2404
2416
  resource_type: string;
2405
2417
  resource_version: string | null;
@@ -2425,6 +2437,7 @@ type Database = {
2425
2437
  origin_execution_id?: string | null;
2426
2438
  output?: Json | null;
2427
2439
  resource_id: string;
2440
+ resource_snapshot?: Json | null;
2428
2441
  resource_status?: string;
2429
2442
  resource_type?: string;
2430
2443
  resource_version?: string | null;
@@ -2450,6 +2463,7 @@ type Database = {
2450
2463
  origin_execution_id?: string | null;
2451
2464
  output?: Json | null;
2452
2465
  resource_id?: string;
2466
+ resource_snapshot?: Json | null;
2453
2467
  resource_status?: string;
2454
2468
  resource_type?: string;
2455
2469
  resource_version?: string | null;
@@ -5843,6 +5857,30 @@ interface SidebarGroupNode {
5843
5857
  }
5844
5858
  type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
5845
5859
 
5860
+ declare const LinkSchema: z$1.ZodObject<{
5861
+ nodeId: z$1.ZodString;
5862
+ kind: z$1.ZodEnum<{
5863
+ links: "links";
5864
+ affects: "affects";
5865
+ effects: "effects";
5866
+ actions: "actions";
5867
+ reads: "reads";
5868
+ writes: "writes";
5869
+ emits: "emits";
5870
+ triggers: "triggers";
5871
+ uses: "uses";
5872
+ approval: "approval";
5873
+ contains: "contains";
5874
+ references: "references";
5875
+ maps_to: "maps_to";
5876
+ governs: "governs";
5877
+ originates_from: "originates_from";
5878
+ applies_to: "applies_to";
5879
+ uses_catalog: "uses_catalog";
5880
+ }>;
5881
+ }, z$1.core.$strip>;
5882
+ type Link = z$1.infer<typeof LinkSchema>;
5883
+
5846
5884
  declare const OrganizationModelSchema: z$1.ZodObject<{
5847
5885
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5848
5886
  domainMetadata: z$1.ZodPipe<z$1.ZodDefault<z$1.ZodObject<{
@@ -5882,6 +5920,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5882
5920
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5883
5921
  lastModified: z$1.ZodString;
5884
5922
  }, z$1.core.$strip>>;
5923
+ topology: z$1.ZodOptional<z$1.ZodObject<{
5924
+ version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5925
+ lastModified: z$1.ZodString;
5926
+ }, z$1.core.$strip>>;
5885
5927
  actions: z$1.ZodOptional<z$1.ZodObject<{
5886
5928
  version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
5887
5929
  lastModified: z$1.ZodString;
@@ -5935,6 +5977,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5935
5977
  version: 1;
5936
5978
  lastModified: string;
5937
5979
  };
5980
+ topology: {
5981
+ version: 1;
5982
+ lastModified: string;
5983
+ };
5938
5984
  actions: {
5939
5985
  version: 1;
5940
5986
  lastModified: string;
@@ -5988,6 +6034,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
5988
6034
  version: 1;
5989
6035
  lastModified: string;
5990
6036
  } | undefined;
6037
+ topology?: {
6038
+ version: 1;
6039
+ lastModified: string;
6040
+ } | undefined;
5991
6041
  actions?: {
5992
6042
  version: 1;
5993
6043
  lastModified: string;
@@ -6231,6 +6281,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6231
6281
  id: z$1.ZodString;
6232
6282
  order: z$1.ZodDefault<z$1.ZodNumber>;
6233
6283
  systemPath: z$1.ZodString;
6284
+ title: z$1.ZodOptional<z$1.ZodString>;
6285
+ description: z$1.ZodOptional<z$1.ZodString>;
6234
6286
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
6235
6287
  status: z$1.ZodEnum<{
6236
6288
  deprecated: "deprecated";
@@ -6238,7 +6290,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6238
6290
  archived: "archived";
6239
6291
  }>;
6240
6292
  ontology: z$1.ZodOptional<z$1.ZodObject<{
6241
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6293
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6294
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
6242
6295
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6243
6296
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6244
6297
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -6258,7 +6311,6 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6258
6311
  description: z$1.ZodOptional<z$1.ZodString>;
6259
6312
  }, z$1.core.$strip>>>;
6260
6313
  kind: z$1.ZodLiteral<"workflow">;
6261
- actionKey: z$1.ZodOptional<z$1.ZodString>;
6262
6314
  emits: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
6263
6315
  eventKey: z$1.ZodString;
6264
6316
  label: z$1.ZodString;
@@ -6275,6 +6327,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6275
6327
  id: z$1.ZodString;
6276
6328
  order: z$1.ZodDefault<z$1.ZodNumber>;
6277
6329
  systemPath: z$1.ZodString;
6330
+ title: z$1.ZodOptional<z$1.ZodString>;
6331
+ description: z$1.ZodOptional<z$1.ZodString>;
6278
6332
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
6279
6333
  status: z$1.ZodEnum<{
6280
6334
  deprecated: "deprecated";
@@ -6282,7 +6336,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6282
6336
  archived: "archived";
6283
6337
  }>;
6284
6338
  ontology: z$1.ZodOptional<z$1.ZodObject<{
6285
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6339
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6340
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
6286
6341
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6287
6342
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6288
6343
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -6349,6 +6404,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6349
6404
  id: z$1.ZodString;
6350
6405
  order: z$1.ZodDefault<z$1.ZodNumber>;
6351
6406
  systemPath: z$1.ZodString;
6407
+ title: z$1.ZodOptional<z$1.ZodString>;
6408
+ description: z$1.ZodOptional<z$1.ZodString>;
6352
6409
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
6353
6410
  status: z$1.ZodEnum<{
6354
6411
  deprecated: "deprecated";
@@ -6356,7 +6413,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6356
6413
  archived: "archived";
6357
6414
  }>;
6358
6415
  ontology: z$1.ZodOptional<z$1.ZodObject<{
6359
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6416
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6417
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
6360
6418
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6361
6419
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6362
6420
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -6381,6 +6439,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6381
6439
  id: z$1.ZodString;
6382
6440
  order: z$1.ZodDefault<z$1.ZodNumber>;
6383
6441
  systemPath: z$1.ZodString;
6442
+ title: z$1.ZodOptional<z$1.ZodString>;
6443
+ description: z$1.ZodOptional<z$1.ZodString>;
6384
6444
  ownerRoleId: z$1.ZodOptional<z$1.ZodString>;
6385
6445
  status: z$1.ZodEnum<{
6386
6446
  deprecated: "deprecated";
@@ -6388,7 +6448,8 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6388
6448
  archived: "archived";
6389
6449
  }>;
6390
6450
  ontology: z$1.ZodOptional<z$1.ZodObject<{
6391
- implements: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6451
+ actions: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6452
+ primaryAction: z$1.ZodOptional<z$1.ZodString>;
6392
6453
  reads: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6393
6454
  writes: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
6394
6455
  usesCatalogs: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
@@ -6418,6 +6479,69 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6418
6479
  file: z$1.ZodString;
6419
6480
  }, z$1.core.$strip>]>;
6420
6481
  }, z$1.core.$strip>], "kind">>>>;
6482
+ topology: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodObject<{
6483
+ version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
6484
+ relationships: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
6485
+ from: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
6486
+ kind: z$1.ZodLiteral<"system">;
6487
+ id: z$1.ZodString;
6488
+ }, z$1.core.$strip>, z$1.ZodObject<{
6489
+ kind: z$1.ZodLiteral<"resource">;
6490
+ id: z$1.ZodString;
6491
+ }, z$1.core.$strip>, z$1.ZodObject<{
6492
+ kind: z$1.ZodLiteral<"ontology">;
6493
+ id: z$1.ZodString;
6494
+ }, z$1.core.$strip>, z$1.ZodObject<{
6495
+ kind: z$1.ZodLiteral<"policy">;
6496
+ id: z$1.ZodString;
6497
+ }, z$1.core.$strip>, z$1.ZodObject<{
6498
+ kind: z$1.ZodLiteral<"role">;
6499
+ id: z$1.ZodString;
6500
+ }, z$1.core.$strip>, z$1.ZodObject<{
6501
+ kind: z$1.ZodLiteral<"trigger">;
6502
+ id: z$1.ZodString;
6503
+ }, z$1.core.$strip>, z$1.ZodObject<{
6504
+ kind: z$1.ZodLiteral<"humanCheckpoint">;
6505
+ id: z$1.ZodString;
6506
+ }, z$1.core.$strip>, z$1.ZodObject<{
6507
+ kind: z$1.ZodLiteral<"externalResource">;
6508
+ id: z$1.ZodString;
6509
+ }, z$1.core.$strip>], "kind">;
6510
+ kind: z$1.ZodEnum<{
6511
+ triggers: "triggers";
6512
+ uses: "uses";
6513
+ approval: "approval";
6514
+ }>;
6515
+ to: z$1.ZodDiscriminatedUnion<[z$1.ZodObject<{
6516
+ kind: z$1.ZodLiteral<"system">;
6517
+ id: z$1.ZodString;
6518
+ }, z$1.core.$strip>, z$1.ZodObject<{
6519
+ kind: z$1.ZodLiteral<"resource">;
6520
+ id: z$1.ZodString;
6521
+ }, z$1.core.$strip>, z$1.ZodObject<{
6522
+ kind: z$1.ZodLiteral<"ontology">;
6523
+ id: z$1.ZodString;
6524
+ }, z$1.core.$strip>, z$1.ZodObject<{
6525
+ kind: z$1.ZodLiteral<"policy">;
6526
+ id: z$1.ZodString;
6527
+ }, z$1.core.$strip>, z$1.ZodObject<{
6528
+ kind: z$1.ZodLiteral<"role">;
6529
+ id: z$1.ZodString;
6530
+ }, z$1.core.$strip>, z$1.ZodObject<{
6531
+ kind: z$1.ZodLiteral<"trigger">;
6532
+ id: z$1.ZodString;
6533
+ }, z$1.core.$strip>, z$1.ZodObject<{
6534
+ kind: z$1.ZodLiteral<"humanCheckpoint">;
6535
+ id: z$1.ZodString;
6536
+ }, z$1.core.$strip>, z$1.ZodObject<{
6537
+ kind: z$1.ZodLiteral<"externalResource">;
6538
+ id: z$1.ZodString;
6539
+ }, z$1.core.$strip>], "kind">;
6540
+ systemPath: z$1.ZodOptional<z$1.ZodString>;
6541
+ required: z$1.ZodOptional<z$1.ZodBoolean>;
6542
+ metadata: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
6543
+ }, z$1.core.$strip>>>;
6544
+ }, z$1.core.$strip>>>;
6421
6545
  actions: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
6422
6546
  id: z$1.ZodString;
6423
6547
  order: z$1.ZodNumber;
@@ -6655,29 +6779,6 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
6655
6779
  type OrganizationModel = z$1.infer<typeof OrganizationModelSchema>;
6656
6780
  type OrganizationModelSystemEntry = z$1.infer<typeof SystemEntrySchema>;
6657
6781
 
6658
- declare const LinkSchema: z$1.ZodObject<{
6659
- nodeId: z$1.ZodString;
6660
- kind: z$1.ZodEnum<{
6661
- links: "links";
6662
- affects: "affects";
6663
- effects: "effects";
6664
- implements: "implements";
6665
- reads: "reads";
6666
- writes: "writes";
6667
- emits: "emits";
6668
- contains: "contains";
6669
- references: "references";
6670
- maps_to: "maps_to";
6671
- uses: "uses";
6672
- governs: "governs";
6673
- originates_from: "originates_from";
6674
- triggers: "triggers";
6675
- applies_to: "applies_to";
6676
- uses_catalog: "uses_catalog";
6677
- }>;
6678
- }, z$1.core.$strip>;
6679
- type Link = z$1.infer<typeof LinkSchema>;
6680
-
6681
6782
  declare const ResourceCategorySchema: z$1.ZodEnum<{
6682
6783
  diagnostic: "diagnostic";
6683
6784
  production: "production";
@@ -8421,7 +8522,7 @@ interface SystemModule {
8421
8522
  organizationGraph?: OrganizationGraphSystemBridge;
8422
8523
  }
8423
8524
  interface ResolvedSystemAccess {
8424
- featureKey: string;
8525
+ systemKey: string;
8425
8526
  systemId?: string;
8426
8527
  enabled: boolean;
8427
8528
  }