@yuno-payments/dashboard-api-mfe 1.2.4-beta.1 → 1.2.8
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 +39 -205
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +2 -0
- package/build/cjs/types/api/api.types.d.ts +2 -0
- package/build/cjs/types/mutations/security/security.mutation.d.ts +2 -0
- package/build/cjs/types/types/installments/installments.d.ts +7 -2
- package/build/cjs/types/types/user/user.d.ts +9 -0
- package/build/esm/index.js +39 -205
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -0
- package/build/esm/types/api/api.types.d.ts +2 -0
- package/build/esm/types/mutations/security/security.mutation.d.ts +2 -0
- package/build/esm/types/types/installments/installments.d.ts +7 -2
- package/build/esm/types/types/user/user.d.ts +9 -0
- package/build/index.d.ts +23 -3
- package/package.json +1 -5
|
@@ -383,6 +383,8 @@ export declare class Api extends HttpClient {
|
|
|
383
383
|
pageSize?: number;
|
|
384
384
|
}): Promise<AxiosResponse<T>>;
|
|
385
385
|
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
386
|
+
workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
|
|
387
|
+
workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
|
|
386
388
|
getCardBrands<T>(): Promise<AxiosResponse<T>>;
|
|
387
389
|
getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
|
|
388
390
|
getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
|
|
@@ -6,6 +6,7 @@ export interface GetPaymentsParams {
|
|
|
6
6
|
enabled?: boolean;
|
|
7
7
|
account_code?: string;
|
|
8
8
|
payment_link_code?: string;
|
|
9
|
+
recipient_id?: string;
|
|
9
10
|
metadata?: Array<{
|
|
10
11
|
field: string;
|
|
11
12
|
formatType: 'TEXT' | 'NUMBER';
|
|
@@ -133,6 +134,7 @@ export interface GetTransactionsParams {
|
|
|
133
134
|
page?: number;
|
|
134
135
|
size?: number;
|
|
135
136
|
account_code?: string;
|
|
137
|
+
recipient_id?: string;
|
|
136
138
|
metadata?: Array<{
|
|
137
139
|
field: string;
|
|
138
140
|
formatType: 'TEXT' | 'NUMBER';
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import { User } from '../../types';
|
|
2
2
|
import { UseMutationResult } from '@tanstack/react-query';
|
|
3
3
|
export declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordResponse, User.FailureReason>;
|
|
4
|
+
export declare function useWorkosPasswordReset(): UseMutationResult<User.WorkosPasswordResetResponse, User.FailureReason, User.WorkosPasswordResetRequest>;
|
|
5
|
+
export declare function useWorkosAdminPortal(): UseMutationResult<User.WorkosAdminPortalResponse, User.FailureReason>;
|
|
@@ -108,13 +108,18 @@ export declare namespace Installments {
|
|
|
108
108
|
}
|
|
109
109
|
interface BulkCreateInstallmentsPlansResponse {
|
|
110
110
|
created: InstallmentsPlan[];
|
|
111
|
-
errors
|
|
111
|
+
errors?: string[];
|
|
112
112
|
}
|
|
113
113
|
interface BulkDeleteInstallmentsPlansRequest {
|
|
114
114
|
codes: string[];
|
|
115
115
|
}
|
|
116
|
+
interface BulkDeleteError {
|
|
117
|
+
code: string;
|
|
118
|
+
error_code: string;
|
|
119
|
+
message?: string;
|
|
120
|
+
}
|
|
116
121
|
interface BulkDeleteInstallmentsPlansResponse {
|
|
117
122
|
deleted: string[];
|
|
118
|
-
errors?:
|
|
123
|
+
errors?: BulkDeleteError[];
|
|
119
124
|
}
|
|
120
125
|
}
|
|
@@ -116,6 +116,15 @@ export declare namespace User {
|
|
|
116
116
|
id_token: string;
|
|
117
117
|
token_type: string;
|
|
118
118
|
}
|
|
119
|
+
interface WorkosPasswordResetRequest {
|
|
120
|
+
email: string;
|
|
121
|
+
}
|
|
122
|
+
interface WorkosPasswordResetResponse {
|
|
123
|
+
success: boolean;
|
|
124
|
+
}
|
|
125
|
+
interface WorkosAdminPortalResponse {
|
|
126
|
+
link: string;
|
|
127
|
+
}
|
|
119
128
|
interface ICustomizedApiKeysMembers {
|
|
120
129
|
code: string;
|
|
121
130
|
first_name: string;
|
package/build/index.d.ts
CHANGED
|
@@ -199,6 +199,7 @@ interface GetPaymentsParams {
|
|
|
199
199
|
enabled?: boolean;
|
|
200
200
|
account_code?: string;
|
|
201
201
|
payment_link_code?: string;
|
|
202
|
+
recipient_id?: string;
|
|
202
203
|
metadata?: Array<{
|
|
203
204
|
field: string;
|
|
204
205
|
formatType: 'TEXT' | 'NUMBER';
|
|
@@ -326,6 +327,7 @@ interface GetTransactionsParams {
|
|
|
326
327
|
page?: number;
|
|
327
328
|
size?: number;
|
|
328
329
|
account_code?: string;
|
|
330
|
+
recipient_id?: string;
|
|
329
331
|
metadata?: Array<{
|
|
330
332
|
field: string;
|
|
331
333
|
formatType: 'TEXT' | 'NUMBER';
|
|
@@ -1518,6 +1520,15 @@ declare namespace User {
|
|
|
1518
1520
|
id_token: string;
|
|
1519
1521
|
token_type: string;
|
|
1520
1522
|
}
|
|
1523
|
+
interface WorkosPasswordResetRequest {
|
|
1524
|
+
email: string;
|
|
1525
|
+
}
|
|
1526
|
+
interface WorkosPasswordResetResponse {
|
|
1527
|
+
success: boolean;
|
|
1528
|
+
}
|
|
1529
|
+
interface WorkosAdminPortalResponse {
|
|
1530
|
+
link: string;
|
|
1531
|
+
}
|
|
1521
1532
|
interface ICustomizedApiKeysMembers {
|
|
1522
1533
|
code: string;
|
|
1523
1534
|
first_name: string;
|
|
@@ -5201,14 +5212,19 @@ declare namespace Installments {
|
|
|
5201
5212
|
}
|
|
5202
5213
|
interface BulkCreateInstallmentsPlansResponse {
|
|
5203
5214
|
created: InstallmentsPlan[];
|
|
5204
|
-
errors
|
|
5215
|
+
errors?: string[];
|
|
5205
5216
|
}
|
|
5206
5217
|
interface BulkDeleteInstallmentsPlansRequest {
|
|
5207
5218
|
codes: string[];
|
|
5208
5219
|
}
|
|
5220
|
+
interface BulkDeleteError {
|
|
5221
|
+
code: string;
|
|
5222
|
+
error_code: string;
|
|
5223
|
+
message?: string;
|
|
5224
|
+
}
|
|
5209
5225
|
interface BulkDeleteInstallmentsPlansResponse {
|
|
5210
5226
|
deleted: string[];
|
|
5211
|
-
errors?:
|
|
5227
|
+
errors?: BulkDeleteError[];
|
|
5212
5228
|
}
|
|
5213
5229
|
}
|
|
5214
5230
|
|
|
@@ -5356,6 +5372,8 @@ declare function useUpdateOrganizationStatus(): _tanstack_react_query.UseMutatio
|
|
|
5356
5372
|
declare function useValidateOrgName(): _tanstack_react_query.UseMutationResult<void, unknown, string, unknown>;
|
|
5357
5373
|
|
|
5358
5374
|
declare function useChangePasswordV2(): UseMutationResult<User.ChangePasswordResponse, User.FailureReason>;
|
|
5375
|
+
declare function useWorkosPasswordReset(): UseMutationResult<User.WorkosPasswordResetResponse, User.FailureReason, User.WorkosPasswordResetRequest>;
|
|
5376
|
+
declare function useWorkosAdminPortal(): UseMutationResult<User.WorkosAdminPortalResponse, User.FailureReason>;
|
|
5359
5377
|
|
|
5360
5378
|
declare function useUpdateProfile({ onSuccessCallback, }: {
|
|
5361
5379
|
onSuccessCallback?: () => void;
|
|
@@ -6941,6 +6959,8 @@ declare class Api extends HttpClient {
|
|
|
6941
6959
|
pageSize?: number;
|
|
6942
6960
|
}): Promise<AxiosResponse<T>>;
|
|
6943
6961
|
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
6962
|
+
workosPasswordReset<T>(body: any): Promise<AxiosResponse<T>>;
|
|
6963
|
+
workosAdminPortal<T>(): Promise<AxiosResponse<T>>;
|
|
6944
6964
|
getCardBrands<T>(): Promise<AxiosResponse<T>>;
|
|
6945
6965
|
getPaymentFilters<T>(section: PaymentFiltersSection): Promise<AxiosResponse<T>>;
|
|
6946
6966
|
getPaymentMetricsFilters<T>(): Promise<AxiosResponse<T>>;
|
|
@@ -7217,5 +7237,5 @@ declare const useOrganizationCode: () => any;
|
|
|
7217
7237
|
|
|
7218
7238
|
declare const useAccountCode: () => any;
|
|
7219
7239
|
|
|
7220
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
7240
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePauseSubscription, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostApiLogs, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostCredentialsValidatePasswordRegularUser, usePostCredentialsWithOtpMfa, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostNetworkTokensOnboarding, usePostOrganizationConfigs, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, usePutOrganizationConfigsByAccount, useRecoveredPaymentsByDay, useRecoveredTPVByDay, useRescheduleSubscription, useResendWebhooks, useResumeSubscription, useRetryDuplicateAccount, useSaveVersion, useSearchInstallmentsPlans, useSearchScheduleById, useSearchSchedules, useSearchTemplateById, useSearchTemplates, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useStartUserExport, useSubmitChartFeedback, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset };
|
|
7221
7241
|
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetChartFeedbackParams, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.8",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@babel/core": "^7.15.0",
|
|
39
|
-
"@babel/eslint-parser": "^7.15.0",
|
|
40
39
|
"@babel/plugin-transform-runtime": "^7.15.0",
|
|
41
40
|
"@babel/preset-env": "^7.15.0",
|
|
42
41
|
"@babel/preset-react": "^7.14.5",
|
|
@@ -68,16 +67,13 @@
|
|
|
68
67
|
"dotenv-webpack": "^7.1.0",
|
|
69
68
|
"eslint": "^9.39.2",
|
|
70
69
|
"eslint-config-prettier": "^8.3.0",
|
|
71
|
-
"eslint-config-ts-react-important-stuff": "^3.0.0",
|
|
72
70
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
73
|
-
"eslint-plugin-prettier": "^3.4.1",
|
|
74
71
|
"eslint-plugin-react": "^7.37.5",
|
|
75
72
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
76
73
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
77
74
|
"husky": "^7.0.2",
|
|
78
75
|
"identity-obj-proxy": "^3.0.0",
|
|
79
76
|
"jest": "^29.7.0",
|
|
80
|
-
"jest-cli": "^27.0.6",
|
|
81
77
|
"jest-environment-jsdom": "^29.7.0",
|
|
82
78
|
"jest-html-reporters": "^3.1.7",
|
|
83
79
|
"msw": "^2.8.2",
|