@elevasis/ui 2.37.0 → 2.38.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 +55 -2
- package/dist/app/index.js +8 -7
- package/dist/auth/index.d.ts +4 -0
- package/dist/auth/index.js +4 -4
- package/dist/charts/index.js +4 -4
- package/dist/{chunk-JPVZRZ3X.js → chunk-4UCAUBOL.js} +1 -1
- package/dist/{chunk-NWMPBG4U.js → chunk-566XWGPP.js} +76 -109
- package/dist/chunk-6D4LCJ52.js +10 -0
- package/dist/{chunk-CWYQRM5T.js → chunk-7ZWXTH5J.js} +2 -8
- package/dist/{chunk-S3KBYQTI.js → chunk-B2DZLPDL.js} +1 -1
- package/dist/{chunk-NYNOMAAS.js → chunk-C6BDBZRO.js} +1 -1
- package/dist/{chunk-JZ2WID2G.js → chunk-H2MEFUQD.js} +1 -1
- package/dist/{chunk-T3NI7DOA.js → chunk-LWDVD3XR.js} +218 -54
- package/dist/{chunk-LNC6PZAE.js → chunk-M7Q4UBRY.js} +1 -1
- package/dist/{chunk-6NREL3KL.js → chunk-P34FFSOX.js} +1 -1
- package/dist/{chunk-5CTJ7TW2.js → chunk-PGWANFNE.js} +5 -4
- package/dist/{chunk-LCJQ6OWC.js → chunk-YGUNUIME.js} +10 -2
- package/dist/components/index.d.ts +46 -0
- package/dist/components/index.js +11 -10
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.d.ts +45 -0
- package/dist/features/auth/index.js +12 -11
- package/dist/features/clients/index.js +11 -10
- package/dist/features/crm/index.d.ts +45 -0
- package/dist/features/crm/index.js +11 -10
- package/dist/features/dashboard/index.js +11 -10
- package/dist/features/delivery/index.d.ts +45 -0
- package/dist/features/delivery/index.js +11 -10
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +10 -2
- package/dist/features/lead-gen/index.js +11 -10
- package/dist/features/monitoring/index.js +11 -10
- package/dist/features/monitoring/requests/index.js +11 -10
- package/dist/features/operations/index.d.ts +10 -2
- package/dist/features/operations/index.js +11 -10
- package/dist/features/right-panel-host/index.js +0 -1
- package/dist/features/settings/index.d.ts +45 -0
- package/dist/features/settings/index.js +11 -10
- package/dist/hooks/access/index.d.ts +4 -0
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.d.ts +45 -0
- package/dist/hooks/delivery/index.js +11 -10
- package/dist/hooks/index.d.ts +50 -0
- package/dist/hooks/index.js +11 -10
- package/dist/hooks/published.d.ts +50 -0
- package/dist/hooks/published.js +11 -10
- package/dist/index.d.ts +60 -2
- package/dist/index.js +11 -10
- package/dist/initialization/index.d.ts +45 -0
- package/dist/knowledge/index.d.ts +10 -2
- package/dist/knowledge/index.js +167 -25
- package/dist/organization/index.js +11 -10
- package/dist/profile/index.d.ts +45 -0
- package/dist/provider/index.d.ts +55 -2
- package/dist/provider/index.js +8 -7
- package/dist/provider/published.d.ts +55 -2
- package/dist/provider/published.js +5 -5
- package/dist/supabase/index.d.ts +87 -0
- package/dist/theme/index.js +3 -2
- package/dist/types/index.d.ts +45 -0
- package/package.json +5 -5
|
@@ -40,6 +40,7 @@ declare const PERMISSIONS: {
|
|
|
40
40
|
readonly SECRETS_MANAGE: "secrets.manage";
|
|
41
41
|
readonly OPERATIONS_READ: "operations.read";
|
|
42
42
|
readonly OPERATIONS_MANAGE: "operations.manage";
|
|
43
|
+
readonly SALES_LEAD_GEN_MANAGE: "sales.lead-gen.manage";
|
|
43
44
|
readonly ACQUISITION_MANAGE: "acquisition.manage";
|
|
44
45
|
readonly PROJECTS_MANAGE: "projects.manage";
|
|
45
46
|
readonly CLIENTS_MANAGE: "clients.manage";
|
|
@@ -1608,6 +1609,51 @@ type Database = {
|
|
|
1608
1609
|
}
|
|
1609
1610
|
];
|
|
1610
1611
|
};
|
|
1612
|
+
deployment_organization_models: {
|
|
1613
|
+
Row: {
|
|
1614
|
+
created_at: string;
|
|
1615
|
+
deployment_id: string;
|
|
1616
|
+
model_hash: string | null;
|
|
1617
|
+
organization_id: string;
|
|
1618
|
+
organization_model: Json;
|
|
1619
|
+
schema_version: string;
|
|
1620
|
+
updated_at: string;
|
|
1621
|
+
};
|
|
1622
|
+
Insert: {
|
|
1623
|
+
created_at?: string;
|
|
1624
|
+
deployment_id: string;
|
|
1625
|
+
model_hash?: string | null;
|
|
1626
|
+
organization_id: string;
|
|
1627
|
+
organization_model: Json;
|
|
1628
|
+
schema_version?: string;
|
|
1629
|
+
updated_at?: string;
|
|
1630
|
+
};
|
|
1631
|
+
Update: {
|
|
1632
|
+
created_at?: string;
|
|
1633
|
+
deployment_id?: string;
|
|
1634
|
+
model_hash?: string | null;
|
|
1635
|
+
organization_id?: string;
|
|
1636
|
+
organization_model?: Json;
|
|
1637
|
+
schema_version?: string;
|
|
1638
|
+
updated_at?: string;
|
|
1639
|
+
};
|
|
1640
|
+
Relationships: [
|
|
1641
|
+
{
|
|
1642
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
1643
|
+
columns: ["deployment_id"];
|
|
1644
|
+
isOneToOne: true;
|
|
1645
|
+
referencedRelation: "deployments";
|
|
1646
|
+
referencedColumns: ["id"];
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
1650
|
+
columns: ["organization_id"];
|
|
1651
|
+
isOneToOne: false;
|
|
1652
|
+
referencedRelation: "organizations";
|
|
1653
|
+
referencedColumns: ["id"];
|
|
1654
|
+
}
|
|
1655
|
+
];
|
|
1656
|
+
};
|
|
1611
1657
|
deployments: {
|
|
1612
1658
|
Row: {
|
|
1613
1659
|
created_at: string;
|
|
@@ -5500,6 +5546,10 @@ declare const AccessKeys: {
|
|
|
5500
5546
|
readonly systemPath: "permission.operations";
|
|
5501
5547
|
readonly action: "manage";
|
|
5502
5548
|
};
|
|
5549
|
+
readonly leadGenManage: {
|
|
5550
|
+
readonly systemPath: "sales.lead-gen";
|
|
5551
|
+
readonly action: "manage";
|
|
5552
|
+
};
|
|
5503
5553
|
readonly acquisitionManage: {
|
|
5504
5554
|
readonly systemPath: "permission.acquisition";
|
|
5505
5555
|
readonly action: "manage";
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, getResourceFilterFacetIds, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, milestoneKeys, noteKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, 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, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, 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, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, 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, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-
|
|
2
|
-
import '../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, milestoneKeys, noteKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, 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, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, 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, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, 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, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from '../chunk-LWDVD3XR.js';
|
|
2
|
+
import '../chunk-B2DZLPDL.js';
|
|
3
3
|
import '../chunk-SHZT7ULK.js';
|
|
4
4
|
import '../chunk-AUDNF2Q7.js';
|
|
5
5
|
import '../chunk-6M6OLGQY.js';
|
|
6
6
|
import '../chunk-BRXELOHC.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-M7Q4UBRY.js';
|
|
8
8
|
import '../chunk-CXY7FMUM.js';
|
|
9
9
|
export { observabilityKeys, useErrorTrends } from '../chunk-7GQFIWP4.js';
|
|
10
10
|
import '../chunk-JBWJ6WHZ.js';
|
|
@@ -18,11 +18,12 @@ import '../chunk-IIMU5YAJ.js';
|
|
|
18
18
|
import '../chunk-HENXLGVD.js';
|
|
19
19
|
export { useMergedExecution } from '../chunk-7FPLLSHN.js';
|
|
20
20
|
import '../chunk-RNP5R5I3.js';
|
|
21
|
-
import '../chunk-
|
|
22
|
-
import '../chunk-
|
|
21
|
+
import '../chunk-PGWANFNE.js';
|
|
22
|
+
import '../chunk-7ZWXTH5J.js';
|
|
23
|
+
import '../chunk-6D4LCJ52.js';
|
|
23
24
|
import '../chunk-WF7CONXF.js';
|
|
24
25
|
import '../chunk-WLOQ4IBG.js';
|
|
25
|
-
import '../chunk-
|
|
26
|
+
import '../chunk-H2MEFUQD.js';
|
|
26
27
|
import '../chunk-I53EX4VU.js';
|
|
27
28
|
import '../chunk-3KMDHCAR.js';
|
|
28
29
|
import '../chunk-S3XR4II4.js';
|
|
@@ -34,11 +35,11 @@ import '../chunk-2IFYDILW.js';
|
|
|
34
35
|
import '../chunk-Q7DJKLEN.js';
|
|
35
36
|
export { REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY } from '../chunk-X66MVMZT.js';
|
|
36
37
|
import '../chunk-KRWALB24.js';
|
|
37
|
-
import '../chunk-
|
|
38
|
-
export { AccessKeys, useAccess } from '../chunk-
|
|
39
|
-
import '../chunk-
|
|
38
|
+
import '../chunk-4UCAUBOL.js';
|
|
39
|
+
export { AccessKeys, useAccess } from '../chunk-YGUNUIME.js';
|
|
40
|
+
import '../chunk-C6BDBZRO.js';
|
|
40
41
|
import '../chunk-533DUEQY.js';
|
|
41
|
-
import '../chunk-
|
|
42
|
+
import '../chunk-566XWGPP.js';
|
|
42
43
|
import '../chunk-DD3CCMCZ.js';
|
|
43
44
|
import '../chunk-2Q2JQSQO.js';
|
|
44
45
|
import '../chunk-6ROXVZ3L.js';
|
package/dist/index.d.ts
CHANGED
|
@@ -2292,6 +2292,51 @@ type Database = {
|
|
|
2292
2292
|
}
|
|
2293
2293
|
];
|
|
2294
2294
|
};
|
|
2295
|
+
deployment_organization_models: {
|
|
2296
|
+
Row: {
|
|
2297
|
+
created_at: string;
|
|
2298
|
+
deployment_id: string;
|
|
2299
|
+
model_hash: string | null;
|
|
2300
|
+
organization_id: string;
|
|
2301
|
+
organization_model: Json;
|
|
2302
|
+
schema_version: string;
|
|
2303
|
+
updated_at: string;
|
|
2304
|
+
};
|
|
2305
|
+
Insert: {
|
|
2306
|
+
created_at?: string;
|
|
2307
|
+
deployment_id: string;
|
|
2308
|
+
model_hash?: string | null;
|
|
2309
|
+
organization_id: string;
|
|
2310
|
+
organization_model: Json;
|
|
2311
|
+
schema_version?: string;
|
|
2312
|
+
updated_at?: string;
|
|
2313
|
+
};
|
|
2314
|
+
Update: {
|
|
2315
|
+
created_at?: string;
|
|
2316
|
+
deployment_id?: string;
|
|
2317
|
+
model_hash?: string | null;
|
|
2318
|
+
organization_id?: string;
|
|
2319
|
+
organization_model?: Json;
|
|
2320
|
+
schema_version?: string;
|
|
2321
|
+
updated_at?: string;
|
|
2322
|
+
};
|
|
2323
|
+
Relationships: [
|
|
2324
|
+
{
|
|
2325
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
2326
|
+
columns: ["deployment_id"];
|
|
2327
|
+
isOneToOne: true;
|
|
2328
|
+
referencedRelation: "deployments";
|
|
2329
|
+
referencedColumns: ["id"];
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
2333
|
+
columns: ["organization_id"];
|
|
2334
|
+
isOneToOne: false;
|
|
2335
|
+
referencedRelation: "organizations";
|
|
2336
|
+
referencedColumns: ["id"];
|
|
2337
|
+
}
|
|
2338
|
+
];
|
|
2339
|
+
};
|
|
2295
2340
|
deployments: {
|
|
2296
2341
|
Row: {
|
|
2297
2342
|
created_at: string;
|
|
@@ -5241,7 +5286,11 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5241
5286
|
light: z$1.ZodOptional<z$1.ZodString>;
|
|
5242
5287
|
dark: z$1.ZodOptional<z$1.ZodString>;
|
|
5243
5288
|
}, z$1.core.$strip>>;
|
|
5244
|
-
|
|
5289
|
+
voice: z$1.ZodOptional<z$1.ZodString>;
|
|
5290
|
+
tagline: z$1.ZodOptional<z$1.ZodString>;
|
|
5291
|
+
values: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
5292
|
+
themePresetId: z$1.ZodOptional<z$1.ZodString>;
|
|
5293
|
+
}, z$1.core.$loose>>;
|
|
5245
5294
|
navigation: z$1.ZodDefault<z$1.ZodObject<{
|
|
5246
5295
|
sidebar: z$1.ZodDefault<z$1.ZodObject<{
|
|
5247
5296
|
primary: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<SidebarNode, unknown, z$1.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
@@ -5288,7 +5337,11 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5288
5337
|
}, z$1.core.$strip>>;
|
|
5289
5338
|
}, z$1.core.$strip>>;
|
|
5290
5339
|
clientBrief: z$1.ZodDefault<z$1.ZodString>;
|
|
5291
|
-
|
|
5340
|
+
organizationName: z$1.ZodOptional<z$1.ZodString>;
|
|
5341
|
+
productName: z$1.ZodOptional<z$1.ZodString>;
|
|
5342
|
+
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
5343
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5344
|
+
}, z$1.core.$loose>>;
|
|
5292
5345
|
customers: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
5293
5346
|
id: z$1.ZodString;
|
|
5294
5347
|
order: z$1.ZodNumber;
|
|
@@ -7038,6 +7091,7 @@ declare const PERMISSIONS: {
|
|
|
7038
7091
|
readonly SECRETS_MANAGE: "secrets.manage";
|
|
7039
7092
|
readonly OPERATIONS_READ: "operations.read";
|
|
7040
7093
|
readonly OPERATIONS_MANAGE: "operations.manage";
|
|
7094
|
+
readonly SALES_LEAD_GEN_MANAGE: "sales.lead-gen.manage";
|
|
7041
7095
|
readonly ACQUISITION_MANAGE: "acquisition.manage";
|
|
7042
7096
|
readonly PROJECTS_MANAGE: "projects.manage";
|
|
7043
7097
|
readonly CLIENTS_MANAGE: "clients.manage";
|
|
@@ -7092,6 +7146,10 @@ declare const AccessKeys: {
|
|
|
7092
7146
|
readonly systemPath: "permission.operations";
|
|
7093
7147
|
readonly action: "manage";
|
|
7094
7148
|
};
|
|
7149
|
+
readonly leadGenManage: {
|
|
7150
|
+
readonly systemPath: "sales.lead-gen";
|
|
7151
|
+
readonly action: "manage";
|
|
7152
|
+
};
|
|
7095
7153
|
readonly acquisitionManage: {
|
|
7096
7154
|
readonly systemPath: "permission.acquisition";
|
|
7097
7155
|
readonly action: "manage";
|
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export { createElevasisQueryClient } from './chunk-73EWE2EW.js';
|
|
2
|
-
export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, taskKeys, taskStatusColors, taskTypeColors, 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, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmPipelineSummary, useCrmQuickMetrics, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, 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, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, 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, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-
|
|
3
|
-
export { useAvailablePresets } from './chunk-
|
|
2
|
+
export { AbsoluteScheduleForm, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CheckpointGroup, CollapsibleJsonSection, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, EditApiKeyModal, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FilterBar, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SessionMemory, SortableHeader, StepConfigForm, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, taskKeys, taskStatusColors, taskTypeColors, 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, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateOrgRole, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useCrmPipelineSummary, useCrmQuickMetrics, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteClient, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask2 as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteLists, useDeleteMilestone, 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, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationCount as useNotificationCountSSE, useNotifications, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, 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, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useTransitionItem, useTransitionListCompany, useTransitionListMember, useTransitionState, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateClient, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateListStatus, useUpdateMilestone, useUpdateOrgRole, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVerifyCredential, useVisibleResources, useWarningNotification, useWorkflowExecution } from './chunk-LWDVD3XR.js';
|
|
3
|
+
export { useAvailablePresets } from './chunk-B2DZLPDL.js';
|
|
4
4
|
export { AppErrorBoundary, CrashErrorFallback, ErrorReportCard, buildErrorReport } from './chunk-SHZT7ULK.js';
|
|
5
5
|
export { TypeformArrayField, TypeformCheckboxGroup, TypeformNavigation, TypeformProgress, TypeformQuestionWrapper, TypeformRadioGroup, TypeformSurvey, TypeformTextInput, brochureStyles, brochureTheme, createCustomValue, createPresetValue, createSurveyConfig, defaultTheme, extractAnswerValue, extractMultiAnswerValues, getAnswerString, getCustomValueText, getMultiAnswerStrings, hasCustomValue, hasPresetValue, isCustomValue, isPresetValue, mergeTheme, useCardStyle, useTypeform, useTypeformContext } from './chunk-AUDNF2Q7.js';
|
|
6
6
|
export { answerValueSchema, checkboxWithOtherSchema, multiAnswerValueSchema, radioWithOtherSchema } from './chunk-6M6OLGQY.js';
|
|
7
7
|
import './chunk-BRXELOHC.js';
|
|
8
|
-
export { useBreadcrumbs } from './chunk-
|
|
8
|
+
export { useBreadcrumbs } from './chunk-M7Q4UBRY.js';
|
|
9
9
|
import './chunk-CXY7FMUM.js';
|
|
10
10
|
export { ActivityTrendChart, ChartFrame, CombinedTrendChart, CostTrendChart, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, HeroStatsRow, getSeriesColor, observabilityKeys, useCyberColors, useErrorTrends } from './chunk-7GQFIWP4.js';
|
|
11
11
|
export { createUseAppInitialization } from './chunk-JBWJ6WHZ.js';
|
|
@@ -19,11 +19,12 @@ export { SubshellSidebarSection } from './chunk-IIMU5YAJ.js';
|
|
|
19
19
|
export { GRAPH_CONSTANTS, calculateGraphHeight, Graph_module_css_default as graphStyles, useConnectionHighlight, useDirectedChainHighlighting, useFitViewTrigger, useGraphHighlighting, useNodeSelection } from './chunk-HENXLGVD.js';
|
|
20
20
|
export { AGENT_CONSTANTS, CONTAINER_CONSTANTS, SHARED_VIZ_CONSTANTS, STATUS_COLORS, TIMELINE_CONSTANTS, WORKFLOW_CONSTANTS, calculateBarPosition, formatDuration, getEdgeColor, getEdgeOpacity, getResourceStatusColor, getStatusColors, getStatusIcon, shouldAnimateEdge, useAgentIterationData, useExecutionPath, useMergedExecution, useReactFlowAgent, useTimelineData, useUnifiedWorkflowLayout, useWorkflowStepsLayout } from './chunk-7FPLLSHN.js';
|
|
21
21
|
import './chunk-RNP5R5I3.js';
|
|
22
|
-
export { ElevasisUIProvider, createTestSystemsProvider, useResolvedOrganizationModel } from './chunk-
|
|
23
|
-
export {
|
|
22
|
+
export { ElevasisUIProvider, createTestSystemsProvider, useResolvedOrganizationModel } from './chunk-PGWANFNE.js';
|
|
23
|
+
export { TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride } from './chunk-7ZWXTH5J.js';
|
|
24
|
+
export { PresetsProvider, usePresetsContext } from './chunk-6D4LCJ52.js';
|
|
24
25
|
export { generateShades, getPreset, PRESETS as presets } from './chunk-WF7CONXF.js';
|
|
25
26
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground } from './chunk-WLOQ4IBG.js';
|
|
26
|
-
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, OrganizationProvider, SystemShell, useCrmActions, useListActions, useNotificationAdapter } from './chunk-
|
|
27
|
+
export { CrmActionsProvider, ElevasisCoreProvider, ListActionsProvider, NotificationProvider, OrganizationProvider, SystemShell, useCrmActions, useListActions, useNotificationAdapter } from './chunk-H2MEFUQD.js';
|
|
27
28
|
export { APIErrorAlert, ActivityTimeline, CenteredErrorState, CollapsibleSection, ContextViewer, CustomSelector, DetailCardSkeleton, ElevasisLoader, EmptyState, FeatureUnavailableState, GlowDot, JsonViewer, ListSkeleton, PageNotFound, PageTitleCaption, ResourceCard, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, TabCountBadge, TimeRangeSelector, TrendIndicator } from './chunk-I53EX4VU.js';
|
|
28
29
|
export { StyledMarkdown } from './chunk-3KMDHCAR.js';
|
|
29
30
|
export { CardHeader } from './chunk-S3XR4II4.js';
|
|
@@ -35,11 +36,11 @@ export { ScrollToTop, TanStackRouterBridge } from './chunk-2IFYDILW.js';
|
|
|
35
36
|
export { RouterProvider, useRouterContext } from './chunk-Q7DJKLEN.js';
|
|
36
37
|
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, LIMIT_ACTIVITY_FEED, OAUTH_FLOW_TIMEOUT, PAGE_SIZE_DEFAULT, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, debounce, formatChartAxisDate, formatDate, formatDateTime, formatErrorMessage, formatRelativeTime, formatTimeAgo, getErrorInfo, getErrorTitle, getResourceColor, getResourceIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, restoreConsole, setupBrowserMocks, suppressKnownWarnings, validateEmail } from './chunk-X66MVMZT.js';
|
|
37
38
|
export { ResourceStatusColors } from './chunk-KRWALB24.js';
|
|
38
|
-
export { AccessGuard, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from './chunk-
|
|
39
|
-
export { AccessKeys, useAccess } from './chunk-
|
|
40
|
-
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from './chunk-
|
|
39
|
+
export { AccessGuard, ProtectedRoute, useSessionCheck as useRefocusSessionCheck, useSessionCheck, useStableAccessToken } from './chunk-4UCAUBOL.js';
|
|
40
|
+
export { AccessKeys, useAccess } from './chunk-YGUNUIME.js';
|
|
41
|
+
export { ElevasisSystemsProvider, useElevasisSystems, useOptionalElevasisSystems } from './chunk-C6BDBZRO.js';
|
|
41
42
|
export { InitializationContext, InitializationProvider, useInitialization } from './chunk-533DUEQY.js';
|
|
42
|
-
export { DEFAULT_SEMANTIC_ICON_REGISTRY, SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from './chunk-
|
|
43
|
+
export { DEFAULT_SEMANTIC_ICON_REGISTRY, SemanticIcon, extendSemanticIconRegistry, getSemanticIconComponent, resolveSemanticIconComponent } from './chunk-566XWGPP.js';
|
|
43
44
|
export { OrganizationContext, useOrganization } from './chunk-DD3CCMCZ.js';
|
|
44
45
|
export { ProfileProvider, UserProfileService, useProfile, useUserProfile } from './chunk-2Q2JQSQO.js';
|
|
45
46
|
export { GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING } from './chunk-6ROXVZ3L.js';
|
|
@@ -1461,6 +1461,51 @@ type Database = {
|
|
|
1461
1461
|
}
|
|
1462
1462
|
];
|
|
1463
1463
|
};
|
|
1464
|
+
deployment_organization_models: {
|
|
1465
|
+
Row: {
|
|
1466
|
+
created_at: string;
|
|
1467
|
+
deployment_id: string;
|
|
1468
|
+
model_hash: string | null;
|
|
1469
|
+
organization_id: string;
|
|
1470
|
+
organization_model: Json;
|
|
1471
|
+
schema_version: string;
|
|
1472
|
+
updated_at: string;
|
|
1473
|
+
};
|
|
1474
|
+
Insert: {
|
|
1475
|
+
created_at?: string;
|
|
1476
|
+
deployment_id: string;
|
|
1477
|
+
model_hash?: string | null;
|
|
1478
|
+
organization_id: string;
|
|
1479
|
+
organization_model: Json;
|
|
1480
|
+
schema_version?: string;
|
|
1481
|
+
updated_at?: string;
|
|
1482
|
+
};
|
|
1483
|
+
Update: {
|
|
1484
|
+
created_at?: string;
|
|
1485
|
+
deployment_id?: string;
|
|
1486
|
+
model_hash?: string | null;
|
|
1487
|
+
organization_id?: string;
|
|
1488
|
+
organization_model?: Json;
|
|
1489
|
+
schema_version?: string;
|
|
1490
|
+
updated_at?: string;
|
|
1491
|
+
};
|
|
1492
|
+
Relationships: [
|
|
1493
|
+
{
|
|
1494
|
+
foreignKeyName: "deployment_organization_models_deployment_id_fkey";
|
|
1495
|
+
columns: ["deployment_id"];
|
|
1496
|
+
isOneToOne: true;
|
|
1497
|
+
referencedRelation: "deployments";
|
|
1498
|
+
referencedColumns: ["id"];
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
foreignKeyName: "deployment_organization_models_organization_id_fkey";
|
|
1502
|
+
columns: ["organization_id"];
|
|
1503
|
+
isOneToOne: false;
|
|
1504
|
+
referencedRelation: "organizations";
|
|
1505
|
+
referencedColumns: ["id"];
|
|
1506
|
+
}
|
|
1507
|
+
];
|
|
1508
|
+
};
|
|
1464
1509
|
deployments: {
|
|
1465
1510
|
Row: {
|
|
1466
1511
|
created_at: string;
|
|
@@ -538,7 +538,11 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
538
538
|
light: z.ZodOptional<z.ZodString>;
|
|
539
539
|
dark: z.ZodOptional<z.ZodString>;
|
|
540
540
|
}, z.core.$strip>>;
|
|
541
|
-
|
|
541
|
+
voice: z.ZodOptional<z.ZodString>;
|
|
542
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
543
|
+
values: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
544
|
+
themePresetId: z.ZodOptional<z.ZodString>;
|
|
545
|
+
}, z.core.$loose>>;
|
|
542
546
|
navigation: z.ZodDefault<z.ZodObject<{
|
|
543
547
|
sidebar: z.ZodDefault<z.ZodObject<{
|
|
544
548
|
primary: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<SidebarNode, unknown, z.core.$ZodTypeInternals<SidebarNode, unknown>>>>;
|
|
@@ -585,7 +589,11 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
585
589
|
}, z.core.$strip>>;
|
|
586
590
|
}, z.core.$strip>>;
|
|
587
591
|
clientBrief: z.ZodDefault<z.ZodString>;
|
|
588
|
-
|
|
592
|
+
organizationName: z.ZodOptional<z.ZodString>;
|
|
593
|
+
productName: z.ZodOptional<z.ZodString>;
|
|
594
|
+
shortName: z.ZodOptional<z.ZodString>;
|
|
595
|
+
description: z.ZodOptional<z.ZodString>;
|
|
596
|
+
}, z.core.$loose>>;
|
|
589
597
|
customers: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
590
598
|
id: z.ZodString;
|
|
591
599
|
order: z.ZodNumber;
|