@elevasis/ui 2.17.0 → 2.18.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/charts/index.js +2 -2
- package/dist/{chunk-ABUDMATM.js → chunk-66VY5EMV.js} +4 -4
- package/dist/{chunk-2TDZBYXI.js → chunk-A2AZY5SF.js} +1 -1
- package/dist/{chunk-FNWWVX5N.js → chunk-B6FIIEFO.js} +245 -86
- package/dist/{chunk-MJ6YV2B5.js → chunk-DDZMBNTY.js} +1 -1
- package/dist/{chunk-R7GKX4HW.js → chunk-EY322HXF.js} +175 -78
- package/dist/{chunk-JU6UB4YA.js → chunk-FM6LSZ45.js} +3 -3
- package/dist/{chunk-OCCZRPER.js → chunk-I3LQGLUC.js} +1 -1
- package/dist/{chunk-MDO4UCEJ.js → chunk-LT33DSMO.js} +45 -80
- package/dist/{chunk-TP5NMF6K.js → chunk-P6TC4K7I.js} +3 -3
- package/dist/{chunk-TTP62HWW.js → chunk-SQPM2QDH.js} +7 -13
- package/dist/{chunk-S6CYH4RI.js → chunk-SS2UVUSG.js} +27 -5
- package/dist/{chunk-MUZIYL5Q.js → chunk-UA36WILN.js} +83 -310
- package/dist/{chunk-OXWQQCDR.js → chunk-WP3IYOVJ.js} +226 -211
- package/dist/components/index.d.ts +9 -4
- package/dist/components/index.js +32 -18
- package/dist/features/crm/index.js +5 -5
- package/dist/features/dashboard/index.js +6 -6
- package/dist/features/delivery/index.js +5 -5
- package/dist/features/lead-gen/index.d.ts +152 -16
- package/dist/features/lead-gen/index.js +9 -9
- package/dist/features/monitoring/index.js +7 -7
- package/dist/features/monitoring/requests/index.js +4 -4
- package/dist/features/operations/index.d.ts +1 -0
- package/dist/features/operations/index.js +8 -8
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +359 -46
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +359 -46
- package/dist/hooks/published.js +4 -4
- package/dist/index.d.ts +359 -46
- package/dist/index.js +4 -4
- package/dist/provider/index.js +3 -3
- package/dist/provider/published.js +2 -2
- package/dist/types/index.d.ts +12 -6
- package/dist/zustand/index.js +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -3874,6 +3874,10 @@ interface PatchTaskParams {
|
|
|
3874
3874
|
targetExecutionId?: string;
|
|
3875
3875
|
status?: 'pending' | 'failed' | 'completed';
|
|
3876
3876
|
}
|
|
3877
|
+
interface CommandQueueListResponse {
|
|
3878
|
+
tasks: Task[];
|
|
3879
|
+
total: number;
|
|
3880
|
+
}
|
|
3877
3881
|
|
|
3878
3882
|
/**
|
|
3879
3883
|
* Checkpoint list item for sidebar grouping
|
|
@@ -4018,6 +4022,8 @@ declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
|
4018
4022
|
invalid: "invalid";
|
|
4019
4023
|
}>>;
|
|
4020
4024
|
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
4025
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
4026
|
+
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
4021
4027
|
}, z.core.$strict>;
|
|
4022
4028
|
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
4023
4029
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -4053,6 +4059,7 @@ declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
|
4053
4059
|
active: "active";
|
|
4054
4060
|
invalid: "invalid";
|
|
4055
4061
|
}>;
|
|
4062
|
+
contactCount: z.ZodNumber;
|
|
4056
4063
|
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
4057
4064
|
createdAt: z.ZodString;
|
|
4058
4065
|
updatedAt: z.ZodString;
|
|
@@ -4085,6 +4092,19 @@ declare const AcqContactResponseSchema: z.ZodObject<{
|
|
|
4085
4092
|
active: "active";
|
|
4086
4093
|
invalid: "invalid";
|
|
4087
4094
|
}>;
|
|
4095
|
+
company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4096
|
+
id: z.ZodString;
|
|
4097
|
+
name: z.ZodString;
|
|
4098
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
4099
|
+
website: z.ZodNullable<z.ZodString>;
|
|
4100
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
4101
|
+
segment: z.ZodNullable<z.ZodString>;
|
|
4102
|
+
category: z.ZodNullable<z.ZodString>;
|
|
4103
|
+
status: z.ZodEnum<{
|
|
4104
|
+
active: "active";
|
|
4105
|
+
invalid: "invalid";
|
|
4106
|
+
}>;
|
|
4107
|
+
}, z.core.$strip>>>;
|
|
4088
4108
|
createdAt: z.ZodString;
|
|
4089
4109
|
updatedAt: z.ZodString;
|
|
4090
4110
|
}, z.core.$strip>;
|
|
@@ -4961,6 +4981,8 @@ interface ResourceExecutionsResponse {
|
|
|
4961
4981
|
executions: CommandViewExecution[];
|
|
4962
4982
|
totalExecutions: number;
|
|
4963
4983
|
timeRange: StatsTimeRange;
|
|
4984
|
+
page: number;
|
|
4985
|
+
limit: number;
|
|
4964
4986
|
}
|
|
4965
4987
|
interface HumanCheckpointStats {
|
|
4966
4988
|
checkpointId: string;
|
|
@@ -9406,7 +9428,8 @@ declare const executionsKeys: {
|
|
|
9406
9428
|
all: readonly ["executions"];
|
|
9407
9429
|
resources: (orgId: string | null) => readonly ["executions", "resources", string | null];
|
|
9408
9430
|
resourceDefinition: (orgId: string | null, resourceId: string) => readonly ["executions", "definition", string | null, string];
|
|
9409
|
-
|
|
9431
|
+
executionsListBase: (orgId: string | null, resourceId: string) => readonly ["executions", "list", string | null, string];
|
|
9432
|
+
executions: (orgId: string | null, resourceId: string, resourceStatus?: string, limit?: number, offset?: number) => readonly ["executions", "list", string | null, string, string, number | null, number];
|
|
9410
9433
|
execution: (orgId: string | null, resourceId: string, executionId: string) => readonly ["executions", "execution", string | null, string, string];
|
|
9411
9434
|
};
|
|
9412
9435
|
|
|
@@ -9436,16 +9459,17 @@ interface APIExecutionDetail extends APIExecutionSummary {
|
|
|
9436
9459
|
}
|
|
9437
9460
|
|
|
9438
9461
|
// API request/response types
|
|
9439
|
-
interface APIExecutionListResponse {
|
|
9440
|
-
executions: APIExecutionSummary[]
|
|
9462
|
+
interface APIExecutionListResponse {
|
|
9463
|
+
executions: APIExecutionSummary[]
|
|
9464
|
+
total?: number
|
|
9465
|
+
limit?: number
|
|
9466
|
+
offset?: number
|
|
9467
|
+
hasMore?: boolean
|
|
9441
9468
|
}
|
|
9442
9469
|
|
|
9443
9470
|
/**
|
|
9444
9471
|
* Fetch the execution list for a given resource.
|
|
9445
9472
|
*
|
|
9446
|
-
* resourceStatus and limit are intentionally excluded from the query key so that
|
|
9447
|
-
* SSE invalidations (which target the unfiltered key) bust all filter variants.
|
|
9448
|
-
*
|
|
9449
9473
|
* @example
|
|
9450
9474
|
* const { data, isLoading } = useExecutions(resourceId)
|
|
9451
9475
|
*
|
|
@@ -9453,7 +9477,7 @@ interface APIExecutionListResponse {
|
|
|
9453
9477
|
* // With status filter and limit
|
|
9454
9478
|
* const { data } = useExecutions(resourceId, 'running', 20)
|
|
9455
9479
|
*/
|
|
9456
|
-
declare function useExecutions(resourceId: string, resourceStatus?: ResourceStatus | 'all', limit?: number): _tanstack_react_query.UseQueryResult<APIExecutionListResponse, Error>;
|
|
9480
|
+
declare function useExecutions(resourceId: string, resourceStatus?: ResourceStatus | 'all', limit?: number, offset?: number): _tanstack_react_query.UseQueryResult<APIExecutionListResponse, Error>;
|
|
9457
9481
|
|
|
9458
9482
|
/**
|
|
9459
9483
|
* Fetch a single execution detail.
|
|
@@ -10708,29 +10732,7 @@ declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeR
|
|
|
10708
10732
|
timeRange?: TimeRange;
|
|
10709
10733
|
priorityMin?: number;
|
|
10710
10734
|
priorityMax?: number;
|
|
10711
|
-
}): _tanstack_react_query.UseQueryResult<
|
|
10712
|
-
createdAt: Date;
|
|
10713
|
-
completedAt: Date | undefined;
|
|
10714
|
-
expiresAt: Date | undefined;
|
|
10715
|
-
id: string;
|
|
10716
|
-
organizationId: string;
|
|
10717
|
-
actions: ActionConfig[];
|
|
10718
|
-
context: unknown;
|
|
10719
|
-
selectedAction?: string;
|
|
10720
|
-
actionPayload?: unknown;
|
|
10721
|
-
description?: string;
|
|
10722
|
-
priority: number;
|
|
10723
|
-
humanCheckpoint?: string;
|
|
10724
|
-
status: QueueTaskStatus;
|
|
10725
|
-
targetResourceId?: string;
|
|
10726
|
-
targetResourceType?: "agent" | "workflow";
|
|
10727
|
-
targetExecutionId?: string;
|
|
10728
|
-
completedBy?: string;
|
|
10729
|
-
idempotencyKey?: string | null;
|
|
10730
|
-
originExecutionId: string;
|
|
10731
|
-
originResourceType: OriginResourceType;
|
|
10732
|
-
originResourceId: string;
|
|
10733
|
-
}[], Error>;
|
|
10735
|
+
}): _tanstack_react_query.UseQueryResult<CommandQueueListResponse, Error>;
|
|
10734
10736
|
|
|
10735
10737
|
interface SubmitActionRequest {
|
|
10736
10738
|
taskId: string;
|
|
@@ -10739,7 +10741,7 @@ interface SubmitActionRequest {
|
|
|
10739
10741
|
notes?: string;
|
|
10740
10742
|
}
|
|
10741
10743
|
interface OptimisticContext {
|
|
10742
|
-
previousData: Map<readonly unknown[],
|
|
10744
|
+
previousData: Map<readonly unknown[], CommandQueueListResponse | undefined>;
|
|
10743
10745
|
}
|
|
10744
10746
|
interface ExecutionErrorDetails {
|
|
10745
10747
|
message: string;
|
|
@@ -10760,7 +10762,7 @@ interface SubmitActionResponse {
|
|
|
10760
10762
|
declare function useSubmitAction(): _tanstack_react_query.UseMutationResult<SubmitActionResponse, Error, SubmitActionRequest, OptimisticContext>;
|
|
10761
10763
|
|
|
10762
10764
|
declare function useDeleteTask$1(): _tanstack_react_query.UseMutationResult<void, Error, string, {
|
|
10763
|
-
previousData: Map<readonly unknown[],
|
|
10765
|
+
previousData: Map<readonly unknown[], CommandQueueListResponse | undefined>;
|
|
10764
10766
|
}>;
|
|
10765
10767
|
|
|
10766
10768
|
interface UseCommandQueueTotalsOptions {
|
|
@@ -10929,12 +10931,14 @@ interface UseExecutionPanelStateOptions {
|
|
|
10929
10931
|
*/
|
|
10930
10932
|
apiUrl: string;
|
|
10931
10933
|
limit?: number;
|
|
10934
|
+
offset?: number;
|
|
10932
10935
|
onConnectionStatus?: (connected: boolean, runningCount: number) => void;
|
|
10933
10936
|
selectedId?: string | null;
|
|
10934
10937
|
onSelectedIdChange?: (id: string | null) => void;
|
|
10935
10938
|
}
|
|
10936
10939
|
interface UseExecutionPanelStateReturn {
|
|
10937
10940
|
executions: APIExecutionSummary$1[];
|
|
10941
|
+
total: number;
|
|
10938
10942
|
isLoading: boolean;
|
|
10939
10943
|
isFetched: boolean;
|
|
10940
10944
|
selectedId: string | undefined;
|
|
@@ -10964,7 +10968,7 @@ interface UseExecutionPanelStateReturn {
|
|
|
10964
10968
|
* } = useExecutionPanelState({ resourceId, manager, onConnectionStatus })
|
|
10965
10969
|
* ```
|
|
10966
10970
|
*/
|
|
10967
|
-
declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
|
|
10971
|
+
declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, offset, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
|
|
10968
10972
|
|
|
10969
10973
|
/**
|
|
10970
10974
|
* Utilities for extracting typed properties from resource definitions
|
|
@@ -10995,7 +10999,7 @@ interface UseCommandViewStatsOptions {
|
|
|
10995
10999
|
* Returns execution statistics (counts only, no error details) for all resources
|
|
10996
11000
|
* within the specified time range. Error details are fetched on-demand via useResourceErrors.
|
|
10997
11001
|
*
|
|
10998
|
-
* @param timeRange - Time range for stats aggregation ('24h' or '
|
|
11002
|
+
* @param timeRange - Time range for stats aggregation ('1h', '24h', '7d', or '30d')
|
|
10999
11003
|
* @returns TanStack Query result with CommandViewStatsResponse
|
|
11000
11004
|
*/
|
|
11001
11005
|
declare function useCommandViewStats(timeRange?: StatsTimeRange, options?: UseCommandViewStatsOptions): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
|
|
@@ -11239,6 +11243,8 @@ declare function useResourceErrors({ resourceId, timeRange, hasFailures }: UseRe
|
|
|
11239
11243
|
interface UseResourceExecutionsOptions {
|
|
11240
11244
|
resourceId: string | null;
|
|
11241
11245
|
timeRange: StatsTimeRange;
|
|
11246
|
+
page?: number;
|
|
11247
|
+
limit?: number;
|
|
11242
11248
|
enabled?: boolean;
|
|
11243
11249
|
}
|
|
11244
11250
|
/**
|
|
@@ -11254,8 +11260,49 @@ interface UseResourceExecutionsOptions {
|
|
|
11254
11260
|
* @param options - Resource ID, time range, and enabled flag
|
|
11255
11261
|
* @returns TanStack Query result with ResourceExecutionsResponse
|
|
11256
11262
|
*/
|
|
11257
|
-
declare function useResourceExecutions({ resourceId, timeRange, enabled }: UseResourceExecutionsOptions): _tanstack_react_query.UseQueryResult<ResourceExecutionsResponse, Error>;
|
|
11263
|
+
declare function useResourceExecutions({ resourceId, timeRange, page, limit, enabled }: UseResourceExecutionsOptions): _tanstack_react_query.UseQueryResult<ResourceExecutionsResponse, Error>;
|
|
11258
11264
|
|
|
11265
|
+
interface DealSummaryStageItem {
|
|
11266
|
+
stage: DealStage;
|
|
11267
|
+
count: number;
|
|
11268
|
+
oldestUpdatedAt: string | null;
|
|
11269
|
+
newestUpdatedAt: string | null;
|
|
11270
|
+
totalValue?: number;
|
|
11271
|
+
}
|
|
11272
|
+
interface StaleDealSummaryItem {
|
|
11273
|
+
id: string;
|
|
11274
|
+
contactEmail: string;
|
|
11275
|
+
cachedStage: string;
|
|
11276
|
+
updatedAt: string;
|
|
11277
|
+
daysStale: number;
|
|
11278
|
+
}
|
|
11279
|
+
interface DealsSummaryResponse {
|
|
11280
|
+
totalDeals: number;
|
|
11281
|
+
openDeals: number;
|
|
11282
|
+
wonDeals: number;
|
|
11283
|
+
lostDeals: number;
|
|
11284
|
+
winRate: number;
|
|
11285
|
+
avgDealSize: number;
|
|
11286
|
+
totalPipelineValue: number;
|
|
11287
|
+
stageSummary: DealSummaryStageItem[];
|
|
11288
|
+
staleDeals: StaleDealSummaryItem[];
|
|
11289
|
+
}
|
|
11290
|
+
interface DealLookupItem {
|
|
11291
|
+
id: string;
|
|
11292
|
+
contactEmail: string;
|
|
11293
|
+
cachedStage: string | null;
|
|
11294
|
+
updatedAt: string;
|
|
11295
|
+
contactName: string | null;
|
|
11296
|
+
companyName: string | null;
|
|
11297
|
+
displayLabel: string;
|
|
11298
|
+
}
|
|
11299
|
+
interface DealLookupFilters {
|
|
11300
|
+
search?: string;
|
|
11301
|
+
limit?: number;
|
|
11302
|
+
}
|
|
11303
|
+
interface UseDealsLookupOptions {
|
|
11304
|
+
enabled?: boolean;
|
|
11305
|
+
}
|
|
11259
11306
|
/**
|
|
11260
11307
|
* Query keys for acquisition deals
|
|
11261
11308
|
*/
|
|
@@ -11263,13 +11310,153 @@ declare const dealKeys: {
|
|
|
11263
11310
|
all: readonly ["deals"];
|
|
11264
11311
|
lists: () => readonly ["deals", "list"];
|
|
11265
11312
|
list: (orgId: string | null, filters: DealFilters) => readonly ["deals", "list", string | null, DealFilters];
|
|
11313
|
+
summaries: () => readonly ["deals", "summary"];
|
|
11314
|
+
summary: (orgId: string | null) => readonly ["deals", "summary", string | null];
|
|
11315
|
+
lookups: () => readonly ["deals", "lookup"];
|
|
11316
|
+
lookup: (orgId: string | null, filters: DealLookupFilters) => readonly ["deals", "lookup", string | null, DealLookupFilters];
|
|
11266
11317
|
details: () => readonly ["deals", "detail"];
|
|
11267
11318
|
detail: (id: string) => readonly ["deals", "detail", string];
|
|
11268
11319
|
};
|
|
11269
11320
|
/**
|
|
11270
11321
|
* Fetch deals with optional filters
|
|
11271
11322
|
*/
|
|
11272
|
-
declare function useDeals(filters?: DealFilters):
|
|
11323
|
+
declare function useDeals(filters?: DealFilters): {
|
|
11324
|
+
dataUpdatedAt: number;
|
|
11325
|
+
error: Error | null;
|
|
11326
|
+
errorUpdatedAt: number;
|
|
11327
|
+
failureCount: number;
|
|
11328
|
+
failureReason: Error | null;
|
|
11329
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
11330
|
+
isError: boolean;
|
|
11331
|
+
isFetched: boolean;
|
|
11332
|
+
isFetchedAfterMount: boolean;
|
|
11333
|
+
isFetching: boolean;
|
|
11334
|
+
isInitialLoading: boolean;
|
|
11335
|
+
isLoading: boolean;
|
|
11336
|
+
isLoadingError: boolean;
|
|
11337
|
+
isPaused: boolean;
|
|
11338
|
+
isPending: boolean;
|
|
11339
|
+
isPlaceholderData: boolean;
|
|
11340
|
+
isRefetchError: boolean;
|
|
11341
|
+
isRefetching: boolean;
|
|
11342
|
+
isRefetchStale: boolean;
|
|
11343
|
+
isSuccess: boolean;
|
|
11344
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions) => Promise<_tanstack_react_query.QueryObserverResult<{
|
|
11345
|
+
data: {
|
|
11346
|
+
id: string;
|
|
11347
|
+
organization_id: string;
|
|
11348
|
+
contact_id: string | null;
|
|
11349
|
+
contact_email: string;
|
|
11350
|
+
cached_stage: string | null;
|
|
11351
|
+
activity_log: unknown;
|
|
11352
|
+
discovery_data: unknown;
|
|
11353
|
+
discovery_submitted_at: string | null;
|
|
11354
|
+
discovery_submitted_by: string | null;
|
|
11355
|
+
proposal_data: unknown;
|
|
11356
|
+
proposal_status: string | null;
|
|
11357
|
+
proposal_sent_at: string | null;
|
|
11358
|
+
proposal_pdf_url: string | null;
|
|
11359
|
+
signature_envelope_id: string | null;
|
|
11360
|
+
source_list_id: string | null;
|
|
11361
|
+
source_type: string | null;
|
|
11362
|
+
initial_fee: number | null;
|
|
11363
|
+
monthly_fee: number | null;
|
|
11364
|
+
closed_lost_at: string | null;
|
|
11365
|
+
closed_lost_reason: string | null;
|
|
11366
|
+
created_at: string;
|
|
11367
|
+
updated_at: string;
|
|
11368
|
+
contact: {
|
|
11369
|
+
id: string;
|
|
11370
|
+
first_name: string | null;
|
|
11371
|
+
last_name: string | null;
|
|
11372
|
+
email: string;
|
|
11373
|
+
title: string | null;
|
|
11374
|
+
headline: string | null;
|
|
11375
|
+
linkedin_url: string | null;
|
|
11376
|
+
pipeline_status: Record<string, unknown> | null;
|
|
11377
|
+
enrichment_data: Record<string, unknown> | null;
|
|
11378
|
+
company: {
|
|
11379
|
+
id: string;
|
|
11380
|
+
name: string;
|
|
11381
|
+
domain: string | null;
|
|
11382
|
+
website: string | null;
|
|
11383
|
+
linkedin_url: string | null;
|
|
11384
|
+
segment: string | null;
|
|
11385
|
+
category: string | null;
|
|
11386
|
+
num_employees: number | null;
|
|
11387
|
+
} | null;
|
|
11388
|
+
} | null;
|
|
11389
|
+
}[];
|
|
11390
|
+
total: number;
|
|
11391
|
+
limit: number;
|
|
11392
|
+
offset: number;
|
|
11393
|
+
}, Error>>;
|
|
11394
|
+
status: "error" | "success" | "pending";
|
|
11395
|
+
data: DealListItem[];
|
|
11396
|
+
response: {
|
|
11397
|
+
data: {
|
|
11398
|
+
id: string;
|
|
11399
|
+
organization_id: string;
|
|
11400
|
+
contact_id: string | null;
|
|
11401
|
+
contact_email: string;
|
|
11402
|
+
cached_stage: string | null;
|
|
11403
|
+
activity_log: unknown;
|
|
11404
|
+
discovery_data: unknown;
|
|
11405
|
+
discovery_submitted_at: string | null;
|
|
11406
|
+
discovery_submitted_by: string | null;
|
|
11407
|
+
proposal_data: unknown;
|
|
11408
|
+
proposal_status: string | null;
|
|
11409
|
+
proposal_sent_at: string | null;
|
|
11410
|
+
proposal_pdf_url: string | null;
|
|
11411
|
+
signature_envelope_id: string | null;
|
|
11412
|
+
source_list_id: string | null;
|
|
11413
|
+
source_type: string | null;
|
|
11414
|
+
initial_fee: number | null;
|
|
11415
|
+
monthly_fee: number | null;
|
|
11416
|
+
closed_lost_at: string | null;
|
|
11417
|
+
closed_lost_reason: string | null;
|
|
11418
|
+
created_at: string;
|
|
11419
|
+
updated_at: string;
|
|
11420
|
+
contact: {
|
|
11421
|
+
id: string;
|
|
11422
|
+
first_name: string | null;
|
|
11423
|
+
last_name: string | null;
|
|
11424
|
+
email: string;
|
|
11425
|
+
title: string | null;
|
|
11426
|
+
headline: string | null;
|
|
11427
|
+
linkedin_url: string | null;
|
|
11428
|
+
pipeline_status: Record<string, unknown> | null;
|
|
11429
|
+
enrichment_data: Record<string, unknown> | null;
|
|
11430
|
+
company: {
|
|
11431
|
+
id: string;
|
|
11432
|
+
name: string;
|
|
11433
|
+
domain: string | null;
|
|
11434
|
+
website: string | null;
|
|
11435
|
+
linkedin_url: string | null;
|
|
11436
|
+
segment: string | null;
|
|
11437
|
+
category: string | null;
|
|
11438
|
+
num_employees: number | null;
|
|
11439
|
+
} | null;
|
|
11440
|
+
} | null;
|
|
11441
|
+
}[];
|
|
11442
|
+
total: number;
|
|
11443
|
+
limit: number;
|
|
11444
|
+
offset: number;
|
|
11445
|
+
} | undefined;
|
|
11446
|
+
total: number;
|
|
11447
|
+
limit: number;
|
|
11448
|
+
offset: number;
|
|
11449
|
+
hasNextPage: boolean;
|
|
11450
|
+
hasPreviousPage: boolean;
|
|
11451
|
+
};
|
|
11452
|
+
/**
|
|
11453
|
+
* Fetch CRM summary metrics and stage counts without depending on the list surface.
|
|
11454
|
+
*/
|
|
11455
|
+
declare function useDealsSummary(): _tanstack_react_query.UseQueryResult<DealsSummaryResponse, Error>;
|
|
11456
|
+
/**
|
|
11457
|
+
* Fetch lightweight deal lookup items for searchable CRM actions.
|
|
11458
|
+
*/
|
|
11459
|
+
declare function useDealsLookup(filters?: DealLookupFilters, options?: UseDealsLookupOptions): _tanstack_react_query.UseQueryResult<DealLookupItem[], Error>;
|
|
11273
11460
|
/**
|
|
11274
11461
|
* Delete a deal with server-side cleanup (schedules, HITL tasks)
|
|
11275
11462
|
*/
|
|
@@ -11621,6 +11808,7 @@ declare function useUpdateList(listId: string): _tanstack_react_query.UseMutatio
|
|
|
11621
11808
|
name?: string | undefined;
|
|
11622
11809
|
description?: string | null | undefined;
|
|
11623
11810
|
status?: string | undefined;
|
|
11811
|
+
batchIds?: string[] | undefined;
|
|
11624
11812
|
}, unknown>;
|
|
11625
11813
|
declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseMutationResult<{
|
|
11626
11814
|
id: string;
|
|
@@ -11712,12 +11900,17 @@ declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void,
|
|
|
11712
11900
|
*/
|
|
11713
11901
|
declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
|
|
11714
11902
|
|
|
11715
|
-
|
|
11716
|
-
|
|
11903
|
+
type AcqCompanyWithCount = AcqCompanyResponse;
|
|
11904
|
+
interface AcqCompanyFacetsResponse {
|
|
11905
|
+
segments: string[];
|
|
11906
|
+
categories: string[];
|
|
11907
|
+
statuses: Array<AcqCompanyResponse['status']>;
|
|
11717
11908
|
}
|
|
11718
11909
|
declare const companyKeys: {
|
|
11719
11910
|
all: readonly ["acquisition-companies"];
|
|
11720
11911
|
list: (organizationId: string | null, filters: Partial<ListCompaniesQuery>) => readonly ["acquisition-companies", "list", string | null, Partial<{
|
|
11912
|
+
limit: number;
|
|
11913
|
+
offset: number;
|
|
11721
11914
|
search?: string | undefined;
|
|
11722
11915
|
listId?: string | undefined;
|
|
11723
11916
|
domain?: string | undefined;
|
|
@@ -11728,9 +11921,39 @@ declare const companyKeys: {
|
|
|
11728
11921
|
status?: "active" | "invalid" | undefined;
|
|
11729
11922
|
includeAll?: boolean | undefined;
|
|
11730
11923
|
}>];
|
|
11924
|
+
facets: (organizationId: string | null) => readonly ["acquisition-companies", "facets", string | null];
|
|
11731
11925
|
detail: (organizationId: string | null, companyId: string) => readonly ["acquisition-companies", "detail", string | null, string];
|
|
11732
11926
|
};
|
|
11733
|
-
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<
|
|
11927
|
+
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<{
|
|
11928
|
+
data: {
|
|
11929
|
+
id: string;
|
|
11930
|
+
organizationId: string;
|
|
11931
|
+
name: string;
|
|
11932
|
+
domain: string | null;
|
|
11933
|
+
linkedinUrl: string | null;
|
|
11934
|
+
website: string | null;
|
|
11935
|
+
numEmployees: number | null;
|
|
11936
|
+
foundedYear: number | null;
|
|
11937
|
+
locationCity: string | null;
|
|
11938
|
+
locationState: string | null;
|
|
11939
|
+
category: string | null;
|
|
11940
|
+
categoryPain: string | null;
|
|
11941
|
+
segment: string | null;
|
|
11942
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
11943
|
+
enrichmentData: Record<string, unknown> | null;
|
|
11944
|
+
source: string | null;
|
|
11945
|
+
batchId: string | null;
|
|
11946
|
+
status: "active" | "invalid";
|
|
11947
|
+
contactCount: number;
|
|
11948
|
+
verticalResearch: string | null;
|
|
11949
|
+
createdAt: string;
|
|
11950
|
+
updatedAt: string;
|
|
11951
|
+
}[];
|
|
11952
|
+
total: number;
|
|
11953
|
+
limit: number;
|
|
11954
|
+
offset: number;
|
|
11955
|
+
}, Error>;
|
|
11956
|
+
declare function useCompanyFacets(): _tanstack_react_query.UseQueryResult<AcqCompanyFacetsResponse, Error>;
|
|
11734
11957
|
declare function useCompany(companyId: string): _tanstack_react_query.UseQueryResult<{
|
|
11735
11958
|
id: string;
|
|
11736
11959
|
organizationId: string;
|
|
@@ -11750,6 +11973,7 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
11750
11973
|
source: string | null;
|
|
11751
11974
|
batchId: string | null;
|
|
11752
11975
|
status: "active" | "invalid";
|
|
11976
|
+
contactCount: number;
|
|
11753
11977
|
verticalResearch: string | null;
|
|
11754
11978
|
createdAt: string;
|
|
11755
11979
|
updatedAt: string;
|
|
@@ -11773,6 +11997,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
11773
11997
|
source: string | null;
|
|
11774
11998
|
batchId: string | null;
|
|
11775
11999
|
status: "active" | "invalid";
|
|
12000
|
+
contactCount: number;
|
|
11776
12001
|
verticalResearch: string | null;
|
|
11777
12002
|
createdAt: string;
|
|
11778
12003
|
updatedAt: string;
|
|
@@ -11809,6 +12034,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
11809
12034
|
source: string | null;
|
|
11810
12035
|
batchId: string | null;
|
|
11811
12036
|
status: "active" | "invalid";
|
|
12037
|
+
contactCount: number;
|
|
11812
12038
|
verticalResearch: string | null;
|
|
11813
12039
|
createdAt: string;
|
|
11814
12040
|
updatedAt: string;
|
|
@@ -11832,9 +12058,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
11832
12058
|
}, unknown>;
|
|
11833
12059
|
declare function useDeleteCompanies(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
11834
12060
|
|
|
11835
|
-
|
|
11836
|
-
company?: AcqCompanyResponse | null;
|
|
11837
|
-
}
|
|
12061
|
+
type AcqContactWithCompany = AcqContactResponse;
|
|
11838
12062
|
declare const contactKeys: {
|
|
11839
12063
|
all: readonly ["acquisition-contacts"];
|
|
11840
12064
|
list: (organizationId: string | null, filters: Partial<ListContactsQuery>) => readonly ["acquisition-contacts", "list", string | null, Partial<{
|
|
@@ -11848,8 +12072,77 @@ declare const contactKeys: {
|
|
|
11848
12072
|
}>];
|
|
11849
12073
|
detail: (organizationId: string | null, contactId: string) => readonly ["acquisition-contacts", "detail", string | null, string];
|
|
11850
12074
|
};
|
|
11851
|
-
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<
|
|
11852
|
-
|
|
12075
|
+
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<{
|
|
12076
|
+
data: {
|
|
12077
|
+
id: string;
|
|
12078
|
+
organizationId: string;
|
|
12079
|
+
companyId: string | null;
|
|
12080
|
+
email: string;
|
|
12081
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
12082
|
+
firstName: string | null;
|
|
12083
|
+
lastName: string | null;
|
|
12084
|
+
linkedinUrl: string | null;
|
|
12085
|
+
title: string | null;
|
|
12086
|
+
headline: string | null;
|
|
12087
|
+
filterReason: string | null;
|
|
12088
|
+
openingLine: string | null;
|
|
12089
|
+
source: string | null;
|
|
12090
|
+
sourceId: string | null;
|
|
12091
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
12092
|
+
enrichmentData: Record<string, unknown> | null;
|
|
12093
|
+
attioPersonId: string | null;
|
|
12094
|
+
batchId: string | null;
|
|
12095
|
+
status: "active" | "invalid";
|
|
12096
|
+
createdAt: string;
|
|
12097
|
+
updatedAt: string;
|
|
12098
|
+
company?: {
|
|
12099
|
+
id: string;
|
|
12100
|
+
name: string;
|
|
12101
|
+
domain: string | null;
|
|
12102
|
+
website: string | null;
|
|
12103
|
+
linkedinUrl: string | null;
|
|
12104
|
+
segment: string | null;
|
|
12105
|
+
category: string | null;
|
|
12106
|
+
status: "active" | "invalid";
|
|
12107
|
+
} | null | undefined;
|
|
12108
|
+
}[];
|
|
12109
|
+
total: number;
|
|
12110
|
+
limit: number;
|
|
12111
|
+
offset: number;
|
|
12112
|
+
}, Error>;
|
|
12113
|
+
declare function useContact(contactId: string): _tanstack_react_query.UseQueryResult<{
|
|
12114
|
+
id: string;
|
|
12115
|
+
organizationId: string;
|
|
12116
|
+
companyId: string | null;
|
|
12117
|
+
email: string;
|
|
12118
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
12119
|
+
firstName: string | null;
|
|
12120
|
+
lastName: string | null;
|
|
12121
|
+
linkedinUrl: string | null;
|
|
12122
|
+
title: string | null;
|
|
12123
|
+
headline: string | null;
|
|
12124
|
+
filterReason: string | null;
|
|
12125
|
+
openingLine: string | null;
|
|
12126
|
+
source: string | null;
|
|
12127
|
+
sourceId: string | null;
|
|
12128
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
12129
|
+
enrichmentData: Record<string, unknown> | null;
|
|
12130
|
+
attioPersonId: string | null;
|
|
12131
|
+
batchId: string | null;
|
|
12132
|
+
status: "active" | "invalid";
|
|
12133
|
+
createdAt: string;
|
|
12134
|
+
updatedAt: string;
|
|
12135
|
+
company?: {
|
|
12136
|
+
id: string;
|
|
12137
|
+
name: string;
|
|
12138
|
+
domain: string | null;
|
|
12139
|
+
website: string | null;
|
|
12140
|
+
linkedinUrl: string | null;
|
|
12141
|
+
segment: string | null;
|
|
12142
|
+
category: string | null;
|
|
12143
|
+
status: "active" | "invalid";
|
|
12144
|
+
} | null | undefined;
|
|
12145
|
+
} | null, Error>;
|
|
11853
12146
|
declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
11854
12147
|
id: string;
|
|
11855
12148
|
organizationId: string;
|
|
@@ -11872,6 +12165,16 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
11872
12165
|
status: "active" | "invalid";
|
|
11873
12166
|
createdAt: string;
|
|
11874
12167
|
updatedAt: string;
|
|
12168
|
+
company?: {
|
|
12169
|
+
id: string;
|
|
12170
|
+
name: string;
|
|
12171
|
+
domain: string | null;
|
|
12172
|
+
website: string | null;
|
|
12173
|
+
linkedinUrl: string | null;
|
|
12174
|
+
segment: string | null;
|
|
12175
|
+
category: string | null;
|
|
12176
|
+
status: "active" | "invalid";
|
|
12177
|
+
} | null | undefined;
|
|
11875
12178
|
}, Error, {
|
|
11876
12179
|
email: string;
|
|
11877
12180
|
companyId?: string | undefined;
|
|
@@ -11905,6 +12208,16 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
11905
12208
|
status: "active" | "invalid";
|
|
11906
12209
|
createdAt: string;
|
|
11907
12210
|
updatedAt: string;
|
|
12211
|
+
company?: {
|
|
12212
|
+
id: string;
|
|
12213
|
+
name: string;
|
|
12214
|
+
domain: string | null;
|
|
12215
|
+
website: string | null;
|
|
12216
|
+
linkedinUrl: string | null;
|
|
12217
|
+
segment: string | null;
|
|
12218
|
+
category: string | null;
|
|
12219
|
+
status: "active" | "invalid";
|
|
12220
|
+
} | null | undefined;
|
|
11908
12221
|
}, Error, {
|
|
11909
12222
|
companyId?: string | undefined;
|
|
11910
12223
|
emailValid?: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | undefined;
|
|
@@ -13254,5 +13567,5 @@ declare function InitializationProvider({ children }: {
|
|
|
13254
13567
|
children: ReactNode;
|
|
13255
13568
|
}): react.FunctionComponentElement<react.ProviderProps<AppInitializationState | null>>;
|
|
13256
13569
|
|
|
13257
|
-
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, ResourceStatusColors, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calculateBarPosition, calculateGraphHeight, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createFeatureAccessHook, createOrganizationsSlice, createTestFeaturesProvider, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, debounce, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectActivityKeys, projectKeys, requestsKeys, restoreConsole, scheduleKeys, sessionsKeys, setupBrowserMocks, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useGraphStats, useInitialization, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
13258
|
-
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppShellOverrides, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CreateTestFeaturesProviderOptions, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureAccessResult, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, RequestRow, RequestsListFilters, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellModel, ResolvedShellNavItem, ResolvedShellRouteMatch, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellNavPlacement, ShellNavSource, ShellRouteMatchStatus, ShellRuntime, SortDirection, SortState, StatusColorScheme, StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|
|
13570
|
+
export { AGENT_CONSTANTS, APIClientError, API_URL, AdminGuard, ApiClientProvider, ApiKeyService, AppearanceProvider, AuthProvider, CONTAINER_CONSTANTS, CredentialService, DEBOUNCE_FILTER, DEBOUNCE_SLIDER, DeploymentService, ElevasisCoreProvider, ElevasisFeaturesProvider, ElevasisServiceProvider, ElevasisUIProvider, FeatureShell, GC_TIME_LONG, GC_TIME_MEDIUM, GC_TIME_SHORT, GRAPH_CONSTANTS, InitializationContext, InitializationProvider, LIMIT_ACTIVITY_FEED, NotificationProvider, OAUTH_FLOW_TIMEOUT, OAUTH_POPUP_CHECK_INTERVAL, OperationsService, OrganizationContext, OrganizationMembershipService, OrganizationProvider, OrganizationSwitcher, PAGE_SIZE_DEFAULT, PresetsProvider, ProfileProvider, ProtectedRoute, REFETCH_INTERVAL_DASHBOARD, REFETCH_INTERVAL_REALTIME, REFETCH_INTERVAL_RUNNING, REFETCH_INTERVAL_RUNNING_FAST, ResourceStatusColors, RouterProvider, SHARED_VIZ_CONSTANTS, SSE_CLOSE_GRACE_PERIOD, SSE_TOKEN_REFRESH_DELAY, STALE_TIME_ADMIN, STALE_TIME_DEFAULT, STALE_TIME_MONITORING, STATUS_COLORS, ScrollToTop, TIMELINE_CONSTANTS, TOKEN_VAR_MAP, TanStackRouterBridge, UserProfileService, WORKFLOW_CONSTANTS, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calculateBarPosition, calculateGraphHeight, companyKeys, componentThemes, contactKeys, createCssVariablesResolver, createFeatureAccessHook, createOrganizationsSlice, createTestFeaturesProvider, createUseAppInitialization, createUseFeatureAccess, createUseOrgInitialization, createUseOrganizations, dealKeys, dealNoteKeys, dealTaskKeys, debounce, executionsKeys, filterByDomainFilters, formatChartAxisDate, formatDate, formatDateTime, formatDuration, formatErrorMessage, formatRelativeTime, formatTimeAgo, generateShades, getEdgeColor, getEdgeOpacity, getErrorInfo, getErrorTitle, getPreset, getResourceColor, getResourceIcon, getResourceStatusColor, getStatusColors, getStatusIcon, getTimeRangeDates, getTimeRangeLabel, isAPIClientError, isSessionCapable, mantineThemeOverride, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, PRESETS as presets, projectActivityKeys, projectKeys, requestsKeys, restoreConsole, scheduleKeys, sessionsKeys, setupBrowserMocks, shouldAnimateEdge, sortData, suppressKnownWarnings, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useAgentIterationData, useApiClient, useApiClientContext, useAppearance, useArchiveSession, useArchivedLogs, useAuthContext, useAvailablePresets, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useConnectionHighlight, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateSchedule, useCreateSession, useCreateTask, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDirectedChainHighlighting, useElevasisFeatures, useElevasisServices, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutionPath, useExecutions, useFitViewTrigger, useGetExecutionHistory, useGetSchedule, useGraphHighlighting, useGraphStats, useInitialization, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNodeSelection, useNotificationAdapter, useNotificationCount as useNotificationCountSSE, useNotifications, useOptionalElevasisFeatures, useOrganization, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, usePresetsContext, useProfile, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactFlowAgent, useReactivateMembership, useRecentExecutionsByResource, useSessionCheck as useRefocusSessionCheck, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useRouterContext, useSSEConnection, useScheduledTasks, useSession, useSessionCheck, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStableAccessToken, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTimelineData, useTopFailingResources, useUnifiedWorkflowLayout, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useUserProfile, useVisibleResources, useWarningNotification, useWorkflowStepsLayout, validateEmail };
|
|
13571
|
+
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, AdminGuardProps, AgentIterationEdgeData, AgentIterationNodeData, AgentStatus, ApiClientContextValue, ApiClientProviderProps, ApiErrorDetails, ApiKeyConfig, AppInitializationState, AppShellOverrides, AppearanceConfig, AuthConfig, AuthContextValue, AuthKitConfig, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, ColorShadesTuple, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CreateTestFeaturesProviderOptions, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, DirectedChainHighlightingOptions, DirectedChainHighlightingResult, EdgeColorOptions, EdgeOpacityOptions, ElevasisCoreProviderProps, ElevasisCoreThemeConfig, ElevasisFeaturesContextValue, ElevasisFeaturesProviderProps, ElevasisServiceContextValue, ElevasisServiceProviderProps, ElevasisThemeConfig, ElevasisTokenOverrides, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, ExecutionPathState, ExecutionStatus$1 as ExecutionStatus, FailingResource, FeatureAccessResult, FeatureModule, FeatureNavEntry, FeatureNavLink, FeatureSidebarComponent, FrameworkThemeOverrides, GetMessagesResponse, GlowIntensity, GraphHeightOptions, GraphHighlightingResult, GraphMode, GraphThemeColors, InitializationError, LinkProps, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MembershipWithDetails, MessageEvent, MessageType, NodeColorType, NotificationAdapter, OrganizationContextValue, OrganizationGraphContextValue, OrganizationGraphFeatureBridge, OrganizationsActions, OrganizationsSlice, OrganizationsState, PresetEntry, PresetName, ProfileContextValue, ProtectedRouteProps, RequestRow, RequestsListFilters, ResolvedFeatureAccess, ResolvedFeatureModule, ResolvedFeatureSemantics, ResolvedShellModel, ResolvedShellNavItem, ResolvedShellRouteMatch, ResourcesResponse, RetryExecutionParams, RouterAdapter, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, ShellNavPlacement, ShellNavSource, ShellRouteMatchStatus, ShellRuntime, SortDirection, SortState, StaleDealSummaryItem, StatusColorScheme, StatusFilter, StatusIconColors, StepExecutionData, SubmitActionRequest, SubmitActionResponse, SupabaseUserProfile, TablerIcon, TaskSchedule, ThemePreset, TimelineBarProps, TimelineContainerProps, TimelineRowProps, TopFailingResourcesParams, UnifiedWorkflowEdgeData, UnifiedWorkflowNodeData, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseApiClientReturn, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseOrgInitializationReturn, UseOrganizationsReturn, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, UseUserProfileReturn, WebSocketState, WithSchemes, WorkflowEdgeType, WorkflowStepEdgeData, WorkflowStepNodeData, WorkflowStepsLayoutInput };
|