@elevasis/ui 2.42.0 → 2.43.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.js +3 -3
- package/dist/app/index.d.ts +69 -2
- package/dist/app/index.js +3 -3
- package/dist/auth/index.js +3 -3
- package/dist/charts/index.js +3 -3
- package/dist/{chunk-3MTAHV5M.js → chunk-FUKNHVUV.js} +204 -67
- package/dist/{chunk-MA7YCY7C.js → chunk-NVVAQNKE.js} +1 -1
- package/dist/{chunk-EDVZ3AHA.js → chunk-UECAFQKT.js} +1 -1
- package/dist/{chunk-YEGMSADG.js → chunk-XDEUR36B.js} +14 -2
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +3 -3
- package/dist/components/navigation/index.js +3 -3
- package/dist/features/auth/index.d.ts +3 -0
- package/dist/features/auth/index.js +4 -4
- package/dist/features/clients/index.d.ts +6 -3
- package/dist/features/clients/index.js +80 -19
- package/dist/features/crm/index.d.ts +3 -0
- package/dist/features/crm/index.js +3 -3
- package/dist/features/dashboard/index.js +3 -3
- package/dist/features/delivery/index.d.ts +3 -0
- package/dist/features/delivery/index.js +3 -3
- package/dist/features/knowledge/index.js +3 -3
- package/dist/features/lead-gen/index.d.ts +72 -3
- package/dist/features/lead-gen/index.js +3 -3
- package/dist/features/monitoring/index.js +3 -3
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.d.ts +66 -2
- package/dist/features/operations/index.js +3 -3
- package/dist/features/settings/index.d.ts +3 -0
- package/dist/features/settings/index.js +3 -3
- package/dist/hooks/access/index.js +3 -3
- package/dist/hooks/delivery/index.d.ts +3 -0
- package/dist/hooks/delivery/index.js +3 -3
- package/dist/hooks/index.d.ts +33 -18
- package/dist/hooks/index.js +3 -3
- package/dist/hooks/published.d.ts +33 -18
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +99 -20
- package/dist/index.js +4 -4
- package/dist/initialization/index.d.ts +3 -0
- package/dist/knowledge/index.d.ts +71 -6
- package/dist/knowledge/index.js +68 -8
- package/dist/layout/index.js +3 -3
- package/dist/organization/index.js +3 -3
- package/dist/profile/index.d.ts +3 -0
- package/dist/provider/index.d.ts +69 -2
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.d.ts +69 -2
- package/dist/provider/published.js +3 -3
- package/dist/supabase/index.d.ts +6 -0
- package/dist/test-utils/index.js +3 -3
- package/dist/types/index.d.ts +3 -0
- package/dist/utils/index.js +1 -1
- package/package.json +4 -4
|
@@ -867,6 +867,7 @@ type SidebarNode = SidebarSurfaceNode | SidebarGroupNode;
|
|
|
867
867
|
|
|
868
868
|
declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
869
869
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
870
|
+
snapshotHash: z$1.ZodOptional<z$1.ZodString>;
|
|
870
871
|
domainMetadata: z$1.ZodPipe<z$1.ZodDefault<z$1.ZodObject<{
|
|
871
872
|
branding: z$1.ZodOptional<z$1.ZodObject<{
|
|
872
873
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
@@ -876,6 +877,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
876
877
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
877
878
|
lastModified: z$1.ZodString;
|
|
878
879
|
}, z$1.core.$strip>>;
|
|
880
|
+
clients: z$1.ZodOptional<z$1.ZodObject<{
|
|
881
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
882
|
+
lastModified: z$1.ZodString;
|
|
883
|
+
}, z$1.core.$strip>>;
|
|
879
884
|
customers: z$1.ZodOptional<z$1.ZodObject<{
|
|
880
885
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
881
886
|
lastModified: z$1.ZodString;
|
|
@@ -933,6 +938,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
933
938
|
version: 1;
|
|
934
939
|
lastModified: string;
|
|
935
940
|
};
|
|
941
|
+
clients: {
|
|
942
|
+
version: 1;
|
|
943
|
+
lastModified: string;
|
|
944
|
+
};
|
|
936
945
|
customers: {
|
|
937
946
|
version: 1;
|
|
938
947
|
lastModified: string;
|
|
@@ -990,6 +999,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
990
999
|
version: 1;
|
|
991
1000
|
lastModified: string;
|
|
992
1001
|
} | undefined;
|
|
1002
|
+
clients?: {
|
|
1003
|
+
version: 1;
|
|
1004
|
+
lastModified: string;
|
|
1005
|
+
} | undefined;
|
|
993
1006
|
customers?: {
|
|
994
1007
|
version: 1;
|
|
995
1008
|
lastModified: string;
|
|
@@ -1182,6 +1195,56 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
1182
1195
|
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
1183
1196
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
1184
1197
|
}, z$1.core.$loose>>;
|
|
1198
|
+
clients: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
1199
|
+
id: z$1.ZodString;
|
|
1200
|
+
slug: z$1.ZodString;
|
|
1201
|
+
name: z$1.ZodString;
|
|
1202
|
+
status: z$1.ZodDefault<z$1.ZodEnum<{
|
|
1203
|
+
active: "active";
|
|
1204
|
+
onboarding: "onboarding";
|
|
1205
|
+
paused: "paused";
|
|
1206
|
+
completed: "completed";
|
|
1207
|
+
churned: "churned";
|
|
1208
|
+
}>>;
|
|
1209
|
+
source: z$1.ZodOptional<z$1.ZodString>;
|
|
1210
|
+
identity: z$1.ZodDefault<z$1.ZodObject<{
|
|
1211
|
+
organizationName: z$1.ZodOptional<z$1.ZodString>;
|
|
1212
|
+
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
1213
|
+
clientBrief: z$1.ZodDefault<z$1.ZodString>;
|
|
1214
|
+
geographicFocus: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
1215
|
+
timeZone: z$1.ZodDefault<z$1.ZodString>;
|
|
1216
|
+
}, z$1.core.$loose>>;
|
|
1217
|
+
branding: z$1.ZodDefault<z$1.ZodObject<{
|
|
1218
|
+
voice: z$1.ZodOptional<z$1.ZodString>;
|
|
1219
|
+
tagline: z$1.ZodOptional<z$1.ZodString>;
|
|
1220
|
+
values: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
1221
|
+
}, z$1.core.$loose>>;
|
|
1222
|
+
workspace: z$1.ZodDefault<z$1.ZodObject<{
|
|
1223
|
+
kind: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1224
|
+
"external-project": "external-project";
|
|
1225
|
+
"internal-project": "internal-project";
|
|
1226
|
+
none: "none";
|
|
1227
|
+
}>>;
|
|
1228
|
+
owner: z$1.ZodOptional<z$1.ZodEnum<{
|
|
1229
|
+
platform: "platform";
|
|
1230
|
+
client: "client";
|
|
1231
|
+
developer: "developer";
|
|
1232
|
+
}>>;
|
|
1233
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
1234
|
+
workspacePath: z$1.ZodOptional<z$1.ZodString>;
|
|
1235
|
+
}, z$1.core.$loose>>;
|
|
1236
|
+
links: z$1.ZodDefault<z$1.ZodObject<{
|
|
1237
|
+
projectIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
1238
|
+
primaryCompanyId: z$1.ZodOptional<z$1.ZodString>;
|
|
1239
|
+
primaryContactId: z$1.ZodOptional<z$1.ZodString>;
|
|
1240
|
+
sourceDealId: z$1.ZodOptional<z$1.ZodString>;
|
|
1241
|
+
}, z$1.core.$strip>>;
|
|
1242
|
+
prompts: z$1.ZodDefault<z$1.ZodObject<{
|
|
1243
|
+
defaultContext: z$1.ZodDefault<z$1.ZodString>;
|
|
1244
|
+
}, z$1.core.$loose>>;
|
|
1245
|
+
config: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
1246
|
+
customValues: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
1247
|
+
}, z$1.core.$strict>>>>;
|
|
1185
1248
|
customers: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
1186
1249
|
id: z$1.ZodString;
|
|
1187
1250
|
order: z$1.ZodNumber;
|
|
@@ -1835,6 +1898,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
1835
1898
|
action: "action";
|
|
1836
1899
|
ontology: "ontology";
|
|
1837
1900
|
role: "role";
|
|
1901
|
+
client: "client";
|
|
1838
1902
|
stage: "stage";
|
|
1839
1903
|
goal: "goal";
|
|
1840
1904
|
"customer-segment": "customer-segment";
|
|
@@ -1846,7 +1910,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
1846
1910
|
nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
1847
1911
|
}, z$1.core.$strip>]>, z$1.ZodTransform<{
|
|
1848
1912
|
target: {
|
|
1849
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1913
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1850
1914
|
id: string;
|
|
1851
1915
|
};
|
|
1852
1916
|
nodeId: string;
|
|
@@ -1854,7 +1918,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
1854
1918
|
nodeId: string;
|
|
1855
1919
|
} | {
|
|
1856
1920
|
target: {
|
|
1857
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1921
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1858
1922
|
id: string;
|
|
1859
1923
|
};
|
|
1860
1924
|
}>>>>;
|
|
@@ -1871,7 +1935,12 @@ declare const LEAD_GEN_API_INTERFACE: {
|
|
|
1871
1935
|
readonly interfaceKey: "api";
|
|
1872
1936
|
readonly readinessProfile: "sales.lead-gen.api";
|
|
1873
1937
|
};
|
|
1874
|
-
type SystemInterfaceReadinessIssueFamily = 'SYSTEM_INTERFACE_MISSING' | 'SYSTEM_INTERFACE_DISABLED' | 'SYSTEM_INTERFACE_INVALID' | 'SYSTEM_INTERFACE_NOT_READY' | 'SYSTEM_BRIDGE_NOT_READY'
|
|
1938
|
+
type SystemInterfaceReadinessIssueFamily = 'SYSTEM_INTERFACE_MISSING' | 'SYSTEM_INTERFACE_DISABLED' | 'SYSTEM_INTERFACE_INVALID' | 'SYSTEM_INTERFACE_NOT_READY' | 'SYSTEM_BRIDGE_NOT_READY'
|
|
1939
|
+
/**
|
|
1940
|
+
* The deployed OM snapshot hash does not match the canonical source hash.
|
|
1941
|
+
* Redeploy with `pnpm operations:deploy` to refresh the snapshot.
|
|
1942
|
+
*/
|
|
1943
|
+
| 'STALE_OM_SNAPSHOT';
|
|
1875
1944
|
interface SystemInterfaceReadinessIssue {
|
|
1876
1945
|
family: SystemInterfaceReadinessIssueFamily;
|
|
1877
1946
|
code: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { EMPTY_LIST_ACTIONS, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListActionsProvider, ListBuilderIndexPage, ListBuilderPage, ORPHAN_STAGE_ORDER, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, deriveBusinessProgress, findListActionByAction, formatDate, getEnrichmentColor, getEnrichmentStatus, getLeadGenApiInterfaceReadiness, getLeadGenExportWorkflowId, getListActionWorkflowId, getStateKeyColor, getStatusColor, getStepActionLabel, isLeadGenExportAction, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, resolveBuildPlanSteps, resolveBuildState, sortStageKeys, useArtifacts, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateArtifact, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useDeriveActions, useLeadGenConfig, useListActions, useListMember, useListMembers, useListProgress, useTransitionListCompany, useTransitionListMember, useUpdateCompany, useUpdateContact, useUpdateListStatus } from '../../chunk-
|
|
1
|
+
export { EMPTY_LIST_ACTIONS, LEAD_GEN_ITEMS, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, ListActionsProvider, ListBuilderIndexPage, ListBuilderPage, ORPHAN_STAGE_ORDER, companyKeys as acquisitionCompanyKeys, contactKeys as acquisitionContactKeys, companyKeys, contactKeys, deriveBusinessProgress, findListActionByAction, formatDate, getEnrichmentColor, getEnrichmentStatus, getLeadGenApiInterfaceReadiness, getLeadGenExportWorkflowId, getListActionWorkflowId, getStateKeyColor, getStatusColor, getStepActionLabel, isLeadGenExportAction, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, resolveBuildPlanSteps, resolveBuildState, sortStageKeys, useArtifacts, useCompanies, useCompany, useCompanyFacets, useContact, useContacts, useCreateArtifact, useCreateCompany, useCreateContact, useDeleteCompanies, useDeleteContacts, useDeleteLists, useDeriveActions, useLeadGenConfig, useListActions, useListMember, useListMembers, useListProgress, useTransitionListCompany, useTransitionListMember, useUpdateCompany, useUpdateContact, useUpdateListStatus } from '../../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../../chunk-S3XR4II4.js';
|
|
11
11
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-XDEUR36B.js';
|
|
22
22
|
import '../../chunk-KRWALB24.js';
|
|
23
23
|
import '../../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-
|
|
1
|
+
export { ActivityFeed, ActivityLog, CostAnalytics, ErrorDetailsModal, ExecutionHealth, ExecutionLogsPage, NotificationCenter, monitoringManifest } from '../../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../../chunk-S3XR4II4.js';
|
|
11
11
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-XDEUR36B.js';
|
|
22
22
|
import '../../chunk-KRWALB24.js';
|
|
23
23
|
import '../../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ConfirmationModal, RequestModal, usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, PageTitleCaption, FilterBar, TableSelectionToolbar, CustomModal, useRequest, ContextViewer, JsonViewer } from '../../../chunk-
|
|
2
|
-
export { RequestActionIcon, RequestModal, requestTopbarActionManifest } from '../../../chunk-
|
|
1
|
+
import { ConfirmationModal, RequestModal, usePaginationState, useRequestsList, useUpdateRequestStatus, useDeleteRequest, useTableSelection, PageTitleCaption, FilterBar, TableSelectionToolbar, CustomModal, useRequest, ContextViewer, JsonViewer } from '../../../chunk-FUKNHVUV.js';
|
|
2
|
+
export { RequestActionIcon, RequestModal, requestTopbarActionManifest } from '../../../chunk-FUKNHVUV.js';
|
|
3
3
|
import '../../../chunk-NZ2F5RQ4.js';
|
|
4
4
|
import '../../../chunk-OJJK27GC.js';
|
|
5
5
|
import '../../../chunk-AUDNF2Q7.js';
|
|
@@ -10,7 +10,7 @@ import '../../../chunk-SJHM4WDG.js';
|
|
|
10
10
|
import '../../../chunk-ZTWA5H77.js';
|
|
11
11
|
import { CardHeader } from '../../../chunk-S3XR4II4.js';
|
|
12
12
|
import '../../../chunk-6DO4PE3O.js';
|
|
13
|
-
import '../../../chunk-
|
|
13
|
+
import '../../../chunk-NVVAQNKE.js';
|
|
14
14
|
import '../../../chunk-DD3CCMCZ.js';
|
|
15
15
|
import '../../../chunk-GMXGDO3I.js';
|
|
16
16
|
import '../../../chunk-2IFYDILW.js';
|
|
@@ -19,7 +19,7 @@ import '../../../chunk-HENXLGVD.js';
|
|
|
19
19
|
import '../../../chunk-7FPLLSHN.js';
|
|
20
20
|
import '../../../chunk-RNP5R5I3.js';
|
|
21
21
|
import '../../../chunk-W2SFTXMT.js';
|
|
22
|
-
import { formatTimeAgo } from '../../../chunk-
|
|
22
|
+
import { formatTimeAgo } from '../../../chunk-XDEUR36B.js';
|
|
23
23
|
import '../../../chunk-KRWALB24.js';
|
|
24
24
|
import '../../../chunk-2FTX4WO2.js';
|
|
25
25
|
import '../../../chunk-MQZE7SUI.js';
|
|
@@ -596,6 +596,7 @@ type Link = z.infer<typeof LinkSchema>;
|
|
|
596
596
|
|
|
597
597
|
declare const OrganizationModelSchema: z.ZodObject<{
|
|
598
598
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
599
|
+
snapshotHash: z.ZodOptional<z.ZodString>;
|
|
599
600
|
domainMetadata: z.ZodPipe<z.ZodDefault<z.ZodObject<{
|
|
600
601
|
branding: z.ZodOptional<z.ZodObject<{
|
|
601
602
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
@@ -605,6 +606,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
605
606
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
606
607
|
lastModified: z.ZodString;
|
|
607
608
|
}, z.core.$strip>>;
|
|
609
|
+
clients: z.ZodOptional<z.ZodObject<{
|
|
610
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
611
|
+
lastModified: z.ZodString;
|
|
612
|
+
}, z.core.$strip>>;
|
|
608
613
|
customers: z.ZodOptional<z.ZodObject<{
|
|
609
614
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
610
615
|
lastModified: z.ZodString;
|
|
@@ -662,6 +667,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
662
667
|
version: 1;
|
|
663
668
|
lastModified: string;
|
|
664
669
|
};
|
|
670
|
+
clients: {
|
|
671
|
+
version: 1;
|
|
672
|
+
lastModified: string;
|
|
673
|
+
};
|
|
665
674
|
customers: {
|
|
666
675
|
version: 1;
|
|
667
676
|
lastModified: string;
|
|
@@ -719,6 +728,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
719
728
|
version: 1;
|
|
720
729
|
lastModified: string;
|
|
721
730
|
} | undefined;
|
|
731
|
+
clients?: {
|
|
732
|
+
version: 1;
|
|
733
|
+
lastModified: string;
|
|
734
|
+
} | undefined;
|
|
722
735
|
customers?: {
|
|
723
736
|
version: 1;
|
|
724
737
|
lastModified: string;
|
|
@@ -911,6 +924,56 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
911
924
|
shortName: z.ZodOptional<z.ZodString>;
|
|
912
925
|
description: z.ZodOptional<z.ZodString>;
|
|
913
926
|
}, z.core.$loose>>;
|
|
927
|
+
clients: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
928
|
+
id: z.ZodString;
|
|
929
|
+
slug: z.ZodString;
|
|
930
|
+
name: z.ZodString;
|
|
931
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
932
|
+
active: "active";
|
|
933
|
+
onboarding: "onboarding";
|
|
934
|
+
paused: "paused";
|
|
935
|
+
completed: "completed";
|
|
936
|
+
churned: "churned";
|
|
937
|
+
}>>;
|
|
938
|
+
source: z.ZodOptional<z.ZodString>;
|
|
939
|
+
identity: z.ZodDefault<z.ZodObject<{
|
|
940
|
+
organizationName: z.ZodOptional<z.ZodString>;
|
|
941
|
+
shortName: z.ZodOptional<z.ZodString>;
|
|
942
|
+
clientBrief: z.ZodDefault<z.ZodString>;
|
|
943
|
+
geographicFocus: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
944
|
+
timeZone: z.ZodDefault<z.ZodString>;
|
|
945
|
+
}, z.core.$loose>>;
|
|
946
|
+
branding: z.ZodDefault<z.ZodObject<{
|
|
947
|
+
voice: z.ZodOptional<z.ZodString>;
|
|
948
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
949
|
+
values: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
950
|
+
}, z.core.$loose>>;
|
|
951
|
+
workspace: z.ZodDefault<z.ZodObject<{
|
|
952
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
953
|
+
"external-project": "external-project";
|
|
954
|
+
"internal-project": "internal-project";
|
|
955
|
+
none: "none";
|
|
956
|
+
}>>;
|
|
957
|
+
owner: z.ZodOptional<z.ZodEnum<{
|
|
958
|
+
platform: "platform";
|
|
959
|
+
client: "client";
|
|
960
|
+
developer: "developer";
|
|
961
|
+
}>>;
|
|
962
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
963
|
+
workspacePath: z.ZodOptional<z.ZodString>;
|
|
964
|
+
}, z.core.$loose>>;
|
|
965
|
+
links: z.ZodDefault<z.ZodObject<{
|
|
966
|
+
projectIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
967
|
+
primaryCompanyId: z.ZodOptional<z.ZodString>;
|
|
968
|
+
primaryContactId: z.ZodOptional<z.ZodString>;
|
|
969
|
+
sourceDealId: z.ZodOptional<z.ZodString>;
|
|
970
|
+
}, z.core.$strip>>;
|
|
971
|
+
prompts: z.ZodDefault<z.ZodObject<{
|
|
972
|
+
defaultContext: z.ZodDefault<z.ZodString>;
|
|
973
|
+
}, z.core.$loose>>;
|
|
974
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
975
|
+
customValues: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
976
|
+
}, z.core.$strict>>>>;
|
|
914
977
|
customers: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
915
978
|
id: z.ZodString;
|
|
916
979
|
order: z.ZodNumber;
|
|
@@ -1564,6 +1627,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1564
1627
|
action: "action";
|
|
1565
1628
|
ontology: "ontology";
|
|
1566
1629
|
role: "role";
|
|
1630
|
+
client: "client";
|
|
1567
1631
|
stage: "stage";
|
|
1568
1632
|
goal: "goal";
|
|
1569
1633
|
"customer-segment": "customer-segment";
|
|
@@ -1575,7 +1639,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1575
1639
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
1576
1640
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
1577
1641
|
target: {
|
|
1578
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1642
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1579
1643
|
id: string;
|
|
1580
1644
|
};
|
|
1581
1645
|
nodeId: string;
|
|
@@ -1583,7 +1647,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1583
1647
|
nodeId: string;
|
|
1584
1648
|
} | {
|
|
1585
1649
|
target: {
|
|
1586
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1650
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1587
1651
|
id: string;
|
|
1588
1652
|
};
|
|
1589
1653
|
}>>>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-
|
|
1
|
+
export { AgentExecutionPanel, AgentSessionGroup, CommandQueueDetailPage, CommandQueuePage, CommandQueueShell, CommandViewPage, DashboardOperationsOverview, ExecuteWorkflowModal, ExecutionPanel, OperationsOverview, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationGraphPage, ResourceDetailPage, ResourcesPage, ResourcesSidebar, SessionChatArea, SessionChatInterface, SessionChatPage, SessionDetailsSidebar, SessionExecutionLogs, SessionHeader, SessionListItem, SessionsPage, SessionsSidebar, SystemOpsView, WorkflowExecutionPanel, aggregateSystemMetrics, formatResourceAttribution, operationsManifest } from '../../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../../chunk-S3XR4II4.js';
|
|
11
11
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-XDEUR36B.js';
|
|
22
22
|
import '../../chunk-KRWALB24.js';
|
|
23
23
|
import '../../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -1253,6 +1253,7 @@ type Database = {
|
|
|
1253
1253
|
organization_id: string;
|
|
1254
1254
|
primary_company_id: string | null;
|
|
1255
1255
|
primary_contact_id: string | null;
|
|
1256
|
+
source: string;
|
|
1256
1257
|
source_deal_id: string | null;
|
|
1257
1258
|
status: string;
|
|
1258
1259
|
updated_at: string;
|
|
@@ -1266,6 +1267,7 @@ type Database = {
|
|
|
1266
1267
|
organization_id: string;
|
|
1267
1268
|
primary_company_id?: string | null;
|
|
1268
1269
|
primary_contact_id?: string | null;
|
|
1270
|
+
source?: string;
|
|
1269
1271
|
source_deal_id?: string | null;
|
|
1270
1272
|
status?: string;
|
|
1271
1273
|
updated_at?: string;
|
|
@@ -1279,6 +1281,7 @@ type Database = {
|
|
|
1279
1281
|
organization_id?: string;
|
|
1280
1282
|
primary_company_id?: string | null;
|
|
1281
1283
|
primary_contact_id?: string | null;
|
|
1284
|
+
source?: string;
|
|
1282
1285
|
source_deal_id?: string | null;
|
|
1283
1286
|
status?: string;
|
|
1284
1287
|
updated_at?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-
|
|
1
|
+
export { AccountSettings, AppearanceSettings, CreateWebhookEndpointModal, EditCredentialModal, EditWebhookEndpointModal, MemberAccessModal, MyRolesPage, OAuthIntegrationsCard, OrgMembersList, OrganizationSettings, WebhookEndpointList, WebhookEndpointSettings, settingsManifest } from '../../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../../chunk-S3XR4II4.js';
|
|
11
11
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-XDEUR36B.js';
|
|
22
22
|
import '../../chunk-KRWALB24.js';
|
|
23
23
|
import '../../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AccessKeys, useAccess } from '../../chunk-
|
|
1
|
+
export { AccessKeys, useAccess } from '../../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../../chunk-S3XR4II4.js';
|
|
11
11
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-XDEUR36B.js';
|
|
22
22
|
import '../../chunk-KRWALB24.js';
|
|
23
23
|
import '../../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../../chunk-MQZE7SUI.js';
|
|
@@ -1251,6 +1251,7 @@ type Database = {
|
|
|
1251
1251
|
organization_id: string;
|
|
1252
1252
|
primary_company_id: string | null;
|
|
1253
1253
|
primary_contact_id: string | null;
|
|
1254
|
+
source: string;
|
|
1254
1255
|
source_deal_id: string | null;
|
|
1255
1256
|
status: string;
|
|
1256
1257
|
updated_at: string;
|
|
@@ -1264,6 +1265,7 @@ type Database = {
|
|
|
1264
1265
|
organization_id: string;
|
|
1265
1266
|
primary_company_id?: string | null;
|
|
1266
1267
|
primary_contact_id?: string | null;
|
|
1268
|
+
source?: string;
|
|
1267
1269
|
source_deal_id?: string | null;
|
|
1268
1270
|
status?: string;
|
|
1269
1271
|
updated_at?: string;
|
|
@@ -1277,6 +1279,7 @@ type Database = {
|
|
|
1277
1279
|
organization_id?: string;
|
|
1278
1280
|
primary_company_id?: string | null;
|
|
1279
1281
|
primary_contact_id?: string | null;
|
|
1282
|
+
source?: string;
|
|
1280
1283
|
source_deal_id?: string | null;
|
|
1281
1284
|
status?: string;
|
|
1282
1285
|
updated_at?: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-
|
|
1
|
+
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateMilestone, useCreateNote, useCreateProject, useCreateTask, useDeleteMilestone, useDeleteProject, useDeleteTask2 as useDeleteTask, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateMilestone, useUpdateProject, useUpdateTask } from '../../chunk-FUKNHVUV.js';
|
|
2
2
|
import '../../chunk-NZ2F5RQ4.js';
|
|
3
3
|
import '../../chunk-OJJK27GC.js';
|
|
4
4
|
import '../../chunk-AUDNF2Q7.js';
|
|
@@ -9,7 +9,7 @@ import '../../chunk-SJHM4WDG.js';
|
|
|
9
9
|
import '../../chunk-ZTWA5H77.js';
|
|
10
10
|
import '../../chunk-S3XR4II4.js';
|
|
11
11
|
import '../../chunk-6DO4PE3O.js';
|
|
12
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-NVVAQNKE.js';
|
|
13
13
|
import '../../chunk-DD3CCMCZ.js';
|
|
14
14
|
import '../../chunk-GMXGDO3I.js';
|
|
15
15
|
import '../../chunk-2IFYDILW.js';
|
|
@@ -18,7 +18,7 @@ import '../../chunk-HENXLGVD.js';
|
|
|
18
18
|
import '../../chunk-7FPLLSHN.js';
|
|
19
19
|
import '../../chunk-RNP5R5I3.js';
|
|
20
20
|
import '../../chunk-W2SFTXMT.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-XDEUR36B.js';
|
|
22
22
|
import '../../chunk-KRWALB24.js';
|
|
23
23
|
import '../../chunk-2FTX4WO2.js';
|
|
24
24
|
import '../../chunk-MQZE7SUI.js';
|