@yuno-payments/dashboard-api-mfe 1.3.1 → 1.4.1

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.
@@ -60,6 +60,9 @@ export declare class Api extends HttpClient {
60
60
  getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
61
61
  getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
62
62
  getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
63
+ getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
64
+ getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
65
+ getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
63
66
  postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
64
67
  postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
65
68
  getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
@@ -543,6 +546,14 @@ export declare class Api extends HttpClient {
543
546
  getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
544
547
  validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
545
548
  deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
549
+ private buildAuthHeaders;
550
+ getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
551
+ patchOrganizationKeysNote<T>(payload: {
552
+ note: string;
553
+ }, password: string): Promise<AxiosResponse<T, any>>;
554
+ postOrganizationKeysRoll<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
555
+ postOrganizationKeysTamRequest<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
556
+ postOrganizationKeysMarkRevealed<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
546
557
  postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
547
558
  getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
548
559
  getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
@@ -20,5 +20,12 @@ export declare function useGetCredentialsMFA(): UseMutationResult<{
20
20
  }, unknown, {
21
21
  password?: string | undefined;
22
22
  accountCode?: string | undefined;
23
+ otp?: string | undefined;
24
+ mfaToken?: string | undefined;
23
25
  }, unknown>;
24
26
  export declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
27
+ export declare function useGetOrganizationKeysMetadata(): UseMutationResult<unknown>;
28
+ export declare function usePatchOrganizationKeysNote(): UseMutationResult<unknown>;
29
+ export declare function usePostOrganizationKeysRoll(): UseMutationResult<unknown>;
30
+ export declare function usePostOrganizationKeysTamRequest(): UseMutationResult<unknown>;
31
+ export declare function usePostOrganizationKeysMarkRevealed(): UseMutationResult<unknown>;
@@ -21,3 +21,6 @@ export declare function useGetReconciliationInsightsNotConfirmSummary({ body, en
21
21
  export declare function useGetReconciliationInsightsNotConfirmAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
22
22
  export declare function useGetReconciliationInsightsNotConfirmList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ProcessedTransactionList, ReconciliationInsights.Error>;
23
23
  export declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
24
+ export declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
25
+ export declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
26
+ export declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
@@ -145,6 +145,27 @@ export declare namespace ReconciliationInsights {
145
145
  status_conflict: GenericChartSummary;
146
146
  amount_conflict: GenericChartSummary;
147
147
  }
148
+ export interface ReconciliationRateTotal {
149
+ total_transactions: number;
150
+ transactions_percentage: number;
151
+ }
152
+ export interface ReconciliationRateByProviderDay {
153
+ transaction_date: string;
154
+ total_transactions: number;
155
+ reconciled_transactions: number;
156
+ }
157
+ export interface ReconciliationRateItem {
158
+ code: string;
159
+ total_transactions: number;
160
+ transactions_percentage: number;
161
+ }
162
+ export interface ReconciliationRateByProvider extends ReconciliationRateItem {
163
+ metrics: ReconciliationRateByProviderDay[];
164
+ }
165
+ export interface ReconciliationRateByProviderResponse {
166
+ total: ReconciliationRateTotal;
167
+ data: ReconciliationRateByProvider[];
168
+ }
148
169
  export interface UseInsightsQueryProps<T> {
149
170
  body: T;
150
171
  enabled?: boolean;
package/build/index.d.ts CHANGED
@@ -3724,6 +3724,27 @@ declare namespace ReconciliationInsights {
3724
3724
  status_conflict: GenericChartSummary;
3725
3725
  amount_conflict: GenericChartSummary;
3726
3726
  }
3727
+ export interface ReconciliationRateTotal {
3728
+ total_transactions: number;
3729
+ transactions_percentage: number;
3730
+ }
3731
+ export interface ReconciliationRateByProviderDay {
3732
+ transaction_date: string;
3733
+ total_transactions: number;
3734
+ reconciled_transactions: number;
3735
+ }
3736
+ export interface ReconciliationRateItem {
3737
+ code: string;
3738
+ total_transactions: number;
3739
+ transactions_percentage: number;
3740
+ }
3741
+ export interface ReconciliationRateByProvider extends ReconciliationRateItem {
3742
+ metrics: ReconciliationRateByProviderDay[];
3743
+ }
3744
+ export interface ReconciliationRateByProviderResponse {
3745
+ total: ReconciliationRateTotal;
3746
+ data: ReconciliationRateByProvider[];
3747
+ }
3727
3748
  export interface UseInsightsQueryProps<T> {
3728
3749
  body: T;
3729
3750
  enabled?: boolean;
@@ -5715,8 +5736,15 @@ declare function useGetCredentialsMFA(): UseMutationResult<{
5715
5736
  }, unknown, {
5716
5737
  password?: string | undefined;
5717
5738
  accountCode?: string | undefined;
5739
+ otp?: string | undefined;
5740
+ mfaToken?: string | undefined;
5718
5741
  }, unknown>;
5719
5742
  declare function usePostCredentialsWithOtpMfa(): UseMutationResult<unknown>;
5743
+ declare function useGetOrganizationKeysMetadata(): UseMutationResult<unknown>;
5744
+ declare function usePatchOrganizationKeysNote(): UseMutationResult<unknown>;
5745
+ declare function usePostOrganizationKeysRoll(): UseMutationResult<unknown>;
5746
+ declare function usePostOrganizationKeysTamRequest(): UseMutationResult<unknown>;
5747
+ declare function usePostOrganizationKeysMarkRevealed(): UseMutationResult<unknown>;
5720
5748
 
5721
5749
  declare function usePostAuditMonitors({ onMutate }: {
5722
5750
  onMutate: any;
@@ -6311,6 +6339,9 @@ declare function useGetReconciliationInsightsNotConfirmSummary({ body, enabled,
6311
6339
  declare function useGetReconciliationInsightsNotConfirmAggregators({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.Aggregators, ReconciliationInsights.Error>;
6312
6340
  declare function useGetReconciliationInsightsNotConfirmList({ body, enabled, }: ReconciliationInsights.UseInsightsListQueryProps<ReconciliationInsights.ListFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ProcessedTransactionList, ReconciliationInsights.Error>;
6313
6341
  declare function useGetReconciliationInsightsAmountToBeSettledSummary({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithAcquirer>): UseQueryResult<ReconciliationInsights.ChartWithGraph, ReconciliationInsights.Error>;
6342
+ declare function useGetReconciliationInsightsReconciliationRateByProvider({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateByProviderResponse, ReconciliationInsights.Error>;
6343
+ declare function useGetReconciliationInsightsReconciliationRateByAccount({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
6344
+ declare function useGetReconciliationInsightsReconciliationRateByCurrency({ body, enabled, }: ReconciliationInsights.UseInsightsQueryProps<ReconciliationInsights.BaseFiltersWithProvider>): UseQueryResult<ReconciliationInsights.ReconciliationRateItem[], ReconciliationInsights.Error>;
6314
6345
 
6315
6346
  declare namespace FeatureFlags {
6316
6347
  interface Request {
@@ -6655,6 +6686,9 @@ declare class Api extends HttpClient {
6655
6686
  getReconciliationInsightsNotConfirmAggregators<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6656
6687
  getReconciliationInsightsNotConfirmList<T>(body: ReconciliationInsights.ListFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6657
6688
  getReconciliationInsightsAmountToBeSettledSummary<T>(body: ReconciliationInsights.BaseFiltersWithAcquirer): Promise<AxiosResponse<T>>;
6689
+ getReconciliationInsightsReconciliationRateByProvider<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6690
+ getReconciliationInsightsReconciliationRateByAccount<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6691
+ getReconciliationInsightsReconciliationRateByCurrency<T>(body: ReconciliationInsights.BaseFiltersWithProvider): Promise<AxiosResponse<T>>;
6658
6692
  postPaymentsLazy<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
6659
6693
  postPayouts<T>(params: GetPaymentsParams): Promise<AxiosResponse<T, any>>;
6660
6694
  getPayoutsFilters<T>(organizationCode: any): Promise<AxiosResponse<T>>;
@@ -7138,6 +7172,14 @@ declare class Api extends HttpClient {
7138
7172
  getCustomizedApiKeysToken<T>(code: string, password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
7139
7173
  validatePasswordStatus<T>(): Promise<AxiosResponse<T, any, {}>>;
7140
7174
  deleteCustomizedApiKeys<T>(code: any): Promise<AxiosResponse<T, any>>;
7175
+ private buildAuthHeaders;
7176
+ getOrganizationKeysMetadata<T>(): Promise<AxiosResponse<T, any>>;
7177
+ patchOrganizationKeysNote<T>(payload: {
7178
+ note: string;
7179
+ }, password: string): Promise<AxiosResponse<T, any>>;
7180
+ postOrganizationKeysRoll<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
7181
+ postOrganizationKeysTamRequest<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
7182
+ postOrganizationKeysMarkRevealed<T>(password?: string, otp?: string, mfaToken?: string): Promise<AxiosResponse<T, any>>;
7141
7183
  postCreateInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
7142
7184
  getInsightsReport<T>(payload: any): Promise<AxiosResponse<T, any>>;
7143
7185
  getInsightsReportAgain<T>(payload: any): Promise<AxiosResponse<T, any>>;
@@ -7263,5 +7305,5 @@ declare const useOrganizationCode: () => any;
7263
7305
 
7264
7306
  declare const useAccountCode: () => any;
7265
7307
 
7266
- export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, 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, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
7308
+ export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, 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, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
7267
7309
  export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuno-payments/dashboard-api-mfe",
3
- "version": "1.3.1",
3
+ "version": "1.4.1",
4
4
  "types": "build/index.d.ts",
5
5
  "main": "build/cjs/index.js",
6
6
  "module": "build/esm/index.js",