@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
package/dist/index.d.ts
CHANGED
|
@@ -2083,6 +2083,7 @@ type Database = {
|
|
|
2083
2083
|
organization_id: string;
|
|
2084
2084
|
primary_company_id: string | null;
|
|
2085
2085
|
primary_contact_id: string | null;
|
|
2086
|
+
source: string;
|
|
2086
2087
|
source_deal_id: string | null;
|
|
2087
2088
|
status: string;
|
|
2088
2089
|
updated_at: string;
|
|
@@ -2096,6 +2097,7 @@ type Database = {
|
|
|
2096
2097
|
organization_id: string;
|
|
2097
2098
|
primary_company_id?: string | null;
|
|
2098
2099
|
primary_contact_id?: string | null;
|
|
2100
|
+
source?: string;
|
|
2099
2101
|
source_deal_id?: string | null;
|
|
2100
2102
|
status?: string;
|
|
2101
2103
|
updated_at?: string;
|
|
@@ -2109,6 +2111,7 @@ type Database = {
|
|
|
2109
2111
|
organization_id?: string;
|
|
2110
2112
|
primary_company_id?: string | null;
|
|
2111
2113
|
primary_contact_id?: string | null;
|
|
2114
|
+
source?: string;
|
|
2112
2115
|
source_deal_id?: string | null;
|
|
2113
2116
|
status?: string;
|
|
2114
2117
|
updated_at?: string;
|
|
@@ -5173,6 +5176,7 @@ type Link = z$1.infer<typeof LinkSchema>;
|
|
|
5173
5176
|
|
|
5174
5177
|
declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
5175
5178
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
5179
|
+
snapshotHash: z$1.ZodOptional<z$1.ZodString>;
|
|
5176
5180
|
domainMetadata: z$1.ZodPipe<z$1.ZodDefault<z$1.ZodObject<{
|
|
5177
5181
|
branding: z$1.ZodOptional<z$1.ZodObject<{
|
|
5178
5182
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
@@ -5182,6 +5186,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5182
5186
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
5183
5187
|
lastModified: z$1.ZodString;
|
|
5184
5188
|
}, z$1.core.$strip>>;
|
|
5189
|
+
clients: z$1.ZodOptional<z$1.ZodObject<{
|
|
5190
|
+
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
5191
|
+
lastModified: z$1.ZodString;
|
|
5192
|
+
}, z$1.core.$strip>>;
|
|
5185
5193
|
customers: z$1.ZodOptional<z$1.ZodObject<{
|
|
5186
5194
|
version: z$1.ZodDefault<z$1.ZodLiteral<1>>;
|
|
5187
5195
|
lastModified: z$1.ZodString;
|
|
@@ -5239,6 +5247,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5239
5247
|
version: 1;
|
|
5240
5248
|
lastModified: string;
|
|
5241
5249
|
};
|
|
5250
|
+
clients: {
|
|
5251
|
+
version: 1;
|
|
5252
|
+
lastModified: string;
|
|
5253
|
+
};
|
|
5242
5254
|
customers: {
|
|
5243
5255
|
version: 1;
|
|
5244
5256
|
lastModified: string;
|
|
@@ -5296,6 +5308,10 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5296
5308
|
version: 1;
|
|
5297
5309
|
lastModified: string;
|
|
5298
5310
|
} | undefined;
|
|
5311
|
+
clients?: {
|
|
5312
|
+
version: 1;
|
|
5313
|
+
lastModified: string;
|
|
5314
|
+
} | undefined;
|
|
5299
5315
|
customers?: {
|
|
5300
5316
|
version: 1;
|
|
5301
5317
|
lastModified: string;
|
|
@@ -5488,6 +5504,56 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
5488
5504
|
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
5489
5505
|
description: z$1.ZodOptional<z$1.ZodString>;
|
|
5490
5506
|
}, z$1.core.$loose>>;
|
|
5507
|
+
clients: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
5508
|
+
id: z$1.ZodString;
|
|
5509
|
+
slug: z$1.ZodString;
|
|
5510
|
+
name: z$1.ZodString;
|
|
5511
|
+
status: z$1.ZodDefault<z$1.ZodEnum<{
|
|
5512
|
+
active: "active";
|
|
5513
|
+
onboarding: "onboarding";
|
|
5514
|
+
paused: "paused";
|
|
5515
|
+
completed: "completed";
|
|
5516
|
+
churned: "churned";
|
|
5517
|
+
}>>;
|
|
5518
|
+
source: z$1.ZodOptional<z$1.ZodString>;
|
|
5519
|
+
identity: z$1.ZodDefault<z$1.ZodObject<{
|
|
5520
|
+
organizationName: z$1.ZodOptional<z$1.ZodString>;
|
|
5521
|
+
shortName: z$1.ZodOptional<z$1.ZodString>;
|
|
5522
|
+
clientBrief: z$1.ZodDefault<z$1.ZodString>;
|
|
5523
|
+
geographicFocus: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5524
|
+
timeZone: z$1.ZodDefault<z$1.ZodString>;
|
|
5525
|
+
}, z$1.core.$loose>>;
|
|
5526
|
+
branding: z$1.ZodDefault<z$1.ZodObject<{
|
|
5527
|
+
voice: z$1.ZodOptional<z$1.ZodString>;
|
|
5528
|
+
tagline: z$1.ZodOptional<z$1.ZodString>;
|
|
5529
|
+
values: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5530
|
+
}, z$1.core.$loose>>;
|
|
5531
|
+
workspace: z$1.ZodDefault<z$1.ZodObject<{
|
|
5532
|
+
kind: z$1.ZodOptional<z$1.ZodEnum<{
|
|
5533
|
+
"external-project": "external-project";
|
|
5534
|
+
"internal-project": "internal-project";
|
|
5535
|
+
none: "none";
|
|
5536
|
+
}>>;
|
|
5537
|
+
owner: z$1.ZodOptional<z$1.ZodEnum<{
|
|
5538
|
+
platform: "platform";
|
|
5539
|
+
client: "client";
|
|
5540
|
+
developer: "developer";
|
|
5541
|
+
}>>;
|
|
5542
|
+
projectId: z$1.ZodOptional<z$1.ZodString>;
|
|
5543
|
+
workspacePath: z$1.ZodOptional<z$1.ZodString>;
|
|
5544
|
+
}, z$1.core.$loose>>;
|
|
5545
|
+
links: z$1.ZodDefault<z$1.ZodObject<{
|
|
5546
|
+
projectIds: z$1.ZodDefault<z$1.ZodArray<z$1.ZodString>>;
|
|
5547
|
+
primaryCompanyId: z$1.ZodOptional<z$1.ZodString>;
|
|
5548
|
+
primaryContactId: z$1.ZodOptional<z$1.ZodString>;
|
|
5549
|
+
sourceDealId: z$1.ZodOptional<z$1.ZodString>;
|
|
5550
|
+
}, z$1.core.$strip>>;
|
|
5551
|
+
prompts: z$1.ZodDefault<z$1.ZodObject<{
|
|
5552
|
+
defaultContext: z$1.ZodDefault<z$1.ZodString>;
|
|
5553
|
+
}, z$1.core.$loose>>;
|
|
5554
|
+
config: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
5555
|
+
customValues: z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodType<JsonValue, unknown, z$1.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
5556
|
+
}, z$1.core.$strict>>>>;
|
|
5491
5557
|
customers: z$1.ZodDefault<z$1.ZodDefault<z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
5492
5558
|
id: z$1.ZodString;
|
|
5493
5559
|
order: z$1.ZodNumber;
|
|
@@ -6141,6 +6207,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6141
6207
|
action: "action";
|
|
6142
6208
|
ontology: "ontology";
|
|
6143
6209
|
role: "role";
|
|
6210
|
+
client: "client";
|
|
6144
6211
|
stage: "stage";
|
|
6145
6212
|
goal: "goal";
|
|
6146
6213
|
"customer-segment": "customer-segment";
|
|
@@ -6152,7 +6219,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6152
6219
|
nodeId: z$1.ZodUnion<readonly [z$1.ZodString, z$1.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
6153
6220
|
}, z$1.core.$strip>]>, z$1.ZodTransform<{
|
|
6154
6221
|
target: {
|
|
6155
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
6222
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
6156
6223
|
id: string;
|
|
6157
6224
|
};
|
|
6158
6225
|
nodeId: string;
|
|
@@ -6160,7 +6227,7 @@ declare const OrganizationModelSchema: z$1.ZodObject<{
|
|
|
6160
6227
|
nodeId: string;
|
|
6161
6228
|
} | {
|
|
6162
6229
|
target: {
|
|
6163
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
6230
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
6164
6231
|
id: string;
|
|
6165
6232
|
};
|
|
6166
6233
|
}>>>>;
|
|
@@ -7420,22 +7487,24 @@ declare function getTimeRangeLabel(range: TimeRange): string;
|
|
|
7420
7487
|
|
|
7421
7488
|
declare const ClientStatusSchema: z$1.ZodEnum<{
|
|
7422
7489
|
active: "active";
|
|
7423
|
-
completed: "completed";
|
|
7424
|
-
paused: "paused";
|
|
7425
7490
|
onboarding: "onboarding";
|
|
7491
|
+
paused: "paused";
|
|
7492
|
+
completed: "completed";
|
|
7426
7493
|
churned: "churned";
|
|
7427
7494
|
}>;
|
|
7495
|
+
declare const ClientSourceSchema: z$1.ZodString;
|
|
7428
7496
|
declare const ClientResponseSchema: z$1.ZodObject<{
|
|
7429
7497
|
id: z$1.ZodString;
|
|
7430
7498
|
organizationId: z$1.ZodString;
|
|
7431
7499
|
name: z$1.ZodString;
|
|
7432
7500
|
status: z$1.ZodEnum<{
|
|
7433
7501
|
active: "active";
|
|
7434
|
-
completed: "completed";
|
|
7435
|
-
paused: "paused";
|
|
7436
7502
|
onboarding: "onboarding";
|
|
7503
|
+
paused: "paused";
|
|
7504
|
+
completed: "completed";
|
|
7437
7505
|
churned: "churned";
|
|
7438
7506
|
}>;
|
|
7507
|
+
source: z$1.ZodString;
|
|
7439
7508
|
sourceDealId: z$1.ZodNullable<z$1.ZodString>;
|
|
7440
7509
|
primaryCompanyId: z$1.ZodNullable<z$1.ZodString>;
|
|
7441
7510
|
primaryContactId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -7450,11 +7519,12 @@ declare const ClientDetailResponseSchema: z$1.ZodObject<{
|
|
|
7450
7519
|
name: z$1.ZodString;
|
|
7451
7520
|
status: z$1.ZodEnum<{
|
|
7452
7521
|
active: "active";
|
|
7453
|
-
completed: "completed";
|
|
7454
|
-
paused: "paused";
|
|
7455
7522
|
onboarding: "onboarding";
|
|
7523
|
+
paused: "paused";
|
|
7524
|
+
completed: "completed";
|
|
7456
7525
|
churned: "churned";
|
|
7457
7526
|
}>;
|
|
7527
|
+
source: z$1.ZodString;
|
|
7458
7528
|
sourceDealId: z$1.ZodNullable<z$1.ZodString>;
|
|
7459
7529
|
primaryCompanyId: z$1.ZodNullable<z$1.ZodString>;
|
|
7460
7530
|
primaryContactId: z$1.ZodNullable<z$1.ZodString>;
|
|
@@ -7498,9 +7568,9 @@ declare const ClientStatusResponseSchema: z$1.ZodObject<{
|
|
|
7498
7568
|
totalClients: z$1.ZodNumber;
|
|
7499
7569
|
byStatus: z$1.ZodRecord<z$1.ZodEnum<{
|
|
7500
7570
|
active: "active";
|
|
7501
|
-
completed: "completed";
|
|
7502
|
-
paused: "paused";
|
|
7503
7571
|
onboarding: "onboarding";
|
|
7572
|
+
paused: "paused";
|
|
7573
|
+
completed: "completed";
|
|
7504
7574
|
churned: "churned";
|
|
7505
7575
|
}>, z$1.ZodNumber>;
|
|
7506
7576
|
linkedDeals: z$1.ZodNumber;
|
|
@@ -7512,11 +7582,12 @@ declare const CreateClientRequestSchema: z$1.ZodObject<{
|
|
|
7512
7582
|
name: z$1.ZodString;
|
|
7513
7583
|
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
7514
7584
|
active: "active";
|
|
7515
|
-
completed: "completed";
|
|
7516
|
-
paused: "paused";
|
|
7517
7585
|
onboarding: "onboarding";
|
|
7586
|
+
paused: "paused";
|
|
7587
|
+
completed: "completed";
|
|
7518
7588
|
churned: "churned";
|
|
7519
7589
|
}>>;
|
|
7590
|
+
source: z$1.ZodOptional<z$1.ZodString>;
|
|
7520
7591
|
sourceDealId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7521
7592
|
primaryCompanyId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7522
7593
|
primaryContactId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
@@ -7526,17 +7597,19 @@ declare const UpdateClientRequestSchema: z$1.ZodObject<{
|
|
|
7526
7597
|
name: z$1.ZodOptional<z$1.ZodString>;
|
|
7527
7598
|
status: z$1.ZodOptional<z$1.ZodEnum<{
|
|
7528
7599
|
active: "active";
|
|
7529
|
-
completed: "completed";
|
|
7530
|
-
paused: "paused";
|
|
7531
7600
|
onboarding: "onboarding";
|
|
7601
|
+
paused: "paused";
|
|
7602
|
+
completed: "completed";
|
|
7532
7603
|
churned: "churned";
|
|
7533
7604
|
}>>;
|
|
7605
|
+
source: z$1.ZodOptional<z$1.ZodString>;
|
|
7534
7606
|
sourceDealId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7535
7607
|
primaryCompanyId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7536
7608
|
primaryContactId: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
7537
7609
|
metadata: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodRecord<z$1.ZodString, z$1.ZodUnknown>>>;
|
|
7538
7610
|
}, z$1.core.$strict>;
|
|
7539
7611
|
type ClientStatus = z$1.infer<typeof ClientStatusSchema>;
|
|
7612
|
+
type ClientSource = z$1.infer<typeof ClientSourceSchema>;
|
|
7540
7613
|
type ClientResponse = z$1.infer<typeof ClientResponseSchema>;
|
|
7541
7614
|
type ClientDetailResponse = z$1.infer<typeof ClientDetailResponseSchema>;
|
|
7542
7615
|
type ClientStatusResponse = z$1.infer<typeof ClientStatusResponseSchema>;
|
|
@@ -9943,6 +10016,7 @@ declare function useSubmitRequest(): _tanstack_react_query.UseMutationResult<unk
|
|
|
9943
10016
|
|
|
9944
10017
|
interface ClientsListFilters {
|
|
9945
10018
|
status?: ClientStatus;
|
|
10019
|
+
source?: ClientSource;
|
|
9946
10020
|
search?: string;
|
|
9947
10021
|
limit?: number;
|
|
9948
10022
|
offset?: number;
|
|
@@ -9962,7 +10036,8 @@ declare function useClients(filters?: ClientsListFilters): _tanstack_react_query
|
|
|
9962
10036
|
id: string;
|
|
9963
10037
|
organizationId: string;
|
|
9964
10038
|
name: string;
|
|
9965
|
-
status: "active" | "
|
|
10039
|
+
status: "active" | "onboarding" | "paused" | "completed" | "churned";
|
|
10040
|
+
source: string;
|
|
9966
10041
|
sourceDealId: string | null;
|
|
9967
10042
|
primaryCompanyId: string | null;
|
|
9968
10043
|
primaryContactId: string | null;
|
|
@@ -9978,7 +10053,7 @@ declare function useClients(filters?: ClientsListFilters): _tanstack_react_query
|
|
|
9978
10053
|
|
|
9979
10054
|
declare function useClientStatus(): _tanstack_react_query.UseQueryResult<{
|
|
9980
10055
|
totalClients: number;
|
|
9981
|
-
byStatus: Record<"active" | "
|
|
10056
|
+
byStatus: Record<"active" | "onboarding" | "paused" | "completed" | "churned", number>;
|
|
9982
10057
|
linkedDeals: number;
|
|
9983
10058
|
linkedProjects: number;
|
|
9984
10059
|
linkedCompanies: number;
|
|
@@ -9989,7 +10064,8 @@ declare function useClient(clientId: string | undefined): _tanstack_react_query.
|
|
|
9989
10064
|
id: string;
|
|
9990
10065
|
organizationId: string;
|
|
9991
10066
|
name: string;
|
|
9992
|
-
status: "active" | "
|
|
10067
|
+
status: "active" | "onboarding" | "paused" | "completed" | "churned";
|
|
10068
|
+
source: string;
|
|
9993
10069
|
sourceDealId: string | null;
|
|
9994
10070
|
primaryCompanyId: string | null;
|
|
9995
10071
|
primaryContactId: string | null;
|
|
@@ -10034,7 +10110,8 @@ declare function useCreateClient(): _tanstack_react_query.UseMutationResult<{
|
|
|
10034
10110
|
id: string;
|
|
10035
10111
|
organizationId: string;
|
|
10036
10112
|
name: string;
|
|
10037
|
-
status: "active" | "
|
|
10113
|
+
status: "active" | "onboarding" | "paused" | "completed" | "churned";
|
|
10114
|
+
source: string;
|
|
10038
10115
|
sourceDealId: string | null;
|
|
10039
10116
|
primaryCompanyId: string | null;
|
|
10040
10117
|
primaryContactId: string | null;
|
|
@@ -10044,7 +10121,8 @@ declare function useCreateClient(): _tanstack_react_query.UseMutationResult<{
|
|
|
10044
10121
|
updatedAt: string;
|
|
10045
10122
|
}, Error, {
|
|
10046
10123
|
name: string;
|
|
10047
|
-
status?: "active" | "
|
|
10124
|
+
status?: "active" | "onboarding" | "paused" | "completed" | "churned" | undefined;
|
|
10125
|
+
source?: string | undefined;
|
|
10048
10126
|
sourceDealId?: string | null | undefined;
|
|
10049
10127
|
primaryCompanyId?: string | null | undefined;
|
|
10050
10128
|
primaryContactId?: string | null | undefined;
|
|
@@ -10059,7 +10137,8 @@ declare function useUpdateClient(): _tanstack_react_query.UseMutationResult<{
|
|
|
10059
10137
|
id: string;
|
|
10060
10138
|
organizationId: string;
|
|
10061
10139
|
name: string;
|
|
10062
|
-
status: "active" | "
|
|
10140
|
+
status: "active" | "onboarding" | "paused" | "completed" | "churned";
|
|
10141
|
+
source: string;
|
|
10063
10142
|
sourceDealId: string | null;
|
|
10064
10143
|
primaryCompanyId: string | null;
|
|
10065
10144
|
primaryContactId: string | null;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { createElevasisQueryClient } from './chunk-
|
|
2
|
-
export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, 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, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, 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, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, 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-3MTAHV5M.js';
|
|
1
|
+
export { createElevasisQueryClient } from './chunk-UECAFQKT.js';
|
|
2
|
+
export { APIErrorAlert, AbsoluteScheduleForm, AccessGuard, AccessKeys, ActionModal, ActivityCard, ActivityFeedWidget, ActivityFilters as ActivityFiltersBar, ActivityTable, ActivityTimeline, ActivityTrendChart, AgentDefinitionDisplay, AgentExecutionLogs, AgentExecutionTimeline, AgentExecutionVisualizer, AgentIterationEdge, AgentIterationNode, AllTasksPage, ApiKeyDisplayModal, ApiKeyList, ApiKeyService, ApiKeySettings, AppErrorBoundary, AppShellCenteredContainer, AppShellContainer, AppShellContentContainer, AppShellError, AppShellLoader, AppShellRightSideContainer, AppShellRightSideOuterContainer, AppTopbarAdjusterWrapper, AppearanceProvider, BaseEdge, BaseExecutionLogs, BaseExecutionLogsHeader, BaseExecutionLogsStates, BaseNode, Breadcrumbs, BusinessImpactCard, CenteredErrorState, ChartFrame, CheckpointGroup, CollapsibleJsonSection, CollapsibleSection, CollapsibleSidebarGroup, CombinedTrendChart, CommandQueueSidebar, CommandQueueSidebarMiddle, CommandQueueSidebarTop, CommandQueueTaskRow, ConfigCard, ConfirmationInputModal, ConfirmationModal, ContentSections, ContextUsageBadge, ContextViewer, ContractDisplay, CostBreakdownCard, CostByModelTable, CostMetricsCard, CostTrendChart, CrashErrorFallback, CreateApiKeyModal, CreateCredentialModal, CreateRoleModal, CreateScheduleModal, CredentialList, CredentialService, CredentialSettings, CrmActionsProvider, CrmOverview, CrmSidebar, CrmSidebarMiddle, CrmSidebarTop, CustomModal, CustomSelector, CyberAreaChart, CyberDonut, CyberDonutTooltip, CyberLegendItem, CyberParticles, DEAL_STAGES, DEFAULT_KANBAN_CONFIG, DEFAULT_SEMANTIC_ICON_REGISTRY, DealDetailPage, DealKanbanCard, DealsListPage, DeleteScheduleModal, DeploymentDetailModal, DeploymentList, DeploymentService, DeploymentSettings, DeploymentStatusBadge, DetailCardSkeleton, EditApiKeyModal, ElevasisCoreProvider, ElevasisLoader, ElevasisSystemsProvider, ElevasisUIProvider, EmptyState, EmptyVisualizer, ErrorAnalysisCard, ErrorBreakdownTable, ErrorReportCard, ExecutionBreakdownTable, ExecutionErrorSection, ExecutionHealthCard, ExecutionLogsFilters as ExecutionLogsFilterBar, ExecutionLogsTable, ExecutionStats, ExecutionStatusBadge, FeatureUnavailableState, FilterBar, GlowDot, GraphBackground, GraphContainer, GraphFitViewButton, GraphFitViewHandler, GraphLegend, HealthStatusCard, HeroStatsRow, JsonViewer, KanbanBoard, LEAD_GEN_ROUTE_LINKS, LeadGenCompaniesPage, LeadGenContactsPage, LeadGenListDetailPage, LeadGenListsPage, LeadGenOverviewPage, LeadGenRouteShell, LeadGenSidebar, LeadGenSidebarMiddle, LeadGenSidebarTop, LinksGroup, ListActionsProvider, ListSkeleton, LogEntry, LogGroup, MdxRenderer, MembershipStatusBadge, MetricsStrip, MilestoneTimeline, MyTasksPanel, NavigationButton, NewKnowledgeMapEdge, NewKnowledgeMapGraph, NewKnowledgeMapNode, NoAccessState, NotificationBell, NotificationItem, NotificationList, NotificationPanel, NotificationProvider, OAuthConnectModal, OperationsService, OperationsSidebar, OperationsSidebarMiddle, OperationsSidebarTop, OrganizationMembershipService, OrganizationMembershipsList, OrganizationProvider, OrganizationSwitcher, OrganizationSwitcherConnected, PIPELINE_FUNNEL_ORDER, PageContainer, PageNotFound, PageTitleCaption, PermissionMatrix, PipelineFunnelWidget, ProjectDetailPage, ProjectsListPage, ProjectsSidebar, ProjectsSidebarMiddle, ProjectsSidebarTop, ProtectedRoute, QuickCreateActions, RecurringScheduleForm, RelativeScheduleForm, ResourceCard, ResourceDefinitionSection, ResourceErrorState, ResourceFilter, ResourceHeader, ResourceHealthChart, ResourceHealthPanel, ResourceNotFoundState, RichTextEditor, RoleBadge, RunResourceButton, SAVED_VIEW_PRESETS, SavedViewsPanel, ScheduleCard, ScheduleDetailModal, ScheduleTypeSelector, SemanticIcon, SessionMemory, Sidebar, SidebarContext, SidebarProvider, SortableHeader, StatCard, StatCardSkeleton, StatsCardSkeleton, StatusBadge, StepConfigForm, SubshellContainer, SubshellContentContainer, SubshellLoader, SubshellNavList, SubshellRightSideContainer, SubshellSidebar, SubshellSidebarLoader, SystemShell, TabCountBadge, TabSection, TableSelectionToolbar, TaskCard, TaskScheduler, TimeRangeSelector, TimelineAxis, TimelineBar, TimelineContainer, TimelineRow, ToolsListDisplay, Topbar, TopbarActions, TopbarContainer, TrendIndicator, UnifiedWorkflowEdge, UnifiedWorkflowGraph, UnifiedWorkflowNode, UpcomingMilestonesPage, Vignette, VisualizerContainer, WebhookEndpointService, WebhookUrlDisplayModal, WorkflowDefinitionDisplay, WorkflowExecutionLogs, WorkflowExecutionTimeline, ZodFormRenderer, acquisitionListKeys, buildErrorReport, calculateProgress, clientsKeys, collectResourceFilterFacets, companyKeys, contactKeys, createOrganizationsSlice, createTestSystemsProvider, createUseOrgInitialization, createUseOrganizations, crmManifest, dealKeys, dealNoteKeys, dealTaskKeys, deliveryManifest, executionsKeys, extendSemanticIconRegistry, filterByDomainFilters, formatStatusLabel, getEnrichmentColor, getExecutionStatusConfig, getGraphBackgroundStyles, getHealthColor, getIcon, getLogLevelConfig, getResourceFilterFacetIds, getSemanticIconComponent, getSeriesColor, getStatusColor, iconMap, isSessionCapable, labelResourceFilterFacet, leadGenArtifactKeys, leadGenListCompanyKeys, leadGenListMemberKeys, leadGenManifest, mdxComponents, milestoneKeys, milestoneStatusColors, monitoringManifest, noteKeys, noteTypeColors, observabilityKeys, operationsKeys, operationsManifest, projectActivityKeys, projectKeys, projectStatusColors, requestsKeys, resolveSemanticIconComponent, scheduleKeys, sessionsKeys, settingsManifest, showApiErrorNotification, showAuthError, showErrorNotification, showInfoNotification, showSuccessNotification, showWarningNotification, sortData, subsidebarWidth, taskKeys, taskStatusColors, taskTypeColors, useAccess, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAddCompaniesToList, useAddContactsToList, useAppearance, useArchiveSession, useArchivedLogs, useArtifacts, useAssignRole, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBreadcrumbs, 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, useCrmActions, useCrmPipelineSummary, useCrmQuickMetrics, useCyberColors, 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, useElevasisSystems, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAction, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionSSE, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphBackgroundStyles, useGraphTheme, useInFlightExecutions, useList, useListActions, useListApiKeys, useListDeployments, useListExecutions, useListMember, useListMembers, useListProgress, useListRecords, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNewKnowledgeMapLayout, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisSystems, useOrgRoles, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePermissionCatalog, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentCrmActivity, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRemoveCompaniesFromList, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResolvedOrganizationModel, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRevokeRole, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSidebar, useSidebarCollapse, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSubmitRequest, 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-FUKNHVUV.js';
|
|
3
3
|
export { PresetsProvider, TOKEN_VAR_MAP, componentThemes, createCssVariablesResolver, mantineThemeOverride, useAvailablePresets, usePresetsContext } from './chunk-NZ2F5RQ4.js';
|
|
4
4
|
export { AmbientBloomGrid, AppBackground, CyberBackground, FilmGrain, FloatingMotes, FloatingOrbs, PerspectiveGrid, RadiantGlow, WaveBackground, generateShades, getPreset, PRESETS as presets } from './chunk-OJJK27GC.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';
|
|
@@ -10,7 +10,7 @@ export { createUseAppInitialization } from './chunk-SJHM4WDG.js';
|
|
|
10
10
|
import './chunk-ZTWA5H77.js';
|
|
11
11
|
export { CardHeader } from './chunk-S3XR4II4.js';
|
|
12
12
|
export { InitializationContext, InitializationProvider, useInitialization } from './chunk-6DO4PE3O.js';
|
|
13
|
-
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-
|
|
13
|
+
export { ApiClientProvider, useApiClient, useApiClientContext } from './chunk-NVVAQNKE.js';
|
|
14
14
|
export { OrganizationContext, useOrganization } from './chunk-DD3CCMCZ.js';
|
|
15
15
|
export { SEOSidebar, SEOSidebarMiddle, SEOSidebarTop, SubshellNavItem, SubshellSidebarSection, seoManifest, sidebarBottomSectionCollapsedHeight, sidebarBottomSectionHeight, sidebarCollapsedWidth, sidebarGroupChevronSize, sidebarHoverDelay, sidebarIconInnerSize, sidebarIconSize, sidebarIconStroke, sidebarItemGap, sidebarItemHeight, sidebarItemPadding, sidebarSectionPadding, sidebarSubLinkIndent, sidebarSubLinkPaddingX, sidebarSubLinkPaddingY, sidebarToggleIconSize, sidebarTransitionDuration, sidebarWidth, subshellNavItemIconSize, topbarHeight } from './chunk-GMXGDO3I.js';
|
|
16
16
|
export { ScrollToTop, TanStackRouterBridge } from './chunk-2IFYDILW.js';
|
|
@@ -19,7 +19,7 @@ export { GRAPH_CONSTANTS, calculateGraphHeight, Graph_module_css_default as grap
|
|
|
19
19
|
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';
|
|
20
20
|
import './chunk-RNP5R5I3.js';
|
|
21
21
|
export { ProfileProvider, UserProfileService, useProfile, useUserProfile } from './chunk-W2SFTXMT.js';
|
|
22
|
-
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, 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, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, 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-
|
|
22
|
+
export { APIClientError, API_URL, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, 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, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, 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-XDEUR36B.js';
|
|
23
23
|
export { ResourceStatusColors } from './chunk-KRWALB24.js';
|
|
24
24
|
export { ElevasisServiceProvider, useElevasisServices } from './chunk-2FTX4WO2.js';
|
|
25
25
|
import './chunk-MQZE7SUI.js';
|
|
@@ -1252,6 +1252,7 @@ type Database = {
|
|
|
1252
1252
|
organization_id: string;
|
|
1253
1253
|
primary_company_id: string | null;
|
|
1254
1254
|
primary_contact_id: string | null;
|
|
1255
|
+
source: string;
|
|
1255
1256
|
source_deal_id: string | null;
|
|
1256
1257
|
status: string;
|
|
1257
1258
|
updated_at: string;
|
|
@@ -1265,6 +1266,7 @@ type Database = {
|
|
|
1265
1266
|
organization_id: string;
|
|
1266
1267
|
primary_company_id?: string | null;
|
|
1267
1268
|
primary_contact_id?: string | null;
|
|
1269
|
+
source?: string;
|
|
1268
1270
|
source_deal_id?: string | null;
|
|
1269
1271
|
status?: string;
|
|
1270
1272
|
updated_at?: string;
|
|
@@ -1278,6 +1280,7 @@ type Database = {
|
|
|
1278
1280
|
organization_id?: string;
|
|
1279
1281
|
primary_company_id?: string | null;
|
|
1280
1282
|
primary_contact_id?: string | null;
|
|
1283
|
+
source?: string;
|
|
1281
1284
|
source_deal_id?: string | null;
|
|
1282
1285
|
status?: string;
|
|
1283
1286
|
updated_at?: string;
|
|
@@ -281,6 +281,7 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
281
281
|
action: "action";
|
|
282
282
|
ontology: "ontology";
|
|
283
283
|
role: "role";
|
|
284
|
+
client: "client";
|
|
284
285
|
stage: "stage";
|
|
285
286
|
goal: "goal";
|
|
286
287
|
"customer-segment": "customer-segment";
|
|
@@ -292,7 +293,7 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
292
293
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
293
294
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
294
295
|
target: {
|
|
295
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
296
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
296
297
|
id: string;
|
|
297
298
|
};
|
|
298
299
|
nodeId: string;
|
|
@@ -300,7 +301,7 @@ declare const OrgKnowledgeNodeSchema: z.ZodObject<{
|
|
|
300
301
|
nodeId: string;
|
|
301
302
|
} | {
|
|
302
303
|
target: {
|
|
303
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
304
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
304
305
|
id: string;
|
|
305
306
|
};
|
|
306
307
|
}>>>>;
|
|
@@ -375,6 +376,7 @@ type OrganizationModelIconToken = z.infer<typeof OrganizationModelIconTokenSchem
|
|
|
375
376
|
|
|
376
377
|
declare const OrganizationModelSchema: z.ZodObject<{
|
|
377
378
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
379
|
+
snapshotHash: z.ZodOptional<z.ZodString>;
|
|
378
380
|
domainMetadata: z.ZodPipe<z.ZodDefault<z.ZodObject<{
|
|
379
381
|
branding: z.ZodOptional<z.ZodObject<{
|
|
380
382
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
@@ -384,6 +386,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
384
386
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
385
387
|
lastModified: z.ZodString;
|
|
386
388
|
}, z.core.$strip>>;
|
|
389
|
+
clients: z.ZodOptional<z.ZodObject<{
|
|
390
|
+
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
391
|
+
lastModified: z.ZodString;
|
|
392
|
+
}, z.core.$strip>>;
|
|
387
393
|
customers: z.ZodOptional<z.ZodObject<{
|
|
388
394
|
version: z.ZodDefault<z.ZodLiteral<1>>;
|
|
389
395
|
lastModified: z.ZodString;
|
|
@@ -441,6 +447,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
441
447
|
version: 1;
|
|
442
448
|
lastModified: string;
|
|
443
449
|
};
|
|
450
|
+
clients: {
|
|
451
|
+
version: 1;
|
|
452
|
+
lastModified: string;
|
|
453
|
+
};
|
|
444
454
|
customers: {
|
|
445
455
|
version: 1;
|
|
446
456
|
lastModified: string;
|
|
@@ -498,6 +508,10 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
498
508
|
version: 1;
|
|
499
509
|
lastModified: string;
|
|
500
510
|
} | undefined;
|
|
511
|
+
clients?: {
|
|
512
|
+
version: 1;
|
|
513
|
+
lastModified: string;
|
|
514
|
+
} | undefined;
|
|
501
515
|
customers?: {
|
|
502
516
|
version: 1;
|
|
503
517
|
lastModified: string;
|
|
@@ -690,6 +704,56 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
690
704
|
shortName: z.ZodOptional<z.ZodString>;
|
|
691
705
|
description: z.ZodOptional<z.ZodString>;
|
|
692
706
|
}, z.core.$loose>>;
|
|
707
|
+
clients: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
708
|
+
id: z.ZodString;
|
|
709
|
+
slug: z.ZodString;
|
|
710
|
+
name: z.ZodString;
|
|
711
|
+
status: z.ZodDefault<z.ZodEnum<{
|
|
712
|
+
active: "active";
|
|
713
|
+
onboarding: "onboarding";
|
|
714
|
+
paused: "paused";
|
|
715
|
+
completed: "completed";
|
|
716
|
+
churned: "churned";
|
|
717
|
+
}>>;
|
|
718
|
+
source: z.ZodOptional<z.ZodString>;
|
|
719
|
+
identity: z.ZodDefault<z.ZodObject<{
|
|
720
|
+
organizationName: z.ZodOptional<z.ZodString>;
|
|
721
|
+
shortName: z.ZodOptional<z.ZodString>;
|
|
722
|
+
clientBrief: z.ZodDefault<z.ZodString>;
|
|
723
|
+
geographicFocus: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
724
|
+
timeZone: z.ZodDefault<z.ZodString>;
|
|
725
|
+
}, z.core.$loose>>;
|
|
726
|
+
branding: z.ZodDefault<z.ZodObject<{
|
|
727
|
+
voice: z.ZodOptional<z.ZodString>;
|
|
728
|
+
tagline: z.ZodOptional<z.ZodString>;
|
|
729
|
+
values: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
730
|
+
}, z.core.$loose>>;
|
|
731
|
+
workspace: z.ZodDefault<z.ZodObject<{
|
|
732
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
733
|
+
"external-project": "external-project";
|
|
734
|
+
"internal-project": "internal-project";
|
|
735
|
+
none: "none";
|
|
736
|
+
}>>;
|
|
737
|
+
owner: z.ZodOptional<z.ZodEnum<{
|
|
738
|
+
platform: "platform";
|
|
739
|
+
client: "client";
|
|
740
|
+
developer: "developer";
|
|
741
|
+
}>>;
|
|
742
|
+
projectId: z.ZodOptional<z.ZodString>;
|
|
743
|
+
workspacePath: z.ZodOptional<z.ZodString>;
|
|
744
|
+
}, z.core.$loose>>;
|
|
745
|
+
links: z.ZodDefault<z.ZodObject<{
|
|
746
|
+
projectIds: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
747
|
+
primaryCompanyId: z.ZodOptional<z.ZodString>;
|
|
748
|
+
primaryContactId: z.ZodOptional<z.ZodString>;
|
|
749
|
+
sourceDealId: z.ZodOptional<z.ZodString>;
|
|
750
|
+
}, z.core.$strip>>;
|
|
751
|
+
prompts: z.ZodDefault<z.ZodObject<{
|
|
752
|
+
defaultContext: z.ZodDefault<z.ZodString>;
|
|
753
|
+
}, z.core.$loose>>;
|
|
754
|
+
config: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
755
|
+
customValues: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<JsonValue, unknown, z.core.$ZodTypeInternals<JsonValue, unknown>>>>;
|
|
756
|
+
}, z.core.$strict>>>>;
|
|
693
757
|
customers: z.ZodDefault<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
694
758
|
id: z.ZodString;
|
|
695
759
|
order: z.ZodNumber;
|
|
@@ -1343,6 +1407,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1343
1407
|
action: "action";
|
|
1344
1408
|
ontology: "ontology";
|
|
1345
1409
|
role: "role";
|
|
1410
|
+
client: "client";
|
|
1346
1411
|
stage: "stage";
|
|
1347
1412
|
goal: "goal";
|
|
1348
1413
|
"customer-segment": "customer-segment";
|
|
@@ -1354,7 +1419,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1354
1419
|
nodeId: z.ZodUnion<readonly [z.ZodString, z.ZodTemplateLiteral<`ontology:${string}`>]>;
|
|
1355
1420
|
}, z.core.$strip>]>, z.ZodTransform<{
|
|
1356
1421
|
target: {
|
|
1357
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1422
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1358
1423
|
id: string;
|
|
1359
1424
|
};
|
|
1360
1425
|
nodeId: string;
|
|
@@ -1362,7 +1427,7 @@ declare const OrganizationModelSchema: z.ZodObject<{
|
|
|
1362
1427
|
nodeId: string;
|
|
1363
1428
|
} | {
|
|
1364
1429
|
target: {
|
|
1365
|
-
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1430
|
+
kind: "knowledge" | "system" | "resource" | "action" | "ontology" | "role" | "client" | "stage" | "goal" | "customer-segment" | "offering";
|
|
1366
1431
|
id: string;
|
|
1367
1432
|
};
|
|
1368
1433
|
}>>>>;
|
|
@@ -1394,7 +1459,7 @@ type OrgKnowledgeKind = z.infer<typeof OrgKnowledgeKindSchema>;
|
|
|
1394
1459
|
*/
|
|
1395
1460
|
type RelationshipType = 'triggers' | 'uses' | 'approval';
|
|
1396
1461
|
|
|
1397
|
-
type OrganizationGraphNodeKind = 'organization' | 'system' | 'role' | 'action' | 'entity' | 'event' | 'policy' | 'stage' | 'resource' | 'knowledge' | 'customer-segment' | 'offering' | 'goal' | 'surface' | 'navigation-group' | 'ontology';
|
|
1462
|
+
type OrganizationGraphNodeKind = 'organization' | 'system' | 'client' | 'role' | 'action' | 'entity' | 'event' | 'policy' | 'stage' | 'resource' | 'knowledge' | 'customer-segment' | 'offering' | 'goal' | 'surface' | 'navigation-group' | 'ontology';
|
|
1398
1463
|
type OrganizationGraphEdgeKind = 'contains' | 'references' | 'maps_to' | 'uses' | 'governs' | 'links' | 'affects' | 'emits' | 'originates_from' | 'triggers' | 'approval' | 'applies_to' | 'effects' | 'actions' | 'reads' | 'writes' | 'uses_catalog';
|
|
1399
1464
|
|
|
1400
1465
|
interface OrganizationGraphNode {
|
|
@@ -1739,7 +1804,7 @@ interface DescribeNodeViewProps {
|
|
|
1739
1804
|
*/
|
|
1740
1805
|
declare function DescribeNodeView({ node, graph, organizationModel, knowledgeNodes, onNavigateToNode }: DescribeNodeViewProps): react_jsx_runtime.JSX.Element;
|
|
1741
1806
|
|
|
1742
|
-
type DomainPanelKey = 'identity' | 'branding' | 'customers' | 'offerings' | 'goals' | 'roles' | 'statuses' | 'navigation' | 'policies' | 'ontology-objects' | 'ontology-links' | 'ontology-actions' | 'ontology-catalogs' | 'ontology-events' | 'ontology-interfaces' | 'ontology-value-types' | 'ontology-properties' | 'ontology-groups' | 'ontology-surfaces' | 'ontology-resources';
|
|
1807
|
+
type DomainPanelKey = 'identity' | 'branding' | 'customers' | 'clients' | 'offerings' | 'goals' | 'roles' | 'statuses' | 'navigation' | 'policies' | 'ontology-objects' | 'ontology-links' | 'ontology-actions' | 'ontology-catalogs' | 'ontology-events' | 'ontology-interfaces' | 'ontology-value-types' | 'ontology-properties' | 'ontology-groups' | 'ontology-surfaces' | 'ontology-resources';
|
|
1743
1808
|
interface DomainPanelDispatcherProps {
|
|
1744
1809
|
domainKey: string;
|
|
1745
1810
|
model: OrganizationModel;
|