@elevasis/ui 2.33.2 → 2.34.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/api/index.d.ts +9 -2
- package/dist/api/index.js +1 -1
- package/dist/app/index.css +452 -0
- package/dist/app/index.d.ts +1250 -3
- package/dist/app/index.js +144 -8
- package/dist/charts/index.js +2 -3
- package/dist/{chunk-VGU4ZFYZ.js → chunk-3AJVNMY5.js} +45 -28
- package/dist/chunk-3QXJK5IY.js +25 -0
- package/dist/chunk-4O4MII5S.js +4716 -0
- package/dist/{chunk-KW7ZNQD7.js → chunk-5EYJ2GIN.js} +4 -8
- package/dist/{chunk-OIBHQH5Q.js → chunk-BPQVTIUP.js} +12 -3
- package/dist/{chunk-52K5RFDH.js → chunk-DTFKWZ7A.js} +1098 -2280
- package/dist/{chunk-EPTHX4VZ.js → chunk-HRWLKKWM.js} +11 -2
- package/dist/{chunk-ZMK5Z6KE.js → chunk-IGDYWFNE.js} +2 -2
- package/dist/{chunk-44I4LOH6.js → chunk-IVGI4GDL.js} +3 -3
- package/dist/{chunk-4DYOXEH6.js → chunk-LAWLB6CT.js} +1 -1
- package/dist/{chunk-TGVAIWIL.js → chunk-LRWTWOGP.js} +3 -3
- package/dist/{chunk-O56ESZCQ.js → chunk-MP3GPBPX.js} +3 -3
- package/dist/{chunk-T3J6U77J.js → chunk-NLBQTDOW.js} +12 -17
- package/dist/{chunk-IBWMR4TI.js → chunk-O6JXQ6UQ.js} +1 -2
- package/dist/{chunk-TBVLQRXT.js → chunk-OBBQ2JCM.js} +3 -3
- package/dist/{chunk-GWGQI6V4.js → chunk-PLP3NYPL.js} +80 -171
- package/dist/{chunk-Z2K2EAPL.js → chunk-RIAXZ6AH.js} +5 -6
- package/dist/chunk-SDXSB3HN.js +425 -0
- package/dist/{chunk-JA5ECJJB.js → chunk-VTXTZXAU.js} +156 -4
- package/dist/{chunk-32I2RCGC.js → chunk-W73ZABT6.js} +1 -1
- package/dist/{chunk-2ZZ72TAB.js → chunk-WU4FNWCW.js} +3 -3
- package/dist/{chunk-A4VDJJCV.js → chunk-YNWZIWJL.js} +4 -5
- package/dist/components/index.d.ts +0 -23
- package/dist/components/index.js +27 -448
- package/dist/components/navigation/index.js +4 -6
- package/dist/features/clients/index.js +7 -12
- package/dist/features/crm/index.js +9 -14
- package/dist/features/dashboard/index.d.ts +0 -23
- package/dist/features/dashboard/index.js +9 -14
- package/dist/features/delivery/index.js +8 -13
- package/dist/features/knowledge/index.js +5 -7
- package/dist/features/lead-gen/index.js +9 -14
- package/dist/features/monitoring/index.js +10 -15
- package/dist/features/monitoring/requests/index.js +7 -12
- package/dist/features/operations/index.d.ts +44 -35
- package/dist/features/operations/index.js +12 -17
- package/dist/features/settings/index.js +8 -13
- package/dist/hooks/index.d.ts +20 -27
- package/dist/hooks/index.js +7 -12
- package/dist/hooks/operations/command-view/utils/transformCommandViewData.d.ts +20 -27
- package/dist/hooks/published.d.ts +20 -27
- package/dist/hooks/published.js +7 -12
- package/dist/index.d.ts +53 -38
- package/dist/index.js +8 -13
- package/dist/knowledge/index.d.ts +30 -38
- package/dist/knowledge/index.js +36 -200
- package/dist/{knowledge-search-index-VMAW7FLR.js → knowledge-search-index-ORIJCEZX.js} +3 -3
- package/dist/organization/index.js +1 -2
- package/dist/provider/index.d.ts +24 -31
- package/dist/provider/index.js +6 -11
- package/dist/provider/published.d.ts +24 -31
- package/dist/provider/published.js +5 -9
- package/dist/test-utils/index.d.ts +2 -0
- package/dist/test-utils/index.js +14 -2
- package/dist/test-utils/setup.js +38 -0
- package/dist/types/index.d.ts +20 -27
- package/dist/utils/index.d.ts +0 -23
- package/dist/zustand/index.d.ts +15 -2
- package/dist/zustand/index.js +35 -1
- package/package.json +4 -4
- package/dist/chunk-HUJCU55S.js +0 -159
- package/dist/chunk-IOXOPMYS.js +0 -145
- package/dist/chunk-J2UD7BOH.js +0 -347
- package/dist/chunk-QDFJSUG3.js +0 -13
- package/dist/chunk-SZHARWKU.js +0 -15
- package/dist/chunk-WKW6B5ID.js +0 -29
- package/dist/chunk-XCYKC6OZ.js +0 -1
package/dist/hooks/index.d.ts
CHANGED
|
@@ -336,14 +336,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
336
336
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
337
337
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
338
338
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
339
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
340
|
+
input: z.ZodOptional<z.ZodString>;
|
|
341
|
+
output: z.ZodOptional<z.ZodString>;
|
|
342
|
+
}, z.core.$strip>>;
|
|
339
343
|
}, z.core.$strip>>;
|
|
340
344
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
341
345
|
path: z.ZodString;
|
|
342
346
|
role: z.ZodEnum<{
|
|
343
|
-
schema: "schema";
|
|
344
347
|
config: "config";
|
|
345
348
|
entrypoint: "entrypoint";
|
|
346
349
|
handler: "handler";
|
|
350
|
+
schema: "schema";
|
|
347
351
|
test: "test";
|
|
348
352
|
docs: "docs";
|
|
349
353
|
}>;
|
|
@@ -382,14 +386,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
382
386
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
383
387
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
384
388
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
389
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
390
|
+
input: z.ZodOptional<z.ZodString>;
|
|
391
|
+
output: z.ZodOptional<z.ZodString>;
|
|
392
|
+
}, z.core.$strip>>;
|
|
385
393
|
}, z.core.$strip>>;
|
|
386
394
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
387
395
|
path: z.ZodString;
|
|
388
396
|
role: z.ZodEnum<{
|
|
389
|
-
schema: "schema";
|
|
390
397
|
config: "config";
|
|
391
398
|
entrypoint: "entrypoint";
|
|
392
399
|
handler: "handler";
|
|
400
|
+
schema: "schema";
|
|
393
401
|
test: "test";
|
|
394
402
|
docs: "docs";
|
|
395
403
|
}>;
|
|
@@ -459,14 +467,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
459
467
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
460
468
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
461
469
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
470
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
471
|
+
input: z.ZodOptional<z.ZodString>;
|
|
472
|
+
output: z.ZodOptional<z.ZodString>;
|
|
473
|
+
}, z.core.$strip>>;
|
|
462
474
|
}, z.core.$strip>>;
|
|
463
475
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
464
476
|
path: z.ZodString;
|
|
465
477
|
role: z.ZodEnum<{
|
|
466
|
-
schema: "schema";
|
|
467
478
|
config: "config";
|
|
468
479
|
entrypoint: "entrypoint";
|
|
469
480
|
handler: "handler";
|
|
481
|
+
schema: "schema";
|
|
470
482
|
test: "test";
|
|
471
483
|
docs: "docs";
|
|
472
484
|
}>;
|
|
@@ -494,14 +506,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
494
506
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
495
507
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
496
508
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
509
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
510
|
+
input: z.ZodOptional<z.ZodString>;
|
|
511
|
+
output: z.ZodOptional<z.ZodString>;
|
|
512
|
+
}, z.core.$strip>>;
|
|
497
513
|
}, z.core.$strip>>;
|
|
498
514
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
499
515
|
path: z.ZodString;
|
|
500
516
|
role: z.ZodEnum<{
|
|
501
|
-
schema: "schema";
|
|
502
517
|
config: "config";
|
|
503
518
|
entrypoint: "entrypoint";
|
|
504
519
|
handler: "handler";
|
|
520
|
+
schema: "schema";
|
|
505
521
|
test: "test";
|
|
506
522
|
docs: "docs";
|
|
507
523
|
}>;
|
|
@@ -5027,24 +5043,6 @@ type AIResourceDefinition = SerializedWorkflowDefinition | SerializedAgentDefini
|
|
|
5027
5043
|
*/
|
|
5028
5044
|
type IntegrationType = 'gmail' | 'google-sheets' | 'slack' | 'github' | 'linear' | 'attio' | 'airtable' | 'salesforce' | 'hubspot' | 'stripe' | 'twilio' | 'sendgrid' | 'mailgun' | 'zapier' | 'webhook' | 'apify' | 'instantly' | 'resend' | 'signature-api' | 'dropbox' | 'anymailfinder' | 'tomba' | 'millionverifier';
|
|
5029
5045
|
|
|
5030
|
-
/**
|
|
5031
|
-
* Placeholder discriminated union for ContentNode (Wave 1A).
|
|
5032
|
-
* Wave 2A wires concrete (kind, type) pairs via the registry.
|
|
5033
|
-
*
|
|
5034
|
-
* Per D2: unregistered (kind, type) pairs are allowed and pass through validation.
|
|
5035
|
-
* Per L14: every node carries BOTH `kind` and `type`.
|
|
5036
|
-
*/
|
|
5037
|
-
declare const ContentNodeSchema: z.ZodObject<{
|
|
5038
|
-
label: z.ZodString;
|
|
5039
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5040
|
-
order: z.ZodOptional<z.ZodNumber>;
|
|
5041
|
-
parentContentId: z.ZodOptional<z.ZodString>;
|
|
5042
|
-
kind: z.ZodString;
|
|
5043
|
-
type: z.ZodString;
|
|
5044
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5045
|
-
}, z.core.$strip>;
|
|
5046
|
-
type ContentNode = z.infer<typeof ContentNodeSchema>;
|
|
5047
|
-
|
|
5048
5046
|
type JsonPrimitive = string | number | boolean | null;
|
|
5049
5047
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
5050
5048
|
[key: string]: JsonValue;
|
|
@@ -5086,11 +5084,6 @@ interface SystemEntry {
|
|
|
5086
5084
|
config?: Record<string, JsonValue>;
|
|
5087
5085
|
ontology?: OntologyScope;
|
|
5088
5086
|
systems?: Record<string, SystemEntry>;
|
|
5089
|
-
/**
|
|
5090
|
-
* @deprecated Compatibility-only bridge for old tenant data and migration readers.
|
|
5091
|
-
* Author new semantic catalogs in `ontology` and local settings in `config`.
|
|
5092
|
-
*/
|
|
5093
|
-
content?: Record<string, ContentNode>;
|
|
5094
5087
|
subsystems?: Record<string, SystemEntry>;
|
|
5095
5088
|
}
|
|
5096
5089
|
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,29 +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-IGDYWFNE.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-OIBHQH5Q.js';
|
|
7
|
+
import '../chunk-BPQVTIUP.js';
|
|
9
8
|
import '../chunk-RQA2EVN3.js';
|
|
10
9
|
import '../chunk-3FV6HBXS.js';
|
|
11
10
|
import '../chunk-WLOQ4IBG.js';
|
|
12
|
-
import '../chunk-
|
|
13
|
-
import '../chunk-
|
|
11
|
+
import '../chunk-PLP3NYPL.js';
|
|
12
|
+
import '../chunk-HRWLKKWM.js';
|
|
14
13
|
import '../chunk-3KMDHCAR.js';
|
|
15
|
-
|
|
16
|
-
import '../chunk-SZHARWKU.js';
|
|
17
|
-
export { createFeatureAccessHook } from '../chunk-IBWMR4TI.js';
|
|
14
|
+
export { createFeatureAccessHook } from '../chunk-O6JXQ6UQ.js';
|
|
18
15
|
import '../chunk-TKAYX2SP.js';
|
|
19
16
|
import '../chunk-NYBEU5TE.js';
|
|
20
|
-
import '../chunk-
|
|
21
|
-
import '../chunk-52K5RFDH.js';
|
|
17
|
+
import '../chunk-DTFKWZ7A.js';
|
|
22
18
|
import '../chunk-ND5TDV2J.js';
|
|
23
19
|
import '../chunk-2IFYDILW.js';
|
|
24
20
|
import '../chunk-Q7DJKLEN.js';
|
|
25
|
-
import '../chunk-
|
|
26
|
-
import '../chunk-HUJCU55S.js';
|
|
21
|
+
import '../chunk-VTXTZXAU.js';
|
|
27
22
|
import '../chunk-E565XMTQ.js';
|
|
28
23
|
import '../chunk-JBWJ6WHZ.js';
|
|
29
24
|
import '../chunk-DT3QYZVU.js';
|
|
@@ -24,14 +24,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
24
24
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
25
25
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
26
26
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
27
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
28
|
+
input: z.ZodOptional<z.ZodString>;
|
|
29
|
+
output: z.ZodOptional<z.ZodString>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
27
31
|
}, z.core.$strip>>;
|
|
28
32
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
29
33
|
path: z.ZodString;
|
|
30
34
|
role: z.ZodEnum<{
|
|
31
|
-
schema: "schema";
|
|
32
35
|
config: "config";
|
|
33
36
|
entrypoint: "entrypoint";
|
|
34
37
|
handler: "handler";
|
|
38
|
+
schema: "schema";
|
|
35
39
|
test: "test";
|
|
36
40
|
docs: "docs";
|
|
37
41
|
}>;
|
|
@@ -70,14 +74,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
70
74
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
71
75
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
72
76
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
77
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
78
|
+
input: z.ZodOptional<z.ZodString>;
|
|
79
|
+
output: z.ZodOptional<z.ZodString>;
|
|
80
|
+
}, z.core.$strip>>;
|
|
73
81
|
}, z.core.$strip>>;
|
|
74
82
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
75
83
|
path: z.ZodString;
|
|
76
84
|
role: z.ZodEnum<{
|
|
77
|
-
schema: "schema";
|
|
78
85
|
config: "config";
|
|
79
86
|
entrypoint: "entrypoint";
|
|
80
87
|
handler: "handler";
|
|
88
|
+
schema: "schema";
|
|
81
89
|
test: "test";
|
|
82
90
|
docs: "docs";
|
|
83
91
|
}>;
|
|
@@ -147,14 +155,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
147
155
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
148
156
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
149
157
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
158
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
159
|
+
input: z.ZodOptional<z.ZodString>;
|
|
160
|
+
output: z.ZodOptional<z.ZodString>;
|
|
161
|
+
}, z.core.$strip>>;
|
|
150
162
|
}, z.core.$strip>>;
|
|
151
163
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
152
164
|
path: z.ZodString;
|
|
153
165
|
role: z.ZodEnum<{
|
|
154
|
-
schema: "schema";
|
|
155
166
|
config: "config";
|
|
156
167
|
entrypoint: "entrypoint";
|
|
157
168
|
handler: "handler";
|
|
169
|
+
schema: "schema";
|
|
158
170
|
test: "test";
|
|
159
171
|
docs: "docs";
|
|
160
172
|
}>;
|
|
@@ -182,14 +194,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
182
194
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
183
195
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
184
196
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
197
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
198
|
+
input: z.ZodOptional<z.ZodString>;
|
|
199
|
+
output: z.ZodOptional<z.ZodString>;
|
|
200
|
+
}, z.core.$strip>>;
|
|
185
201
|
}, z.core.$strip>>;
|
|
186
202
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
187
203
|
path: z.ZodString;
|
|
188
204
|
role: z.ZodEnum<{
|
|
189
|
-
schema: "schema";
|
|
190
205
|
config: "config";
|
|
191
206
|
entrypoint: "entrypoint";
|
|
192
207
|
handler: "handler";
|
|
208
|
+
schema: "schema";
|
|
193
209
|
test: "test";
|
|
194
210
|
docs: "docs";
|
|
195
211
|
}>;
|
|
@@ -315,24 +331,6 @@ type OntologyScope = z.infer<typeof OntologyScopeSchema>;
|
|
|
315
331
|
*/
|
|
316
332
|
type IntegrationType = 'gmail' | 'google-sheets' | 'slack' | 'github' | 'linear' | 'attio' | 'airtable' | 'salesforce' | 'hubspot' | 'stripe' | 'twilio' | 'sendgrid' | 'mailgun' | 'zapier' | 'webhook' | 'apify' | 'instantly' | 'resend' | 'signature-api' | 'dropbox' | 'anymailfinder' | 'tomba' | 'millionverifier';
|
|
317
333
|
|
|
318
|
-
/**
|
|
319
|
-
* Placeholder discriminated union for ContentNode (Wave 1A).
|
|
320
|
-
* Wave 2A wires concrete (kind, type) pairs via the registry.
|
|
321
|
-
*
|
|
322
|
-
* Per D2: unregistered (kind, type) pairs are allowed and pass through validation.
|
|
323
|
-
* Per L14: every node carries BOTH `kind` and `type`.
|
|
324
|
-
*/
|
|
325
|
-
declare const ContentNodeSchema: z.ZodObject<{
|
|
326
|
-
label: z.ZodString;
|
|
327
|
-
description: z.ZodOptional<z.ZodString>;
|
|
328
|
-
order: z.ZodOptional<z.ZodNumber>;
|
|
329
|
-
parentContentId: z.ZodOptional<z.ZodString>;
|
|
330
|
-
kind: z.ZodString;
|
|
331
|
-
type: z.ZodString;
|
|
332
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
333
|
-
}, z.core.$strip>;
|
|
334
|
-
type ContentNode = z.infer<typeof ContentNodeSchema>;
|
|
335
|
-
|
|
336
334
|
type JsonPrimitive = string | number | boolean | null;
|
|
337
335
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
338
336
|
[key: string]: JsonValue;
|
|
@@ -374,11 +372,6 @@ interface SystemEntry {
|
|
|
374
372
|
config?: Record<string, JsonValue>;
|
|
375
373
|
ontology?: OntologyScope;
|
|
376
374
|
systems?: Record<string, SystemEntry>;
|
|
377
|
-
/**
|
|
378
|
-
* @deprecated Compatibility-only bridge for old tenant data and migration readers.
|
|
379
|
-
* Author new semantic catalogs in `ontology` and local settings in `config`.
|
|
380
|
-
*/
|
|
381
|
-
content?: Record<string, ContentNode>;
|
|
382
375
|
subsystems?: Record<string, SystemEntry>;
|
|
383
376
|
}
|
|
384
377
|
|
|
@@ -336,14 +336,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
336
336
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
337
337
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
338
338
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
339
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
340
|
+
input: z.ZodOptional<z.ZodString>;
|
|
341
|
+
output: z.ZodOptional<z.ZodString>;
|
|
342
|
+
}, z.core.$strip>>;
|
|
339
343
|
}, z.core.$strip>>;
|
|
340
344
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
341
345
|
path: z.ZodString;
|
|
342
346
|
role: z.ZodEnum<{
|
|
343
|
-
schema: "schema";
|
|
344
347
|
config: "config";
|
|
345
348
|
entrypoint: "entrypoint";
|
|
346
349
|
handler: "handler";
|
|
350
|
+
schema: "schema";
|
|
347
351
|
test: "test";
|
|
348
352
|
docs: "docs";
|
|
349
353
|
}>;
|
|
@@ -382,14 +386,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
382
386
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
383
387
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
384
388
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
389
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
390
|
+
input: z.ZodOptional<z.ZodString>;
|
|
391
|
+
output: z.ZodOptional<z.ZodString>;
|
|
392
|
+
}, z.core.$strip>>;
|
|
385
393
|
}, z.core.$strip>>;
|
|
386
394
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
387
395
|
path: z.ZodString;
|
|
388
396
|
role: z.ZodEnum<{
|
|
389
|
-
schema: "schema";
|
|
390
397
|
config: "config";
|
|
391
398
|
entrypoint: "entrypoint";
|
|
392
399
|
handler: "handler";
|
|
400
|
+
schema: "schema";
|
|
393
401
|
test: "test";
|
|
394
402
|
docs: "docs";
|
|
395
403
|
}>;
|
|
@@ -459,14 +467,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
459
467
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
460
468
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
461
469
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
470
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
471
|
+
input: z.ZodOptional<z.ZodString>;
|
|
472
|
+
output: z.ZodOptional<z.ZodString>;
|
|
473
|
+
}, z.core.$strip>>;
|
|
462
474
|
}, z.core.$strip>>;
|
|
463
475
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
464
476
|
path: z.ZodString;
|
|
465
477
|
role: z.ZodEnum<{
|
|
466
|
-
schema: "schema";
|
|
467
478
|
config: "config";
|
|
468
479
|
entrypoint: "entrypoint";
|
|
469
480
|
handler: "handler";
|
|
481
|
+
schema: "schema";
|
|
470
482
|
test: "test";
|
|
471
483
|
docs: "docs";
|
|
472
484
|
}>;
|
|
@@ -494,14 +506,18 @@ declare const ResourceEntrySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
494
506
|
writes: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
495
507
|
usesCatalogs: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
496
508
|
emits: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
509
|
+
contract: z.ZodOptional<z.ZodObject<{
|
|
510
|
+
input: z.ZodOptional<z.ZodString>;
|
|
511
|
+
output: z.ZodOptional<z.ZodString>;
|
|
512
|
+
}, z.core.$strip>>;
|
|
497
513
|
}, z.core.$strip>>;
|
|
498
514
|
codeRefs: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
499
515
|
path: z.ZodString;
|
|
500
516
|
role: z.ZodEnum<{
|
|
501
|
-
schema: "schema";
|
|
502
517
|
config: "config";
|
|
503
518
|
entrypoint: "entrypoint";
|
|
504
519
|
handler: "handler";
|
|
520
|
+
schema: "schema";
|
|
505
521
|
test: "test";
|
|
506
522
|
docs: "docs";
|
|
507
523
|
}>;
|
|
@@ -5027,24 +5043,6 @@ type AIResourceDefinition = SerializedWorkflowDefinition | SerializedAgentDefini
|
|
|
5027
5043
|
*/
|
|
5028
5044
|
type IntegrationType = 'gmail' | 'google-sheets' | 'slack' | 'github' | 'linear' | 'attio' | 'airtable' | 'salesforce' | 'hubspot' | 'stripe' | 'twilio' | 'sendgrid' | 'mailgun' | 'zapier' | 'webhook' | 'apify' | 'instantly' | 'resend' | 'signature-api' | 'dropbox' | 'anymailfinder' | 'tomba' | 'millionverifier';
|
|
5029
5045
|
|
|
5030
|
-
/**
|
|
5031
|
-
* Placeholder discriminated union for ContentNode (Wave 1A).
|
|
5032
|
-
* Wave 2A wires concrete (kind, type) pairs via the registry.
|
|
5033
|
-
*
|
|
5034
|
-
* Per D2: unregistered (kind, type) pairs are allowed and pass through validation.
|
|
5035
|
-
* Per L14: every node carries BOTH `kind` and `type`.
|
|
5036
|
-
*/
|
|
5037
|
-
declare const ContentNodeSchema: z.ZodObject<{
|
|
5038
|
-
label: z.ZodString;
|
|
5039
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5040
|
-
order: z.ZodOptional<z.ZodNumber>;
|
|
5041
|
-
parentContentId: z.ZodOptional<z.ZodString>;
|
|
5042
|
-
kind: z.ZodString;
|
|
5043
|
-
type: z.ZodString;
|
|
5044
|
-
data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5045
|
-
}, z.core.$strip>;
|
|
5046
|
-
type ContentNode = z.infer<typeof ContentNodeSchema>;
|
|
5047
|
-
|
|
5048
5046
|
type JsonPrimitive = string | number | boolean | null;
|
|
5049
5047
|
type JsonValue = JsonPrimitive | JsonValue[] | {
|
|
5050
5048
|
[key: string]: JsonValue;
|
|
@@ -5086,11 +5084,6 @@ interface SystemEntry {
|
|
|
5086
5084
|
config?: Record<string, JsonValue>;
|
|
5087
5085
|
ontology?: OntologyScope;
|
|
5088
5086
|
systems?: Record<string, SystemEntry>;
|
|
5089
|
-
/**
|
|
5090
|
-
* @deprecated Compatibility-only bridge for old tenant data and migration readers.
|
|
5091
|
-
* Author new semantic catalogs in `ontology` and local settings in `config`.
|
|
5092
|
-
*/
|
|
5093
|
-
content?: Record<string, ContentNode>;
|
|
5094
5087
|
subsystems?: Record<string, SystemEntry>;
|
|
5095
5088
|
}
|
|
5096
5089
|
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,28 +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-
|
|
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-IGDYWFNE.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-
|
|
7
|
-
import '../chunk-OIBHQH5Q.js';
|
|
6
|
+
import '../chunk-BPQVTIUP.js';
|
|
8
7
|
import '../chunk-RQA2EVN3.js';
|
|
9
8
|
import '../chunk-3FV6HBXS.js';
|
|
10
9
|
import '../chunk-WLOQ4IBG.js';
|
|
11
|
-
import '../chunk-
|
|
12
|
-
import '../chunk-
|
|
10
|
+
import '../chunk-PLP3NYPL.js';
|
|
11
|
+
import '../chunk-HRWLKKWM.js';
|
|
13
12
|
import '../chunk-3KMDHCAR.js';
|
|
14
|
-
|
|
15
|
-
import '../chunk-SZHARWKU.js';
|
|
16
|
-
export { createFeatureAccessHook } from '../chunk-IBWMR4TI.js';
|
|
13
|
+
export { createFeatureAccessHook } from '../chunk-O6JXQ6UQ.js';
|
|
17
14
|
import '../chunk-TKAYX2SP.js';
|
|
18
15
|
import '../chunk-NYBEU5TE.js';
|
|
19
|
-
import '../chunk-
|
|
20
|
-
import '../chunk-52K5RFDH.js';
|
|
16
|
+
import '../chunk-DTFKWZ7A.js';
|
|
21
17
|
import '../chunk-ND5TDV2J.js';
|
|
22
18
|
import '../chunk-2IFYDILW.js';
|
|
23
19
|
import '../chunk-Q7DJKLEN.js';
|
|
24
|
-
import '../chunk-
|
|
25
|
-
import '../chunk-HUJCU55S.js';
|
|
20
|
+
import '../chunk-VTXTZXAU.js';
|
|
26
21
|
import '../chunk-E565XMTQ.js';
|
|
27
22
|
import '../chunk-JBWJ6WHZ.js';
|
|
28
23
|
import '../chunk-DT3QYZVU.js';
|