@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
|
@@ -13,7 +13,8 @@ declare const executionsKeys: {
|
|
|
13
13
|
all: readonly ["executions"];
|
|
14
14
|
resources: (orgId: string | null) => readonly ["executions", "resources", string | null];
|
|
15
15
|
resourceDefinition: (orgId: string | null, resourceId: string) => readonly ["executions", "definition", string | null, string];
|
|
16
|
-
|
|
16
|
+
executionsListBase: (orgId: string | null, resourceId: string) => readonly ["executions", "list", string | null, string];
|
|
17
|
+
executions: (orgId: string | null, resourceId: string, resourceStatus?: string, limit?: number, offset?: number) => readonly ["executions", "list", string | null, string, string, number | null, number];
|
|
17
18
|
execution: (orgId: string | null, resourceId: string, executionId: string) => readonly ["executions", "execution", string | null, string, string];
|
|
18
19
|
};
|
|
19
20
|
|
|
@@ -3014,16 +3015,17 @@ interface APIExecutionDetail$1 extends APIExecutionSummary$1 {
|
|
|
3014
3015
|
}
|
|
3015
3016
|
|
|
3016
3017
|
// API request/response types
|
|
3017
|
-
interface APIExecutionListResponse {
|
|
3018
|
-
executions: APIExecutionSummary$1[]
|
|
3018
|
+
interface APIExecutionListResponse {
|
|
3019
|
+
executions: APIExecutionSummary$1[]
|
|
3020
|
+
total?: number
|
|
3021
|
+
limit?: number
|
|
3022
|
+
offset?: number
|
|
3023
|
+
hasMore?: boolean
|
|
3019
3024
|
}
|
|
3020
3025
|
|
|
3021
3026
|
/**
|
|
3022
3027
|
* Fetch the execution list for a given resource.
|
|
3023
3028
|
*
|
|
3024
|
-
* resourceStatus and limit are intentionally excluded from the query key so that
|
|
3025
|
-
* SSE invalidations (which target the unfiltered key) bust all filter variants.
|
|
3026
|
-
*
|
|
3027
3029
|
* @example
|
|
3028
3030
|
* const { data, isLoading } = useExecutions(resourceId)
|
|
3029
3031
|
*
|
|
@@ -3031,7 +3033,7 @@ interface APIExecutionListResponse {
|
|
|
3031
3033
|
* // With status filter and limit
|
|
3032
3034
|
* const { data } = useExecutions(resourceId, 'running', 20)
|
|
3033
3035
|
*/
|
|
3034
|
-
declare function useExecutions(resourceId: string, resourceStatus?: ResourceStatus$1 | 'all', limit?: number): _tanstack_react_query.UseQueryResult<APIExecutionListResponse, Error>;
|
|
3036
|
+
declare function useExecutions(resourceId: string, resourceStatus?: ResourceStatus$1 | 'all', limit?: number, offset?: number): _tanstack_react_query.UseQueryResult<APIExecutionListResponse, Error>;
|
|
3035
3037
|
|
|
3036
3038
|
/**
|
|
3037
3039
|
* Fetch a single execution detail.
|
|
@@ -6501,6 +6503,10 @@ interface PatchTaskParams {
|
|
|
6501
6503
|
targetExecutionId?: string;
|
|
6502
6504
|
status?: 'pending' | 'failed' | 'completed';
|
|
6503
6505
|
}
|
|
6506
|
+
interface CommandQueueListResponse {
|
|
6507
|
+
tasks: Task[];
|
|
6508
|
+
total: number;
|
|
6509
|
+
}
|
|
6504
6510
|
|
|
6505
6511
|
/**
|
|
6506
6512
|
* Checkpoint list item for sidebar grouping
|
|
@@ -6645,6 +6651,8 @@ declare const ListCompaniesQuerySchema: z.ZodObject<{
|
|
|
6645
6651
|
invalid: "invalid";
|
|
6646
6652
|
}>>;
|
|
6647
6653
|
includeAll: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
6654
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
6655
|
+
offset: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
6648
6656
|
}, z.core.$strict>;
|
|
6649
6657
|
declare const ListContactsQuerySchema: z.ZodObject<{
|
|
6650
6658
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -6680,6 +6688,7 @@ declare const AcqCompanyResponseSchema: z.ZodObject<{
|
|
|
6680
6688
|
active: "active";
|
|
6681
6689
|
invalid: "invalid";
|
|
6682
6690
|
}>;
|
|
6691
|
+
contactCount: z.ZodNumber;
|
|
6683
6692
|
verticalResearch: z.ZodNullable<z.ZodString>;
|
|
6684
6693
|
createdAt: z.ZodString;
|
|
6685
6694
|
updatedAt: z.ZodString;
|
|
@@ -6712,6 +6721,19 @@ declare const AcqContactResponseSchema: z.ZodObject<{
|
|
|
6712
6721
|
active: "active";
|
|
6713
6722
|
invalid: "invalid";
|
|
6714
6723
|
}>;
|
|
6724
|
+
company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
6725
|
+
id: z.ZodString;
|
|
6726
|
+
name: z.ZodString;
|
|
6727
|
+
domain: z.ZodNullable<z.ZodString>;
|
|
6728
|
+
website: z.ZodNullable<z.ZodString>;
|
|
6729
|
+
linkedinUrl: z.ZodNullable<z.ZodString>;
|
|
6730
|
+
segment: z.ZodNullable<z.ZodString>;
|
|
6731
|
+
category: z.ZodNullable<z.ZodString>;
|
|
6732
|
+
status: z.ZodEnum<{
|
|
6733
|
+
active: "active";
|
|
6734
|
+
invalid: "invalid";
|
|
6735
|
+
}>;
|
|
6736
|
+
}, z.core.$strip>>>;
|
|
6715
6737
|
createdAt: z.ZodString;
|
|
6716
6738
|
updatedAt: z.ZodString;
|
|
6717
6739
|
}, z.core.$strip>;
|
|
@@ -7577,6 +7599,8 @@ interface ResourceExecutionsResponse {
|
|
|
7577
7599
|
executions: CommandViewExecution[];
|
|
7578
7600
|
totalExecutions: number;
|
|
7579
7601
|
timeRange: StatsTimeRange;
|
|
7602
|
+
page: number;
|
|
7603
|
+
limit: number;
|
|
7580
7604
|
}
|
|
7581
7605
|
interface HumanCheckpointStats {
|
|
7582
7606
|
checkpointId: string;
|
|
@@ -8811,29 +8835,7 @@ declare function useCommandQueue({ status, limit, offset, humanCheckpoint, timeR
|
|
|
8811
8835
|
timeRange?: TimeRange;
|
|
8812
8836
|
priorityMin?: number;
|
|
8813
8837
|
priorityMax?: number;
|
|
8814
|
-
}): _tanstack_react_query.UseQueryResult<
|
|
8815
|
-
createdAt: Date;
|
|
8816
|
-
completedAt: Date | undefined;
|
|
8817
|
-
expiresAt: Date | undefined;
|
|
8818
|
-
id: string;
|
|
8819
|
-
organizationId: string;
|
|
8820
|
-
actions: ActionConfig[];
|
|
8821
|
-
context: unknown;
|
|
8822
|
-
selectedAction?: string;
|
|
8823
|
-
actionPayload?: unknown;
|
|
8824
|
-
description?: string;
|
|
8825
|
-
priority: number;
|
|
8826
|
-
humanCheckpoint?: string;
|
|
8827
|
-
status: QueueTaskStatus;
|
|
8828
|
-
targetResourceId?: string;
|
|
8829
|
-
targetResourceType?: "agent" | "workflow";
|
|
8830
|
-
targetExecutionId?: string;
|
|
8831
|
-
completedBy?: string;
|
|
8832
|
-
idempotencyKey?: string | null;
|
|
8833
|
-
originExecutionId: string;
|
|
8834
|
-
originResourceType: OriginResourceType;
|
|
8835
|
-
originResourceId: string;
|
|
8836
|
-
}[], Error>;
|
|
8838
|
+
}): _tanstack_react_query.UseQueryResult<CommandQueueListResponse, Error>;
|
|
8837
8839
|
|
|
8838
8840
|
interface SubmitActionRequest {
|
|
8839
8841
|
taskId: string;
|
|
@@ -8842,7 +8844,7 @@ interface SubmitActionRequest {
|
|
|
8842
8844
|
notes?: string;
|
|
8843
8845
|
}
|
|
8844
8846
|
interface OptimisticContext {
|
|
8845
|
-
previousData: Map<readonly unknown[],
|
|
8847
|
+
previousData: Map<readonly unknown[], CommandQueueListResponse | undefined>;
|
|
8846
8848
|
}
|
|
8847
8849
|
interface ExecutionErrorDetails {
|
|
8848
8850
|
message: string;
|
|
@@ -8863,7 +8865,7 @@ interface SubmitActionResponse {
|
|
|
8863
8865
|
declare function useSubmitAction(): _tanstack_react_query.UseMutationResult<SubmitActionResponse, Error, SubmitActionRequest, OptimisticContext>;
|
|
8864
8866
|
|
|
8865
8867
|
declare function useDeleteTask$1(): _tanstack_react_query.UseMutationResult<void, Error, string, {
|
|
8866
|
-
previousData: Map<readonly unknown[],
|
|
8868
|
+
previousData: Map<readonly unknown[], CommandQueueListResponse | undefined>;
|
|
8867
8869
|
}>;
|
|
8868
8870
|
|
|
8869
8871
|
interface UseCommandQueueTotalsOptions {
|
|
@@ -9032,12 +9034,14 @@ interface UseExecutionPanelStateOptions {
|
|
|
9032
9034
|
*/
|
|
9033
9035
|
apiUrl: string;
|
|
9034
9036
|
limit?: number;
|
|
9037
|
+
offset?: number;
|
|
9035
9038
|
onConnectionStatus?: (connected: boolean, runningCount: number) => void;
|
|
9036
9039
|
selectedId?: string | null;
|
|
9037
9040
|
onSelectedIdChange?: (id: string | null) => void;
|
|
9038
9041
|
}
|
|
9039
9042
|
interface UseExecutionPanelStateReturn {
|
|
9040
9043
|
executions: APIExecutionSummary[];
|
|
9044
|
+
total: number;
|
|
9041
9045
|
isLoading: boolean;
|
|
9042
9046
|
isFetched: boolean;
|
|
9043
9047
|
selectedId: string | undefined;
|
|
@@ -9067,7 +9071,7 @@ interface UseExecutionPanelStateReturn {
|
|
|
9067
9071
|
* } = useExecutionPanelState({ resourceId, manager, onConnectionStatus })
|
|
9068
9072
|
* ```
|
|
9069
9073
|
*/
|
|
9070
|
-
declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
|
|
9074
|
+
declare function useExecutionPanelState({ resourceId, manager, apiUrl, limit, offset, onConnectionStatus, selectedId: controlledSelectedId, onSelectedIdChange }: UseExecutionPanelStateOptions): UseExecutionPanelStateReturn;
|
|
9071
9075
|
|
|
9072
9076
|
/**
|
|
9073
9077
|
* Utilities for extracting typed properties from resource definitions
|
|
@@ -9098,7 +9102,7 @@ interface UseCommandViewStatsOptions {
|
|
|
9098
9102
|
* Returns execution statistics (counts only, no error details) for all resources
|
|
9099
9103
|
* within the specified time range. Error details are fetched on-demand via useResourceErrors.
|
|
9100
9104
|
*
|
|
9101
|
-
* @param timeRange - Time range for stats aggregation ('24h' or '
|
|
9105
|
+
* @param timeRange - Time range for stats aggregation ('1h', '24h', '7d', or '30d')
|
|
9102
9106
|
* @returns TanStack Query result with CommandViewStatsResponse
|
|
9103
9107
|
*/
|
|
9104
9108
|
declare function useCommandViewStats(timeRange?: StatsTimeRange, options?: UseCommandViewStatsOptions): _tanstack_react_query.UseQueryResult<CommandViewStatsResponse, Error>;
|
|
@@ -9342,6 +9346,8 @@ declare function useResourceErrors({ resourceId, timeRange, hasFailures }: UseRe
|
|
|
9342
9346
|
interface UseResourceExecutionsOptions {
|
|
9343
9347
|
resourceId: string | null;
|
|
9344
9348
|
timeRange: StatsTimeRange;
|
|
9349
|
+
page?: number;
|
|
9350
|
+
limit?: number;
|
|
9345
9351
|
enabled?: boolean;
|
|
9346
9352
|
}
|
|
9347
9353
|
/**
|
|
@@ -9357,8 +9363,49 @@ interface UseResourceExecutionsOptions {
|
|
|
9357
9363
|
* @param options - Resource ID, time range, and enabled flag
|
|
9358
9364
|
* @returns TanStack Query result with ResourceExecutionsResponse
|
|
9359
9365
|
*/
|
|
9360
|
-
declare function useResourceExecutions({ resourceId, timeRange, enabled }: UseResourceExecutionsOptions): _tanstack_react_query.UseQueryResult<ResourceExecutionsResponse, Error>;
|
|
9366
|
+
declare function useResourceExecutions({ resourceId, timeRange, page, limit, enabled }: UseResourceExecutionsOptions): _tanstack_react_query.UseQueryResult<ResourceExecutionsResponse, Error>;
|
|
9361
9367
|
|
|
9368
|
+
interface DealSummaryStageItem {
|
|
9369
|
+
stage: DealStage;
|
|
9370
|
+
count: number;
|
|
9371
|
+
oldestUpdatedAt: string | null;
|
|
9372
|
+
newestUpdatedAt: string | null;
|
|
9373
|
+
totalValue?: number;
|
|
9374
|
+
}
|
|
9375
|
+
interface StaleDealSummaryItem {
|
|
9376
|
+
id: string;
|
|
9377
|
+
contactEmail: string;
|
|
9378
|
+
cachedStage: string;
|
|
9379
|
+
updatedAt: string;
|
|
9380
|
+
daysStale: number;
|
|
9381
|
+
}
|
|
9382
|
+
interface DealsSummaryResponse {
|
|
9383
|
+
totalDeals: number;
|
|
9384
|
+
openDeals: number;
|
|
9385
|
+
wonDeals: number;
|
|
9386
|
+
lostDeals: number;
|
|
9387
|
+
winRate: number;
|
|
9388
|
+
avgDealSize: number;
|
|
9389
|
+
totalPipelineValue: number;
|
|
9390
|
+
stageSummary: DealSummaryStageItem[];
|
|
9391
|
+
staleDeals: StaleDealSummaryItem[];
|
|
9392
|
+
}
|
|
9393
|
+
interface DealLookupItem {
|
|
9394
|
+
id: string;
|
|
9395
|
+
contactEmail: string;
|
|
9396
|
+
cachedStage: string | null;
|
|
9397
|
+
updatedAt: string;
|
|
9398
|
+
contactName: string | null;
|
|
9399
|
+
companyName: string | null;
|
|
9400
|
+
displayLabel: string;
|
|
9401
|
+
}
|
|
9402
|
+
interface DealLookupFilters {
|
|
9403
|
+
search?: string;
|
|
9404
|
+
limit?: number;
|
|
9405
|
+
}
|
|
9406
|
+
interface UseDealsLookupOptions {
|
|
9407
|
+
enabled?: boolean;
|
|
9408
|
+
}
|
|
9362
9409
|
/**
|
|
9363
9410
|
* Query keys for acquisition deals
|
|
9364
9411
|
*/
|
|
@@ -9366,13 +9413,153 @@ declare const dealKeys: {
|
|
|
9366
9413
|
all: readonly ["deals"];
|
|
9367
9414
|
lists: () => readonly ["deals", "list"];
|
|
9368
9415
|
list: (orgId: string | null, filters: DealFilters) => readonly ["deals", "list", string | null, DealFilters];
|
|
9416
|
+
summaries: () => readonly ["deals", "summary"];
|
|
9417
|
+
summary: (orgId: string | null) => readonly ["deals", "summary", string | null];
|
|
9418
|
+
lookups: () => readonly ["deals", "lookup"];
|
|
9419
|
+
lookup: (orgId: string | null, filters: DealLookupFilters) => readonly ["deals", "lookup", string | null, DealLookupFilters];
|
|
9369
9420
|
details: () => readonly ["deals", "detail"];
|
|
9370
9421
|
detail: (id: string) => readonly ["deals", "detail", string];
|
|
9371
9422
|
};
|
|
9372
9423
|
/**
|
|
9373
9424
|
* Fetch deals with optional filters
|
|
9374
9425
|
*/
|
|
9375
|
-
declare function useDeals(filters?: DealFilters):
|
|
9426
|
+
declare function useDeals(filters?: DealFilters): {
|
|
9427
|
+
dataUpdatedAt: number;
|
|
9428
|
+
error: Error | null;
|
|
9429
|
+
errorUpdatedAt: number;
|
|
9430
|
+
failureCount: number;
|
|
9431
|
+
failureReason: Error | null;
|
|
9432
|
+
fetchStatus: _tanstack_react_query.FetchStatus;
|
|
9433
|
+
isError: boolean;
|
|
9434
|
+
isFetched: boolean;
|
|
9435
|
+
isFetchedAfterMount: boolean;
|
|
9436
|
+
isFetching: boolean;
|
|
9437
|
+
isInitialLoading: boolean;
|
|
9438
|
+
isLoading: boolean;
|
|
9439
|
+
isLoadingError: boolean;
|
|
9440
|
+
isPaused: boolean;
|
|
9441
|
+
isPending: boolean;
|
|
9442
|
+
isPlaceholderData: boolean;
|
|
9443
|
+
isRefetchError: boolean;
|
|
9444
|
+
isRefetching: boolean;
|
|
9445
|
+
isRefetchStale: boolean;
|
|
9446
|
+
isSuccess: boolean;
|
|
9447
|
+
refetch: (options?: _tanstack_react_query.RefetchOptions) => Promise<_tanstack_react_query.QueryObserverResult<{
|
|
9448
|
+
data: {
|
|
9449
|
+
id: string;
|
|
9450
|
+
organization_id: string;
|
|
9451
|
+
contact_id: string | null;
|
|
9452
|
+
contact_email: string;
|
|
9453
|
+
cached_stage: string | null;
|
|
9454
|
+
activity_log: unknown;
|
|
9455
|
+
discovery_data: unknown;
|
|
9456
|
+
discovery_submitted_at: string | null;
|
|
9457
|
+
discovery_submitted_by: string | null;
|
|
9458
|
+
proposal_data: unknown;
|
|
9459
|
+
proposal_status: string | null;
|
|
9460
|
+
proposal_sent_at: string | null;
|
|
9461
|
+
proposal_pdf_url: string | null;
|
|
9462
|
+
signature_envelope_id: string | null;
|
|
9463
|
+
source_list_id: string | null;
|
|
9464
|
+
source_type: string | null;
|
|
9465
|
+
initial_fee: number | null;
|
|
9466
|
+
monthly_fee: number | null;
|
|
9467
|
+
closed_lost_at: string | null;
|
|
9468
|
+
closed_lost_reason: string | null;
|
|
9469
|
+
created_at: string;
|
|
9470
|
+
updated_at: string;
|
|
9471
|
+
contact: {
|
|
9472
|
+
id: string;
|
|
9473
|
+
first_name: string | null;
|
|
9474
|
+
last_name: string | null;
|
|
9475
|
+
email: string;
|
|
9476
|
+
title: string | null;
|
|
9477
|
+
headline: string | null;
|
|
9478
|
+
linkedin_url: string | null;
|
|
9479
|
+
pipeline_status: Record<string, unknown> | null;
|
|
9480
|
+
enrichment_data: Record<string, unknown> | null;
|
|
9481
|
+
company: {
|
|
9482
|
+
id: string;
|
|
9483
|
+
name: string;
|
|
9484
|
+
domain: string | null;
|
|
9485
|
+
website: string | null;
|
|
9486
|
+
linkedin_url: string | null;
|
|
9487
|
+
segment: string | null;
|
|
9488
|
+
category: string | null;
|
|
9489
|
+
num_employees: number | null;
|
|
9490
|
+
} | null;
|
|
9491
|
+
} | null;
|
|
9492
|
+
}[];
|
|
9493
|
+
total: number;
|
|
9494
|
+
limit: number;
|
|
9495
|
+
offset: number;
|
|
9496
|
+
}, Error>>;
|
|
9497
|
+
status: "error" | "success" | "pending";
|
|
9498
|
+
data: DealListItem[];
|
|
9499
|
+
response: {
|
|
9500
|
+
data: {
|
|
9501
|
+
id: string;
|
|
9502
|
+
organization_id: string;
|
|
9503
|
+
contact_id: string | null;
|
|
9504
|
+
contact_email: string;
|
|
9505
|
+
cached_stage: string | null;
|
|
9506
|
+
activity_log: unknown;
|
|
9507
|
+
discovery_data: unknown;
|
|
9508
|
+
discovery_submitted_at: string | null;
|
|
9509
|
+
discovery_submitted_by: string | null;
|
|
9510
|
+
proposal_data: unknown;
|
|
9511
|
+
proposal_status: string | null;
|
|
9512
|
+
proposal_sent_at: string | null;
|
|
9513
|
+
proposal_pdf_url: string | null;
|
|
9514
|
+
signature_envelope_id: string | null;
|
|
9515
|
+
source_list_id: string | null;
|
|
9516
|
+
source_type: string | null;
|
|
9517
|
+
initial_fee: number | null;
|
|
9518
|
+
monthly_fee: number | null;
|
|
9519
|
+
closed_lost_at: string | null;
|
|
9520
|
+
closed_lost_reason: string | null;
|
|
9521
|
+
created_at: string;
|
|
9522
|
+
updated_at: string;
|
|
9523
|
+
contact: {
|
|
9524
|
+
id: string;
|
|
9525
|
+
first_name: string | null;
|
|
9526
|
+
last_name: string | null;
|
|
9527
|
+
email: string;
|
|
9528
|
+
title: string | null;
|
|
9529
|
+
headline: string | null;
|
|
9530
|
+
linkedin_url: string | null;
|
|
9531
|
+
pipeline_status: Record<string, unknown> | null;
|
|
9532
|
+
enrichment_data: Record<string, unknown> | null;
|
|
9533
|
+
company: {
|
|
9534
|
+
id: string;
|
|
9535
|
+
name: string;
|
|
9536
|
+
domain: string | null;
|
|
9537
|
+
website: string | null;
|
|
9538
|
+
linkedin_url: string | null;
|
|
9539
|
+
segment: string | null;
|
|
9540
|
+
category: string | null;
|
|
9541
|
+
num_employees: number | null;
|
|
9542
|
+
} | null;
|
|
9543
|
+
} | null;
|
|
9544
|
+
}[];
|
|
9545
|
+
total: number;
|
|
9546
|
+
limit: number;
|
|
9547
|
+
offset: number;
|
|
9548
|
+
} | undefined;
|
|
9549
|
+
total: number;
|
|
9550
|
+
limit: number;
|
|
9551
|
+
offset: number;
|
|
9552
|
+
hasNextPage: boolean;
|
|
9553
|
+
hasPreviousPage: boolean;
|
|
9554
|
+
};
|
|
9555
|
+
/**
|
|
9556
|
+
* Fetch CRM summary metrics and stage counts without depending on the list surface.
|
|
9557
|
+
*/
|
|
9558
|
+
declare function useDealsSummary(): _tanstack_react_query.UseQueryResult<DealsSummaryResponse, Error>;
|
|
9559
|
+
/**
|
|
9560
|
+
* Fetch lightweight deal lookup items for searchable CRM actions.
|
|
9561
|
+
*/
|
|
9562
|
+
declare function useDealsLookup(filters?: DealLookupFilters, options?: UseDealsLookupOptions): _tanstack_react_query.UseQueryResult<DealLookupItem[], Error>;
|
|
9376
9563
|
/**
|
|
9377
9564
|
* Delete a deal with server-side cleanup (schedules, HITL tasks)
|
|
9378
9565
|
*/
|
|
@@ -9724,6 +9911,7 @@ declare function useUpdateList(listId: string): _tanstack_react_query.UseMutatio
|
|
|
9724
9911
|
name?: string | undefined;
|
|
9725
9912
|
description?: string | null | undefined;
|
|
9726
9913
|
status?: string | undefined;
|
|
9914
|
+
batchIds?: string[] | undefined;
|
|
9727
9915
|
}, unknown>;
|
|
9728
9916
|
declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseMutationResult<{
|
|
9729
9917
|
id: string;
|
|
@@ -9815,12 +10003,17 @@ declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void,
|
|
|
9815
10003
|
*/
|
|
9816
10004
|
declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
|
|
9817
10005
|
|
|
9818
|
-
|
|
9819
|
-
|
|
10006
|
+
type AcqCompanyWithCount = AcqCompanyResponse;
|
|
10007
|
+
interface AcqCompanyFacetsResponse {
|
|
10008
|
+
segments: string[];
|
|
10009
|
+
categories: string[];
|
|
10010
|
+
statuses: Array<AcqCompanyResponse['status']>;
|
|
9820
10011
|
}
|
|
9821
10012
|
declare const companyKeys: {
|
|
9822
10013
|
all: readonly ["acquisition-companies"];
|
|
9823
10014
|
list: (organizationId: string | null, filters: Partial<ListCompaniesQuery>) => readonly ["acquisition-companies", "list", string | null, Partial<{
|
|
10015
|
+
limit: number;
|
|
10016
|
+
offset: number;
|
|
9824
10017
|
search?: string | undefined;
|
|
9825
10018
|
listId?: string | undefined;
|
|
9826
10019
|
domain?: string | undefined;
|
|
@@ -9831,9 +10024,39 @@ declare const companyKeys: {
|
|
|
9831
10024
|
status?: "active" | "invalid" | undefined;
|
|
9832
10025
|
includeAll?: boolean | undefined;
|
|
9833
10026
|
}>];
|
|
10027
|
+
facets: (organizationId: string | null) => readonly ["acquisition-companies", "facets", string | null];
|
|
9834
10028
|
detail: (organizationId: string | null, companyId: string) => readonly ["acquisition-companies", "detail", string | null, string];
|
|
9835
10029
|
};
|
|
9836
|
-
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<
|
|
10030
|
+
declare function useCompanies(filters?: Partial<ListCompaniesQuery>): _tanstack_react_query.UseQueryResult<{
|
|
10031
|
+
data: {
|
|
10032
|
+
id: string;
|
|
10033
|
+
organizationId: string;
|
|
10034
|
+
name: string;
|
|
10035
|
+
domain: string | null;
|
|
10036
|
+
linkedinUrl: string | null;
|
|
10037
|
+
website: string | null;
|
|
10038
|
+
numEmployees: number | null;
|
|
10039
|
+
foundedYear: number | null;
|
|
10040
|
+
locationCity: string | null;
|
|
10041
|
+
locationState: string | null;
|
|
10042
|
+
category: string | null;
|
|
10043
|
+
categoryPain: string | null;
|
|
10044
|
+
segment: string | null;
|
|
10045
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
10046
|
+
enrichmentData: Record<string, unknown> | null;
|
|
10047
|
+
source: string | null;
|
|
10048
|
+
batchId: string | null;
|
|
10049
|
+
status: "active" | "invalid";
|
|
10050
|
+
contactCount: number;
|
|
10051
|
+
verticalResearch: string | null;
|
|
10052
|
+
createdAt: string;
|
|
10053
|
+
updatedAt: string;
|
|
10054
|
+
}[];
|
|
10055
|
+
total: number;
|
|
10056
|
+
limit: number;
|
|
10057
|
+
offset: number;
|
|
10058
|
+
}, Error>;
|
|
10059
|
+
declare function useCompanyFacets(): _tanstack_react_query.UseQueryResult<AcqCompanyFacetsResponse, Error>;
|
|
9837
10060
|
declare function useCompany(companyId: string): _tanstack_react_query.UseQueryResult<{
|
|
9838
10061
|
id: string;
|
|
9839
10062
|
organizationId: string;
|
|
@@ -9853,6 +10076,7 @@ declare function useCompany(companyId: string): _tanstack_react_query.UseQueryRe
|
|
|
9853
10076
|
source: string | null;
|
|
9854
10077
|
batchId: string | null;
|
|
9855
10078
|
status: "active" | "invalid";
|
|
10079
|
+
contactCount: number;
|
|
9856
10080
|
verticalResearch: string | null;
|
|
9857
10081
|
createdAt: string;
|
|
9858
10082
|
updatedAt: string;
|
|
@@ -9876,6 +10100,7 @@ declare function useCreateCompany(): _tanstack_react_query.UseMutationResult<{
|
|
|
9876
10100
|
source: string | null;
|
|
9877
10101
|
batchId: string | null;
|
|
9878
10102
|
status: "active" | "invalid";
|
|
10103
|
+
contactCount: number;
|
|
9879
10104
|
verticalResearch: string | null;
|
|
9880
10105
|
createdAt: string;
|
|
9881
10106
|
updatedAt: string;
|
|
@@ -9912,6 +10137,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
9912
10137
|
source: string | null;
|
|
9913
10138
|
batchId: string | null;
|
|
9914
10139
|
status: "active" | "invalid";
|
|
10140
|
+
contactCount: number;
|
|
9915
10141
|
verticalResearch: string | null;
|
|
9916
10142
|
createdAt: string;
|
|
9917
10143
|
updatedAt: string;
|
|
@@ -9935,9 +10161,7 @@ declare function useUpdateCompany(companyId: string): _tanstack_react_query.UseM
|
|
|
9935
10161
|
}, unknown>;
|
|
9936
10162
|
declare function useDeleteCompanies(): _tanstack_react_query.UseMutationResult<void, Error, string[], unknown>;
|
|
9937
10163
|
|
|
9938
|
-
|
|
9939
|
-
company?: AcqCompanyResponse | null;
|
|
9940
|
-
}
|
|
10164
|
+
type AcqContactWithCompany = AcqContactResponse;
|
|
9941
10165
|
declare const contactKeys: {
|
|
9942
10166
|
all: readonly ["acquisition-contacts"];
|
|
9943
10167
|
list: (organizationId: string | null, filters: Partial<ListContactsQuery>) => readonly ["acquisition-contacts", "list", string | null, Partial<{
|
|
@@ -9951,8 +10175,77 @@ declare const contactKeys: {
|
|
|
9951
10175
|
}>];
|
|
9952
10176
|
detail: (organizationId: string | null, contactId: string) => readonly ["acquisition-contacts", "detail", string | null, string];
|
|
9953
10177
|
};
|
|
9954
|
-
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<
|
|
9955
|
-
|
|
10178
|
+
declare function useContacts(filters?: Partial<ListContactsQuery>): _tanstack_react_query.UseQueryResult<{
|
|
10179
|
+
data: {
|
|
10180
|
+
id: string;
|
|
10181
|
+
organizationId: string;
|
|
10182
|
+
companyId: string | null;
|
|
10183
|
+
email: string;
|
|
10184
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
10185
|
+
firstName: string | null;
|
|
10186
|
+
lastName: string | null;
|
|
10187
|
+
linkedinUrl: string | null;
|
|
10188
|
+
title: string | null;
|
|
10189
|
+
headline: string | null;
|
|
10190
|
+
filterReason: string | null;
|
|
10191
|
+
openingLine: string | null;
|
|
10192
|
+
source: string | null;
|
|
10193
|
+
sourceId: string | null;
|
|
10194
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
10195
|
+
enrichmentData: Record<string, unknown> | null;
|
|
10196
|
+
attioPersonId: string | null;
|
|
10197
|
+
batchId: string | null;
|
|
10198
|
+
status: "active" | "invalid";
|
|
10199
|
+
createdAt: string;
|
|
10200
|
+
updatedAt: string;
|
|
10201
|
+
company?: {
|
|
10202
|
+
id: string;
|
|
10203
|
+
name: string;
|
|
10204
|
+
domain: string | null;
|
|
10205
|
+
website: string | null;
|
|
10206
|
+
linkedinUrl: string | null;
|
|
10207
|
+
segment: string | null;
|
|
10208
|
+
category: string | null;
|
|
10209
|
+
status: "active" | "invalid";
|
|
10210
|
+
} | null | undefined;
|
|
10211
|
+
}[];
|
|
10212
|
+
total: number;
|
|
10213
|
+
limit: number;
|
|
10214
|
+
offset: number;
|
|
10215
|
+
}, Error>;
|
|
10216
|
+
declare function useContact(contactId: string): _tanstack_react_query.UseQueryResult<{
|
|
10217
|
+
id: string;
|
|
10218
|
+
organizationId: string;
|
|
10219
|
+
companyId: string | null;
|
|
10220
|
+
email: string;
|
|
10221
|
+
emailValid: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | null;
|
|
10222
|
+
firstName: string | null;
|
|
10223
|
+
lastName: string | null;
|
|
10224
|
+
linkedinUrl: string | null;
|
|
10225
|
+
title: string | null;
|
|
10226
|
+
headline: string | null;
|
|
10227
|
+
filterReason: string | null;
|
|
10228
|
+
openingLine: string | null;
|
|
10229
|
+
source: string | null;
|
|
10230
|
+
sourceId: string | null;
|
|
10231
|
+
pipelineStatus: Record<string, unknown> | null;
|
|
10232
|
+
enrichmentData: Record<string, unknown> | null;
|
|
10233
|
+
attioPersonId: string | null;
|
|
10234
|
+
batchId: string | null;
|
|
10235
|
+
status: "active" | "invalid";
|
|
10236
|
+
createdAt: string;
|
|
10237
|
+
updatedAt: string;
|
|
10238
|
+
company?: {
|
|
10239
|
+
id: string;
|
|
10240
|
+
name: string;
|
|
10241
|
+
domain: string | null;
|
|
10242
|
+
website: string | null;
|
|
10243
|
+
linkedinUrl: string | null;
|
|
10244
|
+
segment: string | null;
|
|
10245
|
+
category: string | null;
|
|
10246
|
+
status: "active" | "invalid";
|
|
10247
|
+
} | null | undefined;
|
|
10248
|
+
} | null, Error>;
|
|
9956
10249
|
declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
9957
10250
|
id: string;
|
|
9958
10251
|
organizationId: string;
|
|
@@ -9975,6 +10268,16 @@ declare function useCreateContact(): _tanstack_react_query.UseMutationResult<{
|
|
|
9975
10268
|
status: "active" | "invalid";
|
|
9976
10269
|
createdAt: string;
|
|
9977
10270
|
updatedAt: string;
|
|
10271
|
+
company?: {
|
|
10272
|
+
id: string;
|
|
10273
|
+
name: string;
|
|
10274
|
+
domain: string | null;
|
|
10275
|
+
website: string | null;
|
|
10276
|
+
linkedinUrl: string | null;
|
|
10277
|
+
segment: string | null;
|
|
10278
|
+
category: string | null;
|
|
10279
|
+
status: "active" | "invalid";
|
|
10280
|
+
} | null | undefined;
|
|
9978
10281
|
}, Error, {
|
|
9979
10282
|
email: string;
|
|
9980
10283
|
companyId?: string | undefined;
|
|
@@ -10008,6 +10311,16 @@ declare function useUpdateContact(contactId: string): _tanstack_react_query.UseM
|
|
|
10008
10311
|
status: "active" | "invalid";
|
|
10009
10312
|
createdAt: string;
|
|
10010
10313
|
updatedAt: string;
|
|
10314
|
+
company?: {
|
|
10315
|
+
id: string;
|
|
10316
|
+
name: string;
|
|
10317
|
+
domain: string | null;
|
|
10318
|
+
website: string | null;
|
|
10319
|
+
linkedinUrl: string | null;
|
|
10320
|
+
segment: string | null;
|
|
10321
|
+
category: string | null;
|
|
10322
|
+
status: "active" | "invalid";
|
|
10323
|
+
} | null | undefined;
|
|
10011
10324
|
}, Error, {
|
|
10012
10325
|
companyId?: string | undefined;
|
|
10013
10326
|
emailValid?: "VALID" | "INVALID" | "RISKY" | "UNKNOWN" | undefined;
|
|
@@ -10905,5 +11218,5 @@ declare function useCreateNote(): _tanstack_react_query.UseMutationResult<{
|
|
|
10905
11218
|
type?: string;
|
|
10906
11219
|
}, "organization_id">, unknown>;
|
|
10907
11220
|
|
|
10908
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, createFeatureAccessHook, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, 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, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
|
|
10909
|
-
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, FeatureAccessResult, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, RequestRow, RequestsListFilters, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
|
|
11221
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, createFeatureAccessHook, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectActivityKeys, projectKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, 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, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMergedExecution, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectActivities, useProjectMilestones, useProjectNotes, useProjectRealtime, useProjectTasks, useProjects, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTasks, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateRequestStatus, useUpdateSchedule, useUpdateTask, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
|
|
11222
|
+
export type { AcqCompanyWithCount, AcqContactWithCompany, AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DealLookupFilters, DealLookupItem, DealSummaryStageItem, DealsSummaryResponse, DeleteExecutionParams, Deployment, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, FeatureAccessResult, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, RequestRow, RequestsListFilters, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StaleDealSummaryItem, StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseExecuteResourceOptions, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
|
package/dist/hooks/published.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from '../chunk-
|
|
1
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, WebhookEndpointService, acquisitionListKeys, companyKeys, contactKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, operationsKeys, projectActivityKeys, requestsKeys, scheduleKeys, sessionsKeys, sortData, useActivateDeployment, useActivities, useActivitiesRealtime, useActivityFilters, useActivityTrend, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompanies, useCompany, useCompanyFacets, useCompleteDealTask, useContact, useContacts, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCompany, useCreateContact, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateList, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDealsLookup, useDealsSummary, useDeleteApiKey, useDeleteCompanies, useDeleteContacts, useDeleteCredential, useDeleteDeal, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeleteWebhookEndpoint, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteResource, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProjectActivities, useProjectRealtime, useReactivateMembership, useRecentExecutionsByResource, useRequest, useRequestsList, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResourceSearch, useResources, useResourcesDomainFilters, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useStatusFilter, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTimeRangeDates, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateApiKey, useUpdateCompany, useUpdateContact, useUpdateCredential, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateRequestStatus, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification } from '../chunk-EY322HXF.js';
|
|
2
2
|
import '../chunk-BRXELOHC.js';
|
|
3
3
|
export { observabilityKeys, useErrorTrends } from '../chunk-QSTH6T77.js';
|
|
4
4
|
export { milestoneKeys, noteKeys, projectKeys, taskKeys, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateTask, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteMilestone, useMilestones, useProject, useProjectMilestones, useProjectNotes, useProjectTasks, useProjects, useTasks, useUpdateProject as useUpdateDeliveryProject, useUpdateMilestone, useUpdateTask } from '../chunk-GRGRBWIO.js';
|
|
5
5
|
import '../chunk-22UVE3RA.js';
|
|
6
6
|
export { useMergedExecution } from '../chunk-3ZMAGTWF.js';
|
|
7
|
-
import '../chunk-
|
|
7
|
+
import '../chunk-I3LQGLUC.js';
|
|
8
8
|
import '../chunk-34NQLV2W.js';
|
|
9
9
|
import '../chunk-R73EHHPN.js';
|
|
10
10
|
import '../chunk-WLOQ4IBG.js';
|
|
11
|
-
export { createFeatureAccessHook, createUseFeatureAccess } from '../chunk-
|
|
11
|
+
export { createFeatureAccessHook, createUseFeatureAccess } from '../chunk-A2AZY5SF.js';
|
|
12
12
|
import '../chunk-P3TFNFZS.js';
|
|
13
13
|
import '../chunk-RX4UWZZR.js';
|
|
14
|
-
import '../chunk-
|
|
14
|
+
import '../chunk-SQPM2QDH.js';
|
|
15
15
|
import '../chunk-SZHARWKU.js';
|
|
16
16
|
import '../chunk-3KMDHCAR.js';
|
|
17
17
|
import '../chunk-NYBEU5TE.js';
|