@yuno-payments/dashboard-api-mfe 0.35.0-beta.1 → 0.35.0-beta.10
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 +212 -6
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +3 -3
- package/build/cjs/types/msw/browser.d.ts +1 -1
- package/build/cjs/types/msw/handlers.d.ts +1 -1
- package/build/cjs/types/msw/mocks/insights/overview/overview-metrics.mock.d.ts +3 -3
- package/build/cjs/types/queries/chartgpt/chartgpt.query.d.ts +20 -2
- package/build/esm/index.js +212 -6
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +3 -3
- package/build/esm/types/msw/browser.d.ts +1 -1
- package/build/esm/types/msw/handlers.d.ts +1 -1
- package/build/esm/types/msw/mocks/insights/overview/overview-metrics.mock.d.ts +3 -3
- package/build/esm/types/queries/chartgpt/chartgpt.query.d.ts +20 -2
- package/build/index.d.ts +10 -9
- package/package.json +1 -1
|
@@ -581,12 +581,12 @@ export declare class Api extends HttpClient {
|
|
|
581
581
|
createChartGPTChart<T>(payload: {
|
|
582
582
|
user_prompt: string;
|
|
583
583
|
}): Promise<AxiosResponse<T, any>>;
|
|
584
|
-
deleteChartGPTChart<T>(
|
|
585
|
-
patchChartGPTChart<T>(
|
|
584
|
+
deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
585
|
+
patchChartGPTChart<T>(chartgpt_id: string, payload: {
|
|
586
586
|
type: string;
|
|
587
587
|
name: string;
|
|
588
588
|
}): Promise<AxiosResponse<T, any>>;
|
|
589
|
+
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
589
590
|
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
590
|
-
executeChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
591
591
|
}
|
|
592
592
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const worker:
|
|
1
|
+
export declare const worker: import("msw/browser").SetupWorker;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const handlers:
|
|
1
|
+
export declare const handlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -4,6 +4,6 @@ export declare enum OverviewMetricType {
|
|
|
4
4
|
STATUS = "status",
|
|
5
5
|
SUBSCRIPTIONS = "subscriptions"
|
|
6
6
|
}
|
|
7
|
-
export declare const oldOverviewMetricsHandler:
|
|
8
|
-
export declare const newOverviewMetricsHandlers:
|
|
9
|
-
export declare const overviewMetricsHandlers:
|
|
7
|
+
export declare const oldOverviewMetricsHandler: import("msw/lib/core/handlers/HttpHandler").HttpHandler;
|
|
8
|
+
export declare const newOverviewMetricsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
9
|
+
export declare const overviewMetricsHandlers: import("msw/lib/core/handlers/HttpHandler").HttpHandler[];
|
|
@@ -1,3 +1,21 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
-
export
|
|
3
|
-
|
|
2
|
+
export interface ChartGPTResult {
|
|
3
|
+
key: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ChartGPTExecuteResponse {
|
|
7
|
+
results: ChartGPTResult[];
|
|
8
|
+
}
|
|
9
|
+
export interface ChartGPTChart {
|
|
10
|
+
chartgpt_id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
type: string;
|
|
13
|
+
summary: string;
|
|
14
|
+
status: string;
|
|
15
|
+
}
|
|
16
|
+
export interface ChartGPTChartWithResults extends ChartGPTChart {
|
|
17
|
+
results: ChartGPTResult[];
|
|
18
|
+
}
|
|
19
|
+
export declare function useChartExecute(chartgpt_id: string): UseQueryResult<ChartGPTExecuteResponse, unknown>;
|
|
20
|
+
export declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
|
|
21
|
+
export declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
|
package/build/index.d.ts
CHANGED
|
@@ -1523,7 +1523,7 @@ declare namespace Checkout {
|
|
|
1523
1523
|
}[];
|
|
1524
1524
|
}[];
|
|
1525
1525
|
}
|
|
1526
|
-
export {
|
|
1526
|
+
export {};
|
|
1527
1527
|
}
|
|
1528
1528
|
|
|
1529
1529
|
declare namespace Reports {
|
|
@@ -1687,7 +1687,7 @@ declare namespace Notifications {
|
|
|
1687
1687
|
}
|
|
1688
1688
|
export interface IEmpty {
|
|
1689
1689
|
}
|
|
1690
|
-
export {
|
|
1690
|
+
export {};
|
|
1691
1691
|
}
|
|
1692
1692
|
|
|
1693
1693
|
declare namespace SmartRouting {
|
|
@@ -2001,7 +2001,7 @@ declare namespace SmartRouting {
|
|
|
2001
2001
|
export interface ThreeDSExemptionsResponse {
|
|
2002
2002
|
three_ds_exemptions: string[];
|
|
2003
2003
|
}
|
|
2004
|
-
export {
|
|
2004
|
+
export {};
|
|
2005
2005
|
}
|
|
2006
2006
|
|
|
2007
2007
|
declare namespace RoutingMonitors {
|
|
@@ -2037,7 +2037,7 @@ declare namespace RoutingMonitors {
|
|
|
2037
2037
|
updated_at?: string;
|
|
2038
2038
|
redistribution_active: boolean;
|
|
2039
2039
|
}
|
|
2040
|
-
export {
|
|
2040
|
+
export {};
|
|
2041
2041
|
}
|
|
2042
2042
|
|
|
2043
2043
|
declare namespace Team {
|
|
@@ -3760,7 +3760,7 @@ declare namespace Styling {
|
|
|
3760
3760
|
export interface Settings {
|
|
3761
3761
|
sdk_dynamic: boolean;
|
|
3762
3762
|
}
|
|
3763
|
-
export {
|
|
3763
|
+
export {};
|
|
3764
3764
|
}
|
|
3765
3765
|
|
|
3766
3766
|
declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, Styling.UpdateStylingThemeParams, unknown>;
|
|
@@ -5130,13 +5130,13 @@ declare class Api extends HttpClient {
|
|
|
5130
5130
|
createChartGPTChart<T>(payload: {
|
|
5131
5131
|
user_prompt: string;
|
|
5132
5132
|
}): Promise<AxiosResponse<T, any>>;
|
|
5133
|
-
deleteChartGPTChart<T>(
|
|
5134
|
-
patchChartGPTChart<T>(
|
|
5133
|
+
deleteChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
5134
|
+
patchChartGPTChart<T>(chartgpt_id: string, payload: {
|
|
5135
5135
|
type: string;
|
|
5136
5136
|
name: string;
|
|
5137
5137
|
}): Promise<AxiosResponse<T, any>>;
|
|
5138
|
+
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
5138
5139
|
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
5139
|
-
executeChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
5140
5140
|
}
|
|
5141
5141
|
|
|
5142
5142
|
declare class ApiSingleton extends Api {
|
|
@@ -5160,4 +5160,5 @@ declare enum ApiErrorCodes {
|
|
|
5160
5160
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5161
5161
|
}
|
|
5162
5162
|
|
|
5163
|
-
export { ALL_FEATURE_FLAGS, type AccountRoles, Accounts, type AllowlistMultiAccount, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, type BFFErrorResponse, BatchRefunds, type Blacklist, type ChangePaymentsWebhook, type ChargebacksCount, type ChargebacksVolume, Checkout, Cms, type Condition, Connection, type ConversionRateBody, type ConversionRateOverview, type ConversionRateOverviewFraud3ds, type ConversionRateParams, type ConversionRatePeriodicityRecord, type Cost, type CostPayload, type Countries, Country, type CreateChartGPTChartPayload, type CreateChartGPTChartResponse, DataReport, Developer, type ErrorChartGPTResponse, type ErrorProp, type ErrorRoutingAIResponse, type ErrorRoutingAIResponseData, type FeatureFlagsResult, type FirebaseUserSubscribe, type Fraud3dsCount, type Fraud3dsVolume, FraudScreening, type FraudScreeningCount, type FraudScreeningVolume, type GetApiLogsParams, type GetPaymentMethodsByProviderParams, type GetPaymentParams, type GetPaymentTransactionsParams, type GetPaymentsEvaluatedParams, type GetPaymentsParams, type GetPayoutDetail, type GetPayoutTransactionDetail, type GetReconciliationMetricParams, type GetTransactionDetailsParams, type GetTransactionDetailsV2Params, type GetTransactionsParams, type IChangePassword, type ICreateReportsRequest, type IKeyRoll, type IListScheduledReportsResponse, type InsightMetricParams, type Insights3dsConversionRate, type Insights3dsDeclineReasons, type Insights3dsFrictionlessVsChallenge, type Insights3dsResumeResponse, type InsightsChargebacksByCardBrand, type InsightsChargebacksByProviderAndCardBrand, type InsightsChargebacksByReason, type InsightsChargebacksDisputed, type InsightsChargebacksResumeResponse, type InsightsChargebacksStatusDistribution, type InsightsChargebacksWinRate, type InsightsFraudBody, type InsightsFraudConversionRateResponse, type InsightsFraudParams, type InsightsFraudScreeningResumeResponse, MFA, type MfaUserPayload, type MfaUserSubscribe, Notifications, OperationTransaction, Organization, OrganizationSettings, type PatchChartGPTChartPayload, type PathNotification, Payment, PaymentLinks, type PaymentMethodStyled, type PaymentsSettings, Payouts, type PeriodicityRecord, type PinnedSections, type PostBlackList, type ProviderStyled, type ReconAgendaProps, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, type RefundPdfResponse, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, type ThemeSettings, type TimeZoneCatalog, type TotalTimeline, type TransactionHistory, type UseGetAllReconciliationsAdvancementsProps, type UseGetAllReconciliationsAlertsProps, type UseGetAllReconciliationsFeesProps, type UseGetAllReconciliationsSalesProps, User, type UserInviteMultiaccountPayload, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useArchiveConnection, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePassword, useChangePasswordV2, useChangePaymentsWebhook, useChangeState, useChangeStatusBlackList, useChangeStatusItemBlackList, useChargebacksUpload, useConfirmedOtpForEnrollment, useConfirmedOtpMfa, useConversionRateOverview, useConversionRateOverviewFraud3ds, useCountRowsForReport, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateNotification, useCreateOperationTransaction, useCreatePaymentLinks, useCreateProductsByAccount, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReport, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDashboardInsights, useDashboardInsightsIsolated, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteConnection, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeam, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhook, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCredentials, useGetCredentialsMFA, useGetCredentialsValidatePassword, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysShowToken, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetIndividualMFAStatus, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccount, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMembers, useGetMembersV3, useGetMembersV4, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsAccount, useGetNotificationsCustomer, useGetNotificationsNumber, useGetNotificationsNumberMutation, useGetOrganization, useGetPayment, useGetPaymentAndTrxStatuses, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMethodsAndProvidersActive, useGetPaymentMethodsByProvider, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactions, useGetPaymentTransactionsDetails, useGetPaymentTransactionsLazy, useGetPaymentV2, useGetPaymentsByPaymentLink, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProductsByAccount, useGetProfile, useGetProofOfCancel, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSettlementsBody, useGetSettlementsHeader, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingTutorial, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSettings, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenForEnrollment, useGetTokenValidation, useGetTransactionDetails, useGetTransactionDetailsV2, useGetTransactionHistory, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTransactions, useGetValidateOpsgenieKey, useGetWebhookParams, useGetWebhookParamsV2, useGetWebhooks, useGetWebhooksV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetrics, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsers, useInviteUsersMultiaccount, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useLoginSSO, useNewPostConnection, useNewPostConnectionValidate, useOneBlackList, usePatchAccount, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlackListType, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRule, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginated, usePostMembersPaginatedV2, usePostMembersV4, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValidateOtp, usePostValidatePassword, usePostValideStatusConnection, usePostVelocityRules, usePostWebhook, usePostWebhookMultiAccount, usePostWebhookV2, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUser, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendOTPForMFA, useSendPaymentNotification, useSetCustodian, useSetRoles, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useSmartRoutingUpdateTutorial, useToggleMethod, useUnInviteUsers, useUnInviteUsersV2, useUnrollUser, useUnrollUserV2, useUpdateCheckoutPaymentMethods, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhook, useUpdateWebhookV2, useUploadBatchRefundsFile, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateConnection, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5163
|
+
export { ALL_FEATURE_FLAGS, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useArchiveConnection, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePassword, useChangePasswordV2, useChangePaymentsWebhook, useChangeState, useChangeStatusBlackList, useChangeStatusItemBlackList, useChargebacksUpload, useConfirmedOtpForEnrollment, useConfirmedOtpMfa, useConversionRateOverview, useConversionRateOverviewFraud3ds, useCountRowsForReport, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateNotification, useCreateOperationTransaction, useCreatePaymentLinks, useCreateProductsByAccount, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReport, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDashboardInsights, useDashboardInsightsIsolated, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteConnection, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeam, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhook, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCredentials, useGetCredentialsMFA, useGetCredentialsValidatePassword, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysShowToken, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetIndividualMFAStatus, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccount, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMembers, useGetMembersV3, useGetMembersV4, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsAccount, useGetNotificationsCustomer, useGetNotificationsNumber, useGetNotificationsNumberMutation, useGetOrganization, useGetPayment, useGetPaymentAndTrxStatuses, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMethodsAndProvidersActive, useGetPaymentMethodsByProvider, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactions, useGetPaymentTransactionsDetails, useGetPaymentTransactionsLazy, useGetPaymentV2, useGetPaymentsByPaymentLink, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProductsByAccount, useGetProfile, useGetProofOfCancel, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSettlementsBody, useGetSettlementsHeader, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingTutorial, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSettings, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenForEnrollment, useGetTokenValidation, useGetTransactionDetails, useGetTransactionDetailsV2, useGetTransactionHistory, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTransactions, useGetValidateOpsgenieKey, useGetWebhookParams, useGetWebhookParamsV2, useGetWebhooks, useGetWebhooksV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetrics, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsers, useInviteUsersMultiaccount, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useLoginSSO, useNewPostConnection, useNewPostConnectionValidate, useOneBlackList, usePatchAccount, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlackListType, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRule, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginated, usePostMembersPaginatedV2, usePostMembersV4, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValidateOtp, usePostValidatePassword, usePostValideStatusConnection, usePostVelocityRules, usePostWebhook, usePostWebhookMultiAccount, usePostWebhookV2, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUser, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendOTPForMFA, useSendPaymentNotification, useSetCustodian, useSetRoles, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useSmartRoutingUpdateTutorial, useToggleMethod, useUnInviteUsers, useUnInviteUsersV2, useUnrollUser, useUnrollUserV2, useUpdateCheckoutPaymentMethods, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhook, useUpdateWebhookV2, useUploadBatchRefundsFile, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateConnection, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5164
|
+
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateChartGPTChartPayload, CreateChartGPTChartResponse, 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, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchChartGPTChartPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|