@yuno-payments/dashboard-api-mfe 0.34.30 → 0.34.34-beta.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.
- package/build/cjs/index.js +6 -212
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +11 -1
- 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/mutations/chartgpt/chartgpt.mutation.d.ts +24 -0
- package/build/cjs/types/mutations/chartgpt/index.d.ts +1 -0
- package/build/cjs/types/mutations/index.d.ts +1 -0
- package/build/cjs/types/queries/chartgpt/chartgpt.query.d.ts +3 -0
- package/build/cjs/types/queries/chartgpt/index.d.ts +1 -0
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +2 -1
- package/build/esm/index.js +6 -212
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +11 -1
- 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/mutations/chartgpt/chartgpt.mutation.d.ts +24 -0
- package/build/esm/types/mutations/chartgpt/index.d.ts +1 -0
- package/build/esm/types/mutations/index.d.ts +1 -0
- package/build/esm/types/queries/chartgpt/chartgpt.query.d.ts +3 -0
- package/build/esm/types/queries/chartgpt/index.d.ts +1 -0
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +2 -1
- package/build/index.d.ts +41 -9
- package/package.json +2 -2
|
@@ -577,6 +577,16 @@ export declare class Api extends HttpClient {
|
|
|
577
577
|
getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
|
|
578
578
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
579
579
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
580
|
-
get3DSExemptions(): Promise<AxiosResponse<
|
|
580
|
+
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
581
|
+
createChartGPTChart<T>(payload: {
|
|
582
|
+
user_prompt: string;
|
|
583
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
584
|
+
deleteChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
585
|
+
patchChartGPTChart<T>(chartGptId: string, payload: {
|
|
586
|
+
type: string;
|
|
587
|
+
name: string;
|
|
588
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
589
|
+
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
590
|
+
executeChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
581
591
|
}
|
|
582
592
|
export {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const worker:
|
|
1
|
+
export declare const worker: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const handlers:
|
|
1
|
+
export declare const handlers: any[];
|
|
@@ -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: any;
|
|
8
|
+
export declare const newOverviewMetricsHandlers: any[];
|
|
9
|
+
export declare const overviewMetricsHandlers: any[];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
export interface CreateChartGPTChartPayload {
|
|
4
|
+
user_prompt: string;
|
|
5
|
+
}
|
|
6
|
+
export interface CreateChartGPTChartResponse {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
}
|
|
9
|
+
export interface ErrorChartGPTResponse {
|
|
10
|
+
errors: {
|
|
11
|
+
message: string;
|
|
12
|
+
code: string;
|
|
13
|
+
params?: string[];
|
|
14
|
+
param?: string;
|
|
15
|
+
}[];
|
|
16
|
+
}
|
|
17
|
+
export interface PatchChartGPTChartPayload {
|
|
18
|
+
chartgpt_id: string;
|
|
19
|
+
type: string;
|
|
20
|
+
name: string;
|
|
21
|
+
}
|
|
22
|
+
export declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
23
|
+
export declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
|
24
|
+
export declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chartgpt.mutation';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chartgpt.query';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { SmartRouting } from '../../types';
|
|
3
|
+
import { AxiosResponse } from 'axios';
|
|
3
4
|
export interface ErrorProp {
|
|
4
5
|
name?: string;
|
|
5
6
|
}
|
|
@@ -25,4 +26,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
25
26
|
conditionType: string;
|
|
26
27
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
27
28
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
28
|
-
export declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse
|
|
29
|
+
export declare function use3DSExemptions(): UseQueryResult<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
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>;
|
|
@@ -4105,6 +4105,29 @@ interface ErrorRoutingAIResponse {
|
|
|
4105
4105
|
}
|
|
4106
4106
|
declare function useAICreateWorkflow(organizationCode: string, options?: Omit<UseMutationOptions<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate>;
|
|
4107
4107
|
|
|
4108
|
+
interface CreateChartGPTChartPayload {
|
|
4109
|
+
user_prompt: string;
|
|
4110
|
+
}
|
|
4111
|
+
interface CreateChartGPTChartResponse {
|
|
4112
|
+
[key: string]: any;
|
|
4113
|
+
}
|
|
4114
|
+
interface ErrorChartGPTResponse {
|
|
4115
|
+
errors: {
|
|
4116
|
+
message: string;
|
|
4117
|
+
code: string;
|
|
4118
|
+
params?: string[];
|
|
4119
|
+
param?: string;
|
|
4120
|
+
}[];
|
|
4121
|
+
}
|
|
4122
|
+
interface PatchChartGPTChartPayload {
|
|
4123
|
+
chartgpt_id: string;
|
|
4124
|
+
type: string;
|
|
4125
|
+
name: string;
|
|
4126
|
+
}
|
|
4127
|
+
declare function useCreateChart(): UseMutationResult<CreateChartGPTChartResponse, AxiosError<ErrorChartGPTResponse>, CreateChartGPTChartPayload>;
|
|
4128
|
+
declare function useDeleteChart(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, string>;
|
|
4129
|
+
declare function usePatchChartName(): UseMutationResult<void, AxiosError<ErrorChartGPTResponse>, PatchChartGPTChartPayload>;
|
|
4130
|
+
|
|
4108
4131
|
declare namespace AllowedList {
|
|
4109
4132
|
interface Request {
|
|
4110
4133
|
ip_address: string;
|
|
@@ -4309,7 +4332,7 @@ declare function useGetSmartRoutingSearchConditionValues({ text, conditionType,
|
|
|
4309
4332
|
conditionType: string;
|
|
4310
4333
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
4311
4334
|
declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
4312
|
-
declare function use3DSExemptions(): UseQueryResult<SmartRouting.ThreeDSExemptionsResponse
|
|
4335
|
+
declare function use3DSExemptions(): UseQueryResult<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
4313
4336
|
|
|
4314
4337
|
declare function useGetRoutingMonitorsTemplates(organizationCode: string): UseQueryResult<RoutingMonitors.TemplateSelector[], unknown>;
|
|
4315
4338
|
declare function useGetRoutingMonitorsTemplate(code: string, organizationCode: string): UseQueryResult<RoutingMonitors.Template, unknown>;
|
|
@@ -5103,7 +5126,17 @@ declare class Api extends HttpClient {
|
|
|
5103
5126
|
getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
|
|
5104
5127
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
5105
5128
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
5106
|
-
get3DSExemptions(): Promise<AxiosResponse<
|
|
5129
|
+
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
5130
|
+
createChartGPTChart<T>(payload: {
|
|
5131
|
+
user_prompt: string;
|
|
5132
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
5133
|
+
deleteChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
5134
|
+
patchChartGPTChart<T>(chartGptId: string, payload: {
|
|
5135
|
+
type: string;
|
|
5136
|
+
name: string;
|
|
5137
|
+
}): Promise<AxiosResponse<T, any>>;
|
|
5138
|
+
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
5139
|
+
executeChartGPTChart<T>(chartGptId: string): Promise<AxiosResponse<T, any>>;
|
|
5107
5140
|
}
|
|
5108
5141
|
|
|
5109
5142
|
declare class ApiSingleton extends Api {
|
|
@@ -5127,5 +5160,4 @@ declare enum ApiErrorCodes {
|
|
|
5127
5160
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5128
5161
|
}
|
|
5129
5162
|
|
|
5130
|
-
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, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateNotification, useCreateOperationTransaction, useCreatePaymentLinks, useCreateProductsByAccount, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReport, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDashboardInsights, useDashboardInsightsIsolated, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListItem, useDeleteBlackListType, useDeleteBlockListItem, 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, 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 };
|
|
5131
|
-
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, 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, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.34-beta.1",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -105,4 +105,4 @@
|
|
|
105
105
|
"ts-loader": "^9.4.4",
|
|
106
106
|
"uuid": "^11.1.0"
|
|
107
107
|
}
|
|
108
|
-
}
|
|
108
|
+
}
|