@yuno-payments/dashboard-api-mfe 0.34.27-beta.1 → 0.34.28
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 +4 -4
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +7 -4
- package/build/cjs/types/mutations/batch-refunds/batch-refunds.mutation.d.ts +11 -1
- package/build/cjs/types/queries/feature-flags/index.d.ts +3 -2
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +1 -0
- package/build/cjs/types/types/batch-refunds/batch-refunds.d.ts +6 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +7 -4
- package/build/esm/types/mutations/batch-refunds/batch-refunds.mutation.d.ts +11 -1
- package/build/esm/types/queries/feature-flags/index.d.ts +3 -2
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +1 -0
- package/build/esm/types/types/batch-refunds/batch-refunds.d.ts +6 -0
- package/build/index.d.ts +27 -6
- package/package.json +3 -2
- /package/build/cjs/types/queries/feature-flags/{feature.test.d.ts → feature-flags.test.d.ts} +0 -0
- /package/build/esm/types/queries/feature-flags/{feature.test.d.ts → feature-flags.test.d.ts} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
1
|
+
import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
2
2
|
import { HttpClient } from '../lib/http-client';
|
|
3
3
|
import { GetPaymentsParams, GetPaymentParams, GetPaymentTransactionsParams, GetTransactionDetailsParams, GetPaymentMethodsByProviderParams, GetReconciliationMetricParams, FirebaseUserSubscribe, PathNotification, TimeZoneCatalog, GetTransactionDetailsV2Params, MfaUserSubscribe, UserInviteMultiaccountPayload, GetTransactionsParams, PaymentsSettings, GetPayoutDetail, GetPayoutTransactionDetail, PinnedSections, MfaUserPayload, ThemeSettings } from './api.types';
|
|
4
|
-
import { Audit, OperationTransaction, Organization, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType,
|
|
4
|
+
import { Audit, OperationTransaction, Organization, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, Payment, InsightsFraudParams, InsightsFraudBody } from '../types';
|
|
5
5
|
import { ConversionRateParams, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds } from '../types/data-report/conversion-rate.types';
|
|
6
6
|
import { RoutingMonitors } from '../types/routing-monitors';
|
|
7
7
|
import { ChangePaymentsWebhook } from '../mutations';
|
|
@@ -511,9 +511,9 @@ export declare class Api extends HttpClient {
|
|
|
511
511
|
promise: Promise<AxiosResponse<T, any>>;
|
|
512
512
|
cancel: () => void;
|
|
513
513
|
};
|
|
514
|
-
batchRefundByFile({ payload, }: {
|
|
514
|
+
batchRefundByFile<T>({ payload, }: {
|
|
515
515
|
payload: any;
|
|
516
|
-
}): Promise<AxiosResponse<
|
|
516
|
+
}): Promise<AxiosResponse<T, AxiosError>>;
|
|
517
517
|
uploadBatchRefundsV2<T>({ payload }: {
|
|
518
518
|
payload: any;
|
|
519
519
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -522,6 +522,8 @@ export declare class Api extends HttpClient {
|
|
|
522
522
|
handleSetProgress: any;
|
|
523
523
|
}): Promise<AxiosResponse<T, any>>;
|
|
524
524
|
getBatchRefunds<T>(limit: any, offset: any): Promise<AxiosResponse<T, any>>;
|
|
525
|
+
getBatchRefundProcessedFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
526
|
+
getBatchRefundUserFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
525
527
|
getMFAConfig<T>({ organizationCode }: {
|
|
526
528
|
organizationCode: any;
|
|
527
529
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -575,5 +577,6 @@ export declare class Api extends HttpClient {
|
|
|
575
577
|
getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
|
|
576
578
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
577
579
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
580
|
+
get3DSExcemptions(): Promise<AxiosResponse<string[]>>;
|
|
578
581
|
}
|
|
579
582
|
export {};
|
|
@@ -16,10 +16,20 @@ export declare function useUploadBatchRefundsFileV2({ fileName, onSuccess, onErr
|
|
|
16
16
|
export declare function useUploadBatchRefundsFile({ handleSetProgress, }: {
|
|
17
17
|
handleSetProgress: (progress: number) => void;
|
|
18
18
|
}): UseMutationResult<any, unknown, BatchRefunds.UploadRequest, unknown>;
|
|
19
|
-
export declare function useUploadBatchRefundsV2(): UseMutationResult<BatchRefunds.
|
|
19
|
+
export declare function useUploadBatchRefundsV2(): UseMutationResult<BatchRefunds.ListBatchRefunds[], AxiosError<{
|
|
20
20
|
data: {
|
|
21
21
|
code: string;
|
|
22
22
|
message: string;
|
|
23
23
|
};
|
|
24
24
|
}, any>, BatchRefunds.UploadRequest, unknown>;
|
|
25
25
|
export declare function usePostBatchRefundByFile(): UseMutationResult<BatchRefunds.ListBatchRefunds[], unknown, BatchRefunds.BatchRefundByFile, unknown>;
|
|
26
|
+
export declare function useGetBatchRefundProcessedFileDownload(): UseMutationResult<BatchRefunds.BatchRefundByFileResponse, AxiosError<unknown, any>, {
|
|
27
|
+
batchRefundId: string;
|
|
28
|
+
organizationCode: string;
|
|
29
|
+
accountCode: string;
|
|
30
|
+
}, unknown>;
|
|
31
|
+
export declare function useGetBatchRefundUserFileDownload(): UseMutationResult<BatchRefunds.BatchRefundUserFileResponse, AxiosError<unknown, any>, {
|
|
32
|
+
batchRefundId: string;
|
|
33
|
+
organizationCode: string;
|
|
34
|
+
accountCode: string;
|
|
35
|
+
}, unknown>;
|
|
@@ -4,5 +4,6 @@ export interface FeatureFlagsResult {
|
|
|
4
4
|
result: boolean;
|
|
5
5
|
}
|
|
6
6
|
export declare function useFeatureFlags(data: FeatureFlags.Request): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
7
|
-
export declare
|
|
8
|
-
export declare function
|
|
7
|
+
export declare const ALL_FEATURE_FLAGS: string[];
|
|
8
|
+
export declare function useAllFeatureFlags(body: FeatureFlags.RequestAll): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
9
|
+
export declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlagsResult>;
|
|
@@ -25,3 +25,4 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
25
25
|
conditionType: string;
|
|
26
26
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
27
27
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
28
|
+
export declare function use3DSExcemptions(): UseQueryResult<string[]>;
|
|
@@ -29,4 +29,10 @@ export declare namespace BatchRefunds {
|
|
|
29
29
|
interface BatchRefundByFile {
|
|
30
30
|
file_name: string;
|
|
31
31
|
}
|
|
32
|
+
interface BatchRefundByFileResponse {
|
|
33
|
+
download_file_url: string;
|
|
34
|
+
}
|
|
35
|
+
interface BatchRefundUserFileResponse {
|
|
36
|
+
uploaded_file_url: string;
|
|
37
|
+
}
|
|
32
38
|
}
|
package/build/index.d.ts
CHANGED
|
@@ -2406,6 +2406,12 @@ declare namespace BatchRefunds {
|
|
|
2406
2406
|
interface BatchRefundByFile {
|
|
2407
2407
|
file_name: string;
|
|
2408
2408
|
}
|
|
2409
|
+
interface BatchRefundByFileResponse {
|
|
2410
|
+
download_file_url: string;
|
|
2411
|
+
}
|
|
2412
|
+
interface BatchRefundUserFileResponse {
|
|
2413
|
+
uploaded_file_url: string;
|
|
2414
|
+
}
|
|
2409
2415
|
}
|
|
2410
2416
|
|
|
2411
2417
|
declare namespace Reconciliation {
|
|
@@ -3986,13 +3992,23 @@ declare function useUploadBatchRefundsFileV2({ fileName, onSuccess, onError, }:
|
|
|
3986
3992
|
declare function useUploadBatchRefundsFile({ handleSetProgress, }: {
|
|
3987
3993
|
handleSetProgress: (progress: number) => void;
|
|
3988
3994
|
}): UseMutationResult<any, unknown, BatchRefunds.UploadRequest, unknown>;
|
|
3989
|
-
declare function useUploadBatchRefundsV2(): UseMutationResult<BatchRefunds.
|
|
3995
|
+
declare function useUploadBatchRefundsV2(): UseMutationResult<BatchRefunds.ListBatchRefunds[], AxiosError<{
|
|
3990
3996
|
data: {
|
|
3991
3997
|
code: string;
|
|
3992
3998
|
message: string;
|
|
3993
3999
|
};
|
|
3994
4000
|
}, any>, BatchRefunds.UploadRequest, unknown>;
|
|
3995
4001
|
declare function usePostBatchRefundByFile(): UseMutationResult<BatchRefunds.ListBatchRefunds[], unknown, BatchRefunds.BatchRefundByFile, unknown>;
|
|
4002
|
+
declare function useGetBatchRefundProcessedFileDownload(): UseMutationResult<BatchRefunds.BatchRefundByFileResponse, AxiosError<unknown, any>, {
|
|
4003
|
+
batchRefundId: string;
|
|
4004
|
+
organizationCode: string;
|
|
4005
|
+
accountCode: string;
|
|
4006
|
+
}, unknown>;
|
|
4007
|
+
declare function useGetBatchRefundUserFileDownload(): UseMutationResult<BatchRefunds.BatchRefundUserFileResponse, AxiosError<unknown, any>, {
|
|
4008
|
+
batchRefundId: string;
|
|
4009
|
+
organizationCode: string;
|
|
4010
|
+
accountCode: string;
|
|
4011
|
+
}, unknown>;
|
|
3996
4012
|
|
|
3997
4013
|
declare function useUploadFileS3ClientBatchRefunds(): {
|
|
3998
4014
|
mutation: UseMutationResult<S3Client.UploadS3Response, unknown, S3Client.PayloadV2, unknown>;
|
|
@@ -4290,6 +4306,7 @@ declare function useGetSmartRoutingSearchConditionValues({ text, conditionType,
|
|
|
4290
4306
|
conditionType: string;
|
|
4291
4307
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
4292
4308
|
declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
4309
|
+
declare function use3DSExcemptions(): UseQueryResult<string[]>;
|
|
4293
4310
|
|
|
4294
4311
|
declare function useGetRoutingMonitorsTemplates(organizationCode: string): UseQueryResult<RoutingMonitors.TemplateSelector[], unknown>;
|
|
4295
4312
|
declare function useGetRoutingMonitorsTemplate(code: string, organizationCode: string): UseQueryResult<RoutingMonitors.Template, unknown>;
|
|
@@ -4461,8 +4478,9 @@ interface FeatureFlagsResult {
|
|
|
4461
4478
|
result: boolean;
|
|
4462
4479
|
}
|
|
4463
4480
|
declare function useFeatureFlags(data: FeatureFlags.Request): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
4464
|
-
declare
|
|
4465
|
-
declare function
|
|
4481
|
+
declare const ALL_FEATURE_FLAGS: string[];
|
|
4482
|
+
declare function useAllFeatureFlags(body: FeatureFlags.RequestAll): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
4483
|
+
declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlagsResult>;
|
|
4466
4484
|
|
|
4467
4485
|
declare function useGetAuditEvents(params: Audit.AuditEventsParams): UseQueryResult<Audit.AuditEvents, AxiosError>;
|
|
4468
4486
|
declare function useGetAuditMonitorEventDetail(id: number | null): UseQueryResult<Audit.AuditMonitorDetail, AxiosError>;
|
|
@@ -5016,9 +5034,9 @@ declare class Api extends HttpClient {
|
|
|
5016
5034
|
promise: Promise<AxiosResponse<T, any>>;
|
|
5017
5035
|
cancel: () => void;
|
|
5018
5036
|
};
|
|
5019
|
-
batchRefundByFile({ payload, }: {
|
|
5037
|
+
batchRefundByFile<T>({ payload, }: {
|
|
5020
5038
|
payload: any;
|
|
5021
|
-
}): Promise<AxiosResponse<
|
|
5039
|
+
}): Promise<AxiosResponse<T, AxiosError>>;
|
|
5022
5040
|
uploadBatchRefundsV2<T>({ payload }: {
|
|
5023
5041
|
payload: any;
|
|
5024
5042
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -5027,6 +5045,8 @@ declare class Api extends HttpClient {
|
|
|
5027
5045
|
handleSetProgress: any;
|
|
5028
5046
|
}): Promise<AxiosResponse<T, any>>;
|
|
5029
5047
|
getBatchRefunds<T>(limit: any, offset: any): Promise<AxiosResponse<T, any>>;
|
|
5048
|
+
getBatchRefundProcessedFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
5049
|
+
getBatchRefundUserFileDownload<T>(batchRefundId: string, organizationCode: string, accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
5030
5050
|
getMFAConfig<T>({ organizationCode }: {
|
|
5031
5051
|
organizationCode: any;
|
|
5032
5052
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -5080,6 +5100,7 @@ declare class Api extends HttpClient {
|
|
|
5080
5100
|
getInsightsConversionRateOverview(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverview>>;
|
|
5081
5101
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
5082
5102
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
5103
|
+
get3DSExcemptions(): Promise<AxiosResponse<string[]>>;
|
|
5083
5104
|
}
|
|
5084
5105
|
|
|
5085
5106
|
declare class ApiSingleton extends Api {
|
|
@@ -5103,5 +5124,5 @@ declare enum ApiErrorCodes {
|
|
|
5103
5124
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5104
5125
|
}
|
|
5105
5126
|
|
|
5106
|
-
export { 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, useAICreateWorkflow, 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,
|
|
5127
|
+
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, use3DSExcemptions, 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 };
|
|
5107
5128
|
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 };
|
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.28",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"watch-tests": "cross-env BABEL_ENV=test jest --watch",
|
|
31
31
|
"prepare": "husky install",
|
|
32
32
|
"coverage": "cross-env BABEL_ENV=test jest --coverage",
|
|
33
|
-
"build:types": "tsc"
|
|
33
|
+
"build:types": "tsc",
|
|
34
|
+
"publish": "npm publish --access public"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
37
|
"@babel/core": "^7.15.0",
|
/package/build/cjs/types/queries/feature-flags/{feature.test.d.ts → feature-flags.test.d.ts}
RENAMED
|
File without changes
|
/package/build/esm/types/queries/feature-flags/{feature.test.d.ts → feature-flags.test.d.ts}
RENAMED
|
File without changes
|