@yuno-payments/dashboard-api-mfe 0.36.57-beta.1 → 0.36.57-beta.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/build/cjs/index.js +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/queries/smart-recovery/smart-recovery-overview.query.d.ts +8 -3
- package/build/cjs/types/types/smart-recovery/smart-recovery-overview.types.d.ts +39 -5
- package/build/esm/index.js +3 -3
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/queries/smart-recovery/smart-recovery-overview.query.d.ts +8 -3
- package/build/esm/types/types/smart-recovery/smart-recovery-overview.types.d.ts +39 -5
- package/build/index.d.ts +46 -9
- package/package.json +1 -1
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { UseQueryOptions } from '@tanstack/react-query';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { SmartRecoveryOverviewQueryParams, DailyCommunicationsAndConversionRate, CommunicationsBySubStatus, DailyCommunicationsSubStatusDistribution, RecoveredTPV, RecoveredPayments } from '../../types/smart-recovery';
|
|
3
|
+
import { AxiosError } from 'axios';
|
|
4
|
+
import { BFFErrorResponse } from '../../mutations';
|
|
5
|
+
export declare const useCommunicationsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse>>) => import("@tanstack/react-query").UseQueryResult<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse, any>>;
|
|
6
|
+
export declare const useCommunicationsBySubstatus: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<CommunicationsBySubStatus, AxiosError<BFFErrorResponse>>) => import("@tanstack/react-query").UseQueryResult<CommunicationsBySubStatus, AxiosError<BFFErrorResponse, any>>;
|
|
7
|
+
export declare const useCommunicationsSubstatusByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsSubStatusDistribution, AxiosError<BFFErrorResponse>>) => import("@tanstack/react-query").UseQueryResult<DailyCommunicationsSubStatusDistribution, AxiosError<BFFErrorResponse, any>>;
|
|
8
|
+
export declare const useRecoveredTPVByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<RecoveredTPV, AxiosError<BFFErrorResponse>>) => import("@tanstack/react-query").UseQueryResult<RecoveredTPV, AxiosError<BFFErrorResponse, any>>;
|
|
9
|
+
export declare const useRecoveredPaymentsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<RecoveredPayments, AxiosError<BFFErrorResponse>>) => import("@tanstack/react-query").UseQueryResult<RecoveredPayments, AxiosError<BFFErrorResponse, any>>;
|
|
@@ -38,20 +38,54 @@ export interface RecoveredPayments {
|
|
|
38
38
|
total: number;
|
|
39
39
|
total_amount: number;
|
|
40
40
|
}
|
|
41
|
-
export interface
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
recovered_payments: RecoveredPayments;
|
|
41
|
+
export interface RecoveredTPV {
|
|
42
|
+
distribution: CommunicationDistribution[];
|
|
43
|
+
total: number;
|
|
44
|
+
total_amount: number;
|
|
46
45
|
}
|
|
47
46
|
export interface SmartRecoveryOverviewFilters {
|
|
48
47
|
date?: string;
|
|
49
48
|
start_date?: string;
|
|
50
49
|
end_date?: string;
|
|
51
50
|
account_code?: string[];
|
|
51
|
+
countries?: string[];
|
|
52
|
+
channels?: string[];
|
|
53
|
+
focuses?: string[];
|
|
52
54
|
communication_type?: string[];
|
|
53
55
|
sub_status?: string[];
|
|
54
56
|
}
|
|
55
57
|
export interface SmartRecoveryOverviewQueryParams extends SmartRecoveryOverviewFilters {
|
|
56
58
|
organization_code: string;
|
|
57
59
|
}
|
|
60
|
+
export interface PlotRow {
|
|
61
|
+
date: string;
|
|
62
|
+
value: string;
|
|
63
|
+
}
|
|
64
|
+
export interface Plot {
|
|
65
|
+
type: 'BAR' | 'LINE';
|
|
66
|
+
label: string;
|
|
67
|
+
value: string;
|
|
68
|
+
unit: 'NUMERIC' | 'PERCENTAGE' | 'MONETARY';
|
|
69
|
+
percentage?: string;
|
|
70
|
+
rows?: PlotRow[];
|
|
71
|
+
}
|
|
72
|
+
export interface CommunicationsByDayResponse {
|
|
73
|
+
title: string;
|
|
74
|
+
plots: Plot[];
|
|
75
|
+
}
|
|
76
|
+
export interface CommunicationsBySubstatusResponse {
|
|
77
|
+
title: string;
|
|
78
|
+
plots: Plot[];
|
|
79
|
+
}
|
|
80
|
+
export interface CommunicationsSubstatusByDayResponse {
|
|
81
|
+
title: string;
|
|
82
|
+
plots: Plot[];
|
|
83
|
+
}
|
|
84
|
+
export interface RecoveredTPVByDayResponse {
|
|
85
|
+
title: string;
|
|
86
|
+
plots: Plot[];
|
|
87
|
+
}
|
|
88
|
+
export interface RecoveredPaymentsByDayResponse {
|
|
89
|
+
title: string;
|
|
90
|
+
plots: Plot[];
|
|
91
|
+
}
|
package/build/index.d.ts
CHANGED
|
@@ -3823,23 +3823,57 @@ interface RecoveredPayments {
|
|
|
3823
3823
|
total: number;
|
|
3824
3824
|
total_amount: number;
|
|
3825
3825
|
}
|
|
3826
|
-
interface
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
recovered_payments: RecoveredPayments;
|
|
3826
|
+
interface RecoveredTPV {
|
|
3827
|
+
distribution: CommunicationDistribution[];
|
|
3828
|
+
total: number;
|
|
3829
|
+
total_amount: number;
|
|
3831
3830
|
}
|
|
3832
3831
|
interface SmartRecoveryOverviewFilters {
|
|
3833
3832
|
date?: string;
|
|
3834
3833
|
start_date?: string;
|
|
3835
3834
|
end_date?: string;
|
|
3836
3835
|
account_code?: string[];
|
|
3836
|
+
countries?: string[];
|
|
3837
|
+
channels?: string[];
|
|
3838
|
+
focuses?: string[];
|
|
3837
3839
|
communication_type?: string[];
|
|
3838
3840
|
sub_status?: string[];
|
|
3839
3841
|
}
|
|
3840
3842
|
interface SmartRecoveryOverviewQueryParams extends SmartRecoveryOverviewFilters {
|
|
3841
3843
|
organization_code: string;
|
|
3842
3844
|
}
|
|
3845
|
+
interface PlotRow {
|
|
3846
|
+
date: string;
|
|
3847
|
+
value: string;
|
|
3848
|
+
}
|
|
3849
|
+
interface Plot {
|
|
3850
|
+
type: 'BAR' | 'LINE';
|
|
3851
|
+
label: string;
|
|
3852
|
+
value: string;
|
|
3853
|
+
unit: 'NUMERIC' | 'PERCENTAGE' | 'MONETARY';
|
|
3854
|
+
percentage?: string;
|
|
3855
|
+
rows?: PlotRow[];
|
|
3856
|
+
}
|
|
3857
|
+
interface CommunicationsByDayResponse {
|
|
3858
|
+
title: string;
|
|
3859
|
+
plots: Plot[];
|
|
3860
|
+
}
|
|
3861
|
+
interface CommunicationsBySubstatusResponse {
|
|
3862
|
+
title: string;
|
|
3863
|
+
plots: Plot[];
|
|
3864
|
+
}
|
|
3865
|
+
interface CommunicationsSubstatusByDayResponse {
|
|
3866
|
+
title: string;
|
|
3867
|
+
plots: Plot[];
|
|
3868
|
+
}
|
|
3869
|
+
interface RecoveredTPVByDayResponse {
|
|
3870
|
+
title: string;
|
|
3871
|
+
plots: Plot[];
|
|
3872
|
+
}
|
|
3873
|
+
interface RecoveredPaymentsByDayResponse {
|
|
3874
|
+
title: string;
|
|
3875
|
+
plots: Plot[];
|
|
3876
|
+
}
|
|
3843
3877
|
|
|
3844
3878
|
type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
|
|
3845
3879
|
response: {
|
|
@@ -4955,8 +4989,11 @@ declare function usePatchAndExecuteChart(chart_id: string, patchPayload: PatchCh
|
|
|
4955
4989
|
declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
4956
4990
|
declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
4957
4991
|
|
|
4958
|
-
declare const
|
|
4959
|
-
declare const
|
|
4992
|
+
declare const useCommunicationsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<DailyCommunicationsAndConversionRate, AxiosError<BFFErrorResponse, any>>;
|
|
4993
|
+
declare const useCommunicationsBySubstatus: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<CommunicationsBySubStatus, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<CommunicationsBySubStatus, AxiosError<BFFErrorResponse, any>>;
|
|
4994
|
+
declare const useCommunicationsSubstatusByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<DailyCommunicationsSubStatusDistribution, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<DailyCommunicationsSubStatusDistribution, AxiosError<BFFErrorResponse, any>>;
|
|
4995
|
+
declare const useRecoveredTPVByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<RecoveredTPV, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<RecoveredTPV, AxiosError<BFFErrorResponse, any>>;
|
|
4996
|
+
declare const useRecoveredPaymentsByDay: (params: SmartRecoveryOverviewQueryParams, options?: UseQueryOptions<RecoveredPayments, AxiosError<BFFErrorResponse>>) => _tanstack_react_query.UseQueryResult<RecoveredPayments, AxiosError<BFFErrorResponse, any>>;
|
|
4960
4997
|
|
|
4961
4998
|
interface CreateChartGPTChartPayload {
|
|
4962
4999
|
user_prompt: string;
|
|
@@ -5507,5 +5544,5 @@ declare enum ApiErrorCodes {
|
|
|
5507
5544
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5508
5545
|
}
|
|
5509
5546
|
|
|
5510
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields,
|
|
5511
|
-
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsBySubStatus, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RecoveredPayments,
|
|
5547
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5548
|
+
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|