@elevasis/ui 1.28.1 → 1.28.2
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/{chunk-KLG4H5NM.js → chunk-45MS3IAW.js} +4 -1
- package/dist/{chunk-7CJ5QBN2.js → chunk-BYZ7VTSH.js} +2 -2
- package/dist/{chunk-EBCIUZVV.js → chunk-EINVPEHK.js} +121 -4
- package/dist/{chunk-D25AE46Q.js → chunk-FW4S3Z5I.js} +1 -1
- package/dist/{chunk-S4S6K4MV.js → chunk-JQ4AKYUD.js} +2 -2
- package/dist/{chunk-ZUJ7WMGV.js → chunk-KP6LNTMH.js} +1 -1
- package/dist/{chunk-ZXBD5SBV.js → chunk-R2BQITMQ.js} +2 -2
- package/dist/{chunk-37NT4BNV.js → chunk-T2X3WHQS.js} +2 -2
- package/dist/{chunk-C4WOXS2C.js → chunk-ZWY3A6ZU.js} +41 -10
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +11 -11
- package/dist/features/dashboard/index.js +5 -5
- package/dist/features/monitoring/index.js +6 -6
- package/dist/features/operations/index.d.ts +14 -3
- package/dist/features/operations/index.js +6 -6
- package/dist/features/settings/index.js +5 -5
- package/dist/hooks/index.d.ts +346 -1
- package/dist/hooks/index.js +4 -4
- package/dist/hooks/published.d.ts +346 -1
- package/dist/hooks/published.js +3 -3
- package/dist/index.d.ts +347 -1
- package/dist/index.js +4 -4
- package/dist/provider/index.d.ts +2 -1
- package/dist/provider/index.js +2 -2
- package/dist/provider/published.d.ts +2 -1
- package/dist/provider/published.js +1 -1
- package/package.json +1 -1
package/dist/hooks/index.d.ts
CHANGED
|
@@ -10732,6 +10732,351 @@ interface CompleteDealTaskParams {
|
|
|
10732
10732
|
*/
|
|
10733
10733
|
declare function useCompleteDealTask(): _tanstack_react_query.UseMutationResult<AcqDealTask, Error, CompleteDealTaskParams, unknown>;
|
|
10734
10734
|
|
|
10735
|
+
declare const acquisitionListKeys: {
|
|
10736
|
+
all: readonly ["acquisition-lists"];
|
|
10737
|
+
list: (organizationId: string | null) => readonly ["acquisition-lists", string | null];
|
|
10738
|
+
detail: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", string | null, string];
|
|
10739
|
+
telemetry: (organizationId: string | null) => readonly ["acquisition-lists", "telemetry", string | null];
|
|
10740
|
+
progress: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "progress", string | null, string];
|
|
10741
|
+
executions: (organizationId: string | null, listId: string) => readonly ["acquisition-lists", "executions", string | null, string];
|
|
10742
|
+
};
|
|
10743
|
+
declare function useLists(): _tanstack_react_query.UseQueryResult<{
|
|
10744
|
+
id: string;
|
|
10745
|
+
organizationId: string;
|
|
10746
|
+
name: string;
|
|
10747
|
+
description: string | null;
|
|
10748
|
+
type: string;
|
|
10749
|
+
batchIds: string[];
|
|
10750
|
+
instantlyCampaignId: string | null;
|
|
10751
|
+
status: string;
|
|
10752
|
+
metadata: Record<string, unknown>;
|
|
10753
|
+
launchedAt: string | null;
|
|
10754
|
+
completedAt: string | null;
|
|
10755
|
+
createdAt: string;
|
|
10756
|
+
config: {
|
|
10757
|
+
qualification: {
|
|
10758
|
+
targetDescription: string;
|
|
10759
|
+
minReviewCount: number;
|
|
10760
|
+
minRating: number;
|
|
10761
|
+
excludeFranchises: boolean;
|
|
10762
|
+
customRules: string;
|
|
10763
|
+
};
|
|
10764
|
+
enrichment?: {
|
|
10765
|
+
emailDiscovery?: {
|
|
10766
|
+
primary: "tomba" | "anymailfinder";
|
|
10767
|
+
credentialName?: string | undefined;
|
|
10768
|
+
} | undefined;
|
|
10769
|
+
emailVerification?: {
|
|
10770
|
+
provider: "millionverifier";
|
|
10771
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
10772
|
+
} | undefined;
|
|
10773
|
+
} | undefined;
|
|
10774
|
+
personalization?: {
|
|
10775
|
+
industryContext?: string | undefined;
|
|
10776
|
+
emailBody?: string | undefined;
|
|
10777
|
+
creativeDirection?: string | undefined;
|
|
10778
|
+
exclusionRules?: string[] | undefined;
|
|
10779
|
+
} | undefined;
|
|
10780
|
+
pipeline?: {
|
|
10781
|
+
steps: {
|
|
10782
|
+
key: string;
|
|
10783
|
+
label: string;
|
|
10784
|
+
resourceId: string;
|
|
10785
|
+
inputTemplate: Record<string, unknown>;
|
|
10786
|
+
enabled: boolean;
|
|
10787
|
+
order: number;
|
|
10788
|
+
}[];
|
|
10789
|
+
} | undefined;
|
|
10790
|
+
};
|
|
10791
|
+
}[], Error>;
|
|
10792
|
+
declare function useList(listId: string): _tanstack_react_query.UseQueryResult<{
|
|
10793
|
+
id: string;
|
|
10794
|
+
organizationId: string;
|
|
10795
|
+
name: string;
|
|
10796
|
+
description: string | null;
|
|
10797
|
+
type: string;
|
|
10798
|
+
batchIds: string[];
|
|
10799
|
+
instantlyCampaignId: string | null;
|
|
10800
|
+
status: string;
|
|
10801
|
+
metadata: Record<string, unknown>;
|
|
10802
|
+
launchedAt: string | null;
|
|
10803
|
+
completedAt: string | null;
|
|
10804
|
+
createdAt: string;
|
|
10805
|
+
config: {
|
|
10806
|
+
qualification: {
|
|
10807
|
+
targetDescription: string;
|
|
10808
|
+
minReviewCount: number;
|
|
10809
|
+
minRating: number;
|
|
10810
|
+
excludeFranchises: boolean;
|
|
10811
|
+
customRules: string;
|
|
10812
|
+
};
|
|
10813
|
+
enrichment?: {
|
|
10814
|
+
emailDiscovery?: {
|
|
10815
|
+
primary: "tomba" | "anymailfinder";
|
|
10816
|
+
credentialName?: string | undefined;
|
|
10817
|
+
} | undefined;
|
|
10818
|
+
emailVerification?: {
|
|
10819
|
+
provider: "millionverifier";
|
|
10820
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
10821
|
+
} | undefined;
|
|
10822
|
+
} | undefined;
|
|
10823
|
+
personalization?: {
|
|
10824
|
+
industryContext?: string | undefined;
|
|
10825
|
+
emailBody?: string | undefined;
|
|
10826
|
+
creativeDirection?: string | undefined;
|
|
10827
|
+
exclusionRules?: string[] | undefined;
|
|
10828
|
+
} | undefined;
|
|
10829
|
+
pipeline?: {
|
|
10830
|
+
steps: {
|
|
10831
|
+
key: string;
|
|
10832
|
+
label: string;
|
|
10833
|
+
resourceId: string;
|
|
10834
|
+
inputTemplate: Record<string, unknown>;
|
|
10835
|
+
enabled: boolean;
|
|
10836
|
+
order: number;
|
|
10837
|
+
}[];
|
|
10838
|
+
} | undefined;
|
|
10839
|
+
};
|
|
10840
|
+
}, Error>;
|
|
10841
|
+
declare function useListsTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
|
|
10842
|
+
declare function useListProgress(listId: string): _tanstack_react_query.UseQueryResult<ListTelemetry, Error>;
|
|
10843
|
+
declare function useListExecutions(listId: string): _tanstack_react_query.UseQueryResult<{
|
|
10844
|
+
executionId: string;
|
|
10845
|
+
resourceId: string;
|
|
10846
|
+
status: string;
|
|
10847
|
+
createdAt: string;
|
|
10848
|
+
completedAt: string | null;
|
|
10849
|
+
durationMs: number | null;
|
|
10850
|
+
}[], Error>;
|
|
10851
|
+
declare function useCreateList(): _tanstack_react_query.UseMutationResult<{
|
|
10852
|
+
id: string;
|
|
10853
|
+
organizationId: string;
|
|
10854
|
+
name: string;
|
|
10855
|
+
description: string | null;
|
|
10856
|
+
type: string;
|
|
10857
|
+
batchIds: string[];
|
|
10858
|
+
instantlyCampaignId: string | null;
|
|
10859
|
+
status: string;
|
|
10860
|
+
metadata: Record<string, unknown>;
|
|
10861
|
+
launchedAt: string | null;
|
|
10862
|
+
completedAt: string | null;
|
|
10863
|
+
createdAt: string;
|
|
10864
|
+
config: {
|
|
10865
|
+
qualification: {
|
|
10866
|
+
targetDescription: string;
|
|
10867
|
+
minReviewCount: number;
|
|
10868
|
+
minRating: number;
|
|
10869
|
+
excludeFranchises: boolean;
|
|
10870
|
+
customRules: string;
|
|
10871
|
+
};
|
|
10872
|
+
enrichment?: {
|
|
10873
|
+
emailDiscovery?: {
|
|
10874
|
+
primary: "tomba" | "anymailfinder";
|
|
10875
|
+
credentialName?: string | undefined;
|
|
10876
|
+
} | undefined;
|
|
10877
|
+
emailVerification?: {
|
|
10878
|
+
provider: "millionverifier";
|
|
10879
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
10880
|
+
} | undefined;
|
|
10881
|
+
} | undefined;
|
|
10882
|
+
personalization?: {
|
|
10883
|
+
industryContext?: string | undefined;
|
|
10884
|
+
emailBody?: string | undefined;
|
|
10885
|
+
creativeDirection?: string | undefined;
|
|
10886
|
+
exclusionRules?: string[] | undefined;
|
|
10887
|
+
} | undefined;
|
|
10888
|
+
pipeline?: {
|
|
10889
|
+
steps: {
|
|
10890
|
+
key: string;
|
|
10891
|
+
label: string;
|
|
10892
|
+
resourceId: string;
|
|
10893
|
+
inputTemplate: Record<string, unknown>;
|
|
10894
|
+
enabled: boolean;
|
|
10895
|
+
order: number;
|
|
10896
|
+
}[];
|
|
10897
|
+
} | undefined;
|
|
10898
|
+
};
|
|
10899
|
+
}, Error, {
|
|
10900
|
+
name: string;
|
|
10901
|
+
type: string;
|
|
10902
|
+
description?: string | null | undefined;
|
|
10903
|
+
config?: {
|
|
10904
|
+
qualification: {
|
|
10905
|
+
targetDescription: string;
|
|
10906
|
+
minReviewCount: number;
|
|
10907
|
+
minRating: number;
|
|
10908
|
+
excludeFranchises: boolean;
|
|
10909
|
+
customRules: string;
|
|
10910
|
+
};
|
|
10911
|
+
enrichment?: {
|
|
10912
|
+
emailDiscovery?: {
|
|
10913
|
+
primary: "tomba" | "anymailfinder";
|
|
10914
|
+
credentialName?: string | undefined;
|
|
10915
|
+
} | undefined;
|
|
10916
|
+
emailVerification?: {
|
|
10917
|
+
provider: "millionverifier";
|
|
10918
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
10919
|
+
} | undefined;
|
|
10920
|
+
} | undefined;
|
|
10921
|
+
personalization?: {
|
|
10922
|
+
industryContext?: string | undefined;
|
|
10923
|
+
emailBody?: string | undefined;
|
|
10924
|
+
creativeDirection?: string | undefined;
|
|
10925
|
+
exclusionRules?: string[] | undefined;
|
|
10926
|
+
} | undefined;
|
|
10927
|
+
pipeline?: {
|
|
10928
|
+
steps: {
|
|
10929
|
+
key: string;
|
|
10930
|
+
label: string;
|
|
10931
|
+
resourceId: string;
|
|
10932
|
+
inputTemplate: Record<string, unknown>;
|
|
10933
|
+
enabled: boolean;
|
|
10934
|
+
order: number;
|
|
10935
|
+
}[];
|
|
10936
|
+
} | undefined;
|
|
10937
|
+
} | undefined;
|
|
10938
|
+
}, unknown>;
|
|
10939
|
+
declare function useUpdateList(listId: string): _tanstack_react_query.UseMutationResult<{
|
|
10940
|
+
id: string;
|
|
10941
|
+
organizationId: string;
|
|
10942
|
+
name: string;
|
|
10943
|
+
description: string | null;
|
|
10944
|
+
type: string;
|
|
10945
|
+
batchIds: string[];
|
|
10946
|
+
instantlyCampaignId: string | null;
|
|
10947
|
+
status: string;
|
|
10948
|
+
metadata: Record<string, unknown>;
|
|
10949
|
+
launchedAt: string | null;
|
|
10950
|
+
completedAt: string | null;
|
|
10951
|
+
createdAt: string;
|
|
10952
|
+
config: {
|
|
10953
|
+
qualification: {
|
|
10954
|
+
targetDescription: string;
|
|
10955
|
+
minReviewCount: number;
|
|
10956
|
+
minRating: number;
|
|
10957
|
+
excludeFranchises: boolean;
|
|
10958
|
+
customRules: string;
|
|
10959
|
+
};
|
|
10960
|
+
enrichment?: {
|
|
10961
|
+
emailDiscovery?: {
|
|
10962
|
+
primary: "tomba" | "anymailfinder";
|
|
10963
|
+
credentialName?: string | undefined;
|
|
10964
|
+
} | undefined;
|
|
10965
|
+
emailVerification?: {
|
|
10966
|
+
provider: "millionverifier";
|
|
10967
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
10968
|
+
} | undefined;
|
|
10969
|
+
} | undefined;
|
|
10970
|
+
personalization?: {
|
|
10971
|
+
industryContext?: string | undefined;
|
|
10972
|
+
emailBody?: string | undefined;
|
|
10973
|
+
creativeDirection?: string | undefined;
|
|
10974
|
+
exclusionRules?: string[] | undefined;
|
|
10975
|
+
} | undefined;
|
|
10976
|
+
pipeline?: {
|
|
10977
|
+
steps: {
|
|
10978
|
+
key: string;
|
|
10979
|
+
label: string;
|
|
10980
|
+
resourceId: string;
|
|
10981
|
+
inputTemplate: Record<string, unknown>;
|
|
10982
|
+
enabled: boolean;
|
|
10983
|
+
order: number;
|
|
10984
|
+
}[];
|
|
10985
|
+
} | undefined;
|
|
10986
|
+
};
|
|
10987
|
+
}, Error, {
|
|
10988
|
+
name?: string | undefined;
|
|
10989
|
+
description?: string | null | undefined;
|
|
10990
|
+
status?: string | undefined;
|
|
10991
|
+
}, unknown>;
|
|
10992
|
+
declare function useUpdateListConfig(listId: string): _tanstack_react_query.UseMutationResult<{
|
|
10993
|
+
id: string;
|
|
10994
|
+
organizationId: string;
|
|
10995
|
+
name: string;
|
|
10996
|
+
description: string | null;
|
|
10997
|
+
type: string;
|
|
10998
|
+
batchIds: string[];
|
|
10999
|
+
instantlyCampaignId: string | null;
|
|
11000
|
+
status: string;
|
|
11001
|
+
metadata: Record<string, unknown>;
|
|
11002
|
+
launchedAt: string | null;
|
|
11003
|
+
completedAt: string | null;
|
|
11004
|
+
createdAt: string;
|
|
11005
|
+
config: {
|
|
11006
|
+
qualification: {
|
|
11007
|
+
targetDescription: string;
|
|
11008
|
+
minReviewCount: number;
|
|
11009
|
+
minRating: number;
|
|
11010
|
+
excludeFranchises: boolean;
|
|
11011
|
+
customRules: string;
|
|
11012
|
+
};
|
|
11013
|
+
enrichment?: {
|
|
11014
|
+
emailDiscovery?: {
|
|
11015
|
+
primary: "tomba" | "anymailfinder";
|
|
11016
|
+
credentialName?: string | undefined;
|
|
11017
|
+
} | undefined;
|
|
11018
|
+
emailVerification?: {
|
|
11019
|
+
provider: "millionverifier";
|
|
11020
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
11021
|
+
} | undefined;
|
|
11022
|
+
} | undefined;
|
|
11023
|
+
personalization?: {
|
|
11024
|
+
industryContext?: string | undefined;
|
|
11025
|
+
emailBody?: string | undefined;
|
|
11026
|
+
creativeDirection?: string | undefined;
|
|
11027
|
+
exclusionRules?: string[] | undefined;
|
|
11028
|
+
} | undefined;
|
|
11029
|
+
pipeline?: {
|
|
11030
|
+
steps: {
|
|
11031
|
+
key: string;
|
|
11032
|
+
label: string;
|
|
11033
|
+
resourceId: string;
|
|
11034
|
+
inputTemplate: Record<string, unknown>;
|
|
11035
|
+
enabled: boolean;
|
|
11036
|
+
order: number;
|
|
11037
|
+
}[];
|
|
11038
|
+
} | undefined;
|
|
11039
|
+
};
|
|
11040
|
+
}, Error, {
|
|
11041
|
+
qualification?: {
|
|
11042
|
+
targetDescription?: string | undefined;
|
|
11043
|
+
minReviewCount?: number | undefined;
|
|
11044
|
+
minRating?: number | undefined;
|
|
11045
|
+
excludeFranchises?: boolean | undefined;
|
|
11046
|
+
customRules?: string | undefined;
|
|
11047
|
+
} | undefined;
|
|
11048
|
+
enrichment?: {
|
|
11049
|
+
emailDiscovery?: {
|
|
11050
|
+
primary: "tomba" | "anymailfinder";
|
|
11051
|
+
credentialName?: string | undefined;
|
|
11052
|
+
} | undefined;
|
|
11053
|
+
emailVerification?: {
|
|
11054
|
+
provider: "millionverifier";
|
|
11055
|
+
threshold?: "ok" | "ok+catch_all" | undefined;
|
|
11056
|
+
} | undefined;
|
|
11057
|
+
} | undefined;
|
|
11058
|
+
personalization?: {
|
|
11059
|
+
industryContext?: string | undefined;
|
|
11060
|
+
emailBody?: string | undefined;
|
|
11061
|
+
creativeDirection?: string | undefined;
|
|
11062
|
+
exclusionRules?: string[] | undefined;
|
|
11063
|
+
} | undefined;
|
|
11064
|
+
pipeline?: {
|
|
11065
|
+
steps?: {
|
|
11066
|
+
key: string;
|
|
11067
|
+
label: string;
|
|
11068
|
+
resourceId: string;
|
|
11069
|
+
inputTemplate: Record<string, unknown>;
|
|
11070
|
+
enabled: boolean;
|
|
11071
|
+
order: number;
|
|
11072
|
+
}[] | undefined;
|
|
11073
|
+
} | undefined;
|
|
11074
|
+
}, unknown>;
|
|
11075
|
+
declare function useDeleteList(): _tanstack_react_query.UseMutationResult<void, Error, string, unknown>;
|
|
11076
|
+
|
|
11077
|
+
/**
|
|
11078
|
+
* Deprecated alias retained until the remaining batch-oriented callers are removed.
|
|
11079
|
+
*/
|
|
10735
11080
|
declare function useBatchTelemetry(): _tanstack_react_query.UseQueryResult<ListTelemetry[], Error>;
|
|
10736
11081
|
|
|
10737
11082
|
// Row types from Supabase
|
|
@@ -11058,5 +11403,5 @@ declare function useCreateNote(): _tanstack_react_query.UseMutationResult<{
|
|
|
11058
11403
|
type?: string;
|
|
11059
11404
|
}, "organization_id">, unknown>;
|
|
11060
11405
|
|
|
11061
|
-
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, calibrationKeys, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListApiKeys, useListDeployments, useListSchedules, useListWebhookEndpoints, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectNotes, useProjects, useReactivateMembership, useRecentExecutionsByResource, 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, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
|
|
11406
|
+
export { ApiKeyService, CredentialService, DeploymentService, OperationsService, OrganizationMembershipService, REFETCH_INTERVAL_RUNNING, WS_MAX_RETRIES_BEFORE_ERROR, WS_RECONNECT_BASE_DELAY, WS_RECONNECT_MAX_DELAY, WebhookEndpointService, acquisitionListKeys, calibrationKeys, createUseFeatureAccess, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, filterByDomainFilters, isSessionCapable, milestoneKeys, noteKeys, observabilityKeys, operationsKeys, projectKeys, scheduleKeys, sessionsKeys, sortData, taskKeys, useActivateDeployment, useActivities, useActivityFilters, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewDomainFilters, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateApiKey, useCreateCredential, useCreateDealNote, useCreateDealTask, useCreateProject as useCreateDeliveryProject, useCreateList, useCreateMilestone, useCreateNote, useCreateProject$1 as useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useCreateWebhookEndpoint, useCredentials, useDashboardMetrics, useDeactivateDeployment, useDeactivateMembership, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteApiKey, useDeleteCredential, useDeleteDeal, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteExecution, useDeleteList, useDeleteMilestone, useDeleteProject$1 as useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask$1 as useDeleteTask, useDeleteWebhookEndpoint, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useErrorTrends, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionLogsFilters, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListApiKeys, useListDeployments, useListExecutions, useListProgress, useListSchedules, useListWebhookEndpoints, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useMilestones, useNotificationCount as useNotificationCountSSE, useNotifications, useOrganizationMembers, usePaginationState, usePatchTask, usePauseSchedule, useProject, useProjectNotes, useProjects, useReactivateMembership, useRecentExecutionsByResource, 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, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateList, useUpdateListConfig, useUpdateMemberConfig, useUpdateMilestone, useUpdateProject$1 as useUpdateProject, useUpdateSchedule, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources, useWarningNotification };
|
|
11062
11407
|
export type { AcqDealNote, AcqDealTask, AcqDealTaskKind, ActivityFilters, ActivityTrendResponse, BulkDeleteExecutionsParams, BulkDeleteExecutionsResult, BusinessImpactMetrics, CalibrationProgress, CancelExecutionParams, CancelExecutionResult, ChatMessage, CreateApiKeyRequest, CreateApiKeyResponse, CreateCredentialRequest, CreateCredentialResponse, CreateScheduleInput, CreateSessionResponse, CredentialListItem, DealDetail, DeleteExecutionParams, Deployment, DocFile, ErrorDistributionItem, ErrorDistributionParams, ErrorFilters, ErrorTrendsParams, ExecuteAsyncParams, ExecuteAsyncResult, ExecutionErrorDetails, ExecutionHistoryItem, ExecutionHistoryResponse, ExecutionLogsFilters, ExecutionLogsPageResponse, FailingResource, GetMessagesResponse, ListActivitiesResponse, ListApiKeysResponse, ListCredentialsResponse, ListSchedulesFilters, ListSchedulesResponse, ListWebhookEndpointsResponse, MessageEvent, MessageType, ResourcesResponse, RetryExecutionParams, SessionDTO, SessionExecution, SessionExecutionsResponse, SessionListItem, SessionTokenUsage, SortDirection, SortState, StatusFilter$1 as StatusFilter, SubmitActionRequest, SubmitActionResponse, TaskSchedule, TopFailingResourcesParams, UpdateScheduleInput, UseActivitiesParams, UseActivityTrendParams, UseBatchedResourcesHealthParams, UseCalibrationSSEOptions, UseExecuteWorkflowOptions, UseExecuteWorkflowParams, UseExecutionHealthParams, UseExecutionLogsParams, UseExecutionPanelStateOptions, UseExecutionPanelStateReturn, UseNotificationCountArgs, UseResourcesHealthParams, UseSSEConnectionOptions, UseScheduledTasksOptions, WebSocketState };
|
package/dist/hooks/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-
|
|
2
|
-
export { OperationsService, calibrationKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteDeal, useDeleteExecution, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useListSchedules, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-
|
|
1
|
+
export { ApiKeyService, CredentialService, DeploymentService, OrganizationMembershipService, WebhookEndpointService, filterByDomainFilters, milestoneKeys, noteKeys, projectKeys, taskKeys, useActivateDeployment, useActivityFilters, useCommandViewDomainFilters, useCreateApiKey, useCreateCredential, useCreateProject as useCreateDeliveryProject, useCreateMilestone, useCreateNote, useCreateWebhookEndpoint, useCredentials, useDeactivateDeployment, useDeactivateMembership, useDeleteApiKey, useDeleteCredential, useDeleteProject as useDeleteDeliveryProject, useDeleteTask as useDeleteDeliveryTask, useDeleteDeployment, useDeleteMilestone, useDeleteWebhookEndpoint, useExecutionLogsFilters, useListApiKeys, useListDeployments, useListWebhookEndpoints, useMilestones, useOrganizationMembers, useProject, useProjectNotes, useProjects, useReactivateMembership, useResourceSearch, useResourcesDomainFilters, useStatusFilter, useTasks, useTimeRangeDates, useUpdateApiKey, useUpdateCredential, useUpdateProject as useUpdateDeliveryProject, useUpdateMemberConfig, useUpdateMilestone, useUpdateWebhookEndpoint, useUserMemberships, useVisibleResources } from '../chunk-BYZ7VTSH.js';
|
|
2
|
+
export { OperationsService, acquisitionListKeys, calibrationKeys, dealKeys, dealNoteKeys, dealTaskKeys, executionsKeys, isSessionCapable, operationsKeys, scheduleKeys, sessionsKeys, sortData, useActivities, useActivityTrend, useAllCalibrationProjects, useArchiveSession, useArchivedLogs, useBatchDelete, useBatchTelemetry, useBatchedResourcesHealth, useBulkDeleteExecutions, useBusinessImpact, useCalibrationProject, useCalibrationProjects, useCalibrationRun, useCalibrationRunFull, useCalibrationRuns, useCalibrationSSE, useCancelExecution, useCancelSchedule, useCheckpointTasks, useCommandQueue, useCommandQueueTotals, useCommandViewData, useCommandViewLayout, useCommandViewStats, useCommandViewStore, useCompleteDealTask, useCostBreakdown, useCostByModel, useCostSummary, useCostTrends, useCreateDealNote, useCreateDealTask, useCreateList, useCreateProject, useCreateRun, useCreateSchedule, useCreateSession, useDashboardMetrics, useDealDetail, useDealNotes, useDealTasks, useDealTasksDue, useDeals, useDeleteDeal, useDeleteExecution, useDeleteList, useDeleteProject, useDeleteRun, useDeleteSchedule, useDeleteSession, useDeleteTask, useDeploymentDocs, useErrorAnalysis, useErrorDetail, useErrorDetails, useErrorDistribution, useErrorNotification, useExecuteAsync, useExecuteRun, useExecuteWorkflow, useExecution, useExecutionHealth, useExecutionLogSSE, useExecutionLogs, useExecutionPanelState, useExecutions, useGetExecutionHistory, useGetSchedule, useGradeRun, useGraphStats, useList, useListExecutions, useListProgress, useListSchedules, useLists, useListsTelemetry, useMarkAllAsRead, useMarkAsRead, useNotificationCount as useNotificationCountSSE, useNotifications, usePaginationState, usePatchTask, usePauseSchedule, useRecentExecutionsByResource, useResolveAllErrors, useResolveError, useResolveErrorsByExecution, useResourceDefinition, useResourceErrors, useResourceExecutions, useResources, useResourcesHealth, useResumeSchedule, useRetryExecution, useSSEConnection, useScheduledTasks, useSession, useSessionExecution, useSessionExecutions, useSessionMessages, useSessionWebSocket, useSessions, useSortedData, useSubmitAction, useSuccessNotification, useSyncDealStage, useTableSelection, useTableSort, useTestNotification, useTopFailingResources, useUnresolveError, useUnresolvedErrors, useUpdateAnchor, useUpdateList, useUpdateListConfig, useUpdateProject, useUpdateSchedule, useWarningNotification } from '../chunk-EINVPEHK.js';
|
|
3
3
|
export { observabilityKeys, useErrorTrends } from '../chunk-LXHZYSMQ.js';
|
|
4
4
|
import '../chunk-F6RBK7NJ.js';
|
|
5
|
-
import '../chunk-
|
|
5
|
+
import '../chunk-FW4S3Z5I.js';
|
|
6
6
|
import '../chunk-SZHARWKU.js';
|
|
7
7
|
import '../chunk-TXPUIHX2.js';
|
|
8
8
|
import '../chunk-CYXZHBP4.js';
|
|
9
|
-
export { createUseFeatureAccess } from '../chunk-
|
|
9
|
+
export { createUseFeatureAccess } from '../chunk-45MS3IAW.js';
|
|
10
10
|
import '../chunk-5COLSYBE.js';
|
|
11
11
|
import '../chunk-NVOCKXUQ.js';
|
|
12
12
|
import '../chunk-2IFYDILW.js';
|