@yuno-payments/dashboard-api-mfe 0.36.5 → 0.36.15
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 +7 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +7 -4
- package/build/cjs/types/msw/handlers/insights.d.ts +1 -0
- package/build/cjs/types/msw/handlers/payments.d.ts +1 -0
- package/build/cjs/types/msw/mocks/payments/payments.mock.d.ts +92 -0
- package/build/cjs/types/msw/mocks/payments/transaction-details.mock.d.ts +579 -0
- package/build/cjs/types/mutations/ai/ai.mutation.d.ts +2 -1
- package/build/cjs/types/queries/data-report/data-report.query.d.ts +1 -1
- package/build/cjs/types/queries/feature-flags/index.d.ts +1 -2
- package/build/cjs/types/queries/index.d.ts +1 -0
- package/build/cjs/types/queries/translation/index.d.ts +1 -0
- package/build/cjs/types/queries/translation/translation.query.d.ts +5 -0
- package/build/cjs/types/queries/users/users.query.d.ts +1 -0
- package/build/cjs/types/types/ai/ai.d.ts +24 -0
- package/build/cjs/types/types/ai/index.d.ts +1 -0
- package/build/cjs/types/types/index.d.ts +2 -0
- package/build/cjs/types/types/payment/payment.d.ts +3 -1
- package/build/cjs/types/types/translation/index.d.ts +1 -0
- package/build/cjs/types/types/translation/translation.d.ts +8 -0
- package/build/cjs/types/types/user/user.d.ts +3 -0
- package/build/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +7 -4
- package/build/esm/types/msw/handlers/insights.d.ts +1 -0
- package/build/esm/types/msw/handlers/payments.d.ts +1 -0
- package/build/esm/types/msw/mocks/payments/payments.mock.d.ts +92 -0
- package/build/esm/types/msw/mocks/payments/transaction-details.mock.d.ts +579 -0
- package/build/esm/types/mutations/ai/ai.mutation.d.ts +2 -1
- package/build/esm/types/queries/data-report/data-report.query.d.ts +1 -1
- package/build/esm/types/queries/feature-flags/index.d.ts +1 -2
- package/build/esm/types/queries/index.d.ts +1 -0
- package/build/esm/types/queries/translation/index.d.ts +1 -0
- package/build/esm/types/queries/translation/translation.query.d.ts +5 -0
- package/build/esm/types/queries/users/users.query.d.ts +1 -0
- package/build/esm/types/types/ai/ai.d.ts +24 -0
- package/build/esm/types/types/ai/index.d.ts +1 -0
- package/build/esm/types/types/index.d.ts +2 -0
- package/build/esm/types/types/payment/payment.d.ts +3 -1
- package/build/esm/types/types/translation/index.d.ts +1 -0
- package/build/esm/types/types/translation/translation.d.ts +8 -0
- package/build/esm/types/types/user/user.d.ts +3 -0
- package/build/index.d.ts +53 -8
- package/package.json +1 -1
- /package/build/cjs/types/msw/{handlers.d.ts → handlers/index.d.ts} +0 -0
- /package/build/esm/types/msw/{handlers.d.ts → handlers/index.d.ts} +0 -0
package/build/index.d.ts
CHANGED
|
@@ -497,6 +497,7 @@ declare namespace Payment {
|
|
|
497
497
|
payment_method: PaymentMethod;
|
|
498
498
|
customer_payer: CustomerPayer;
|
|
499
499
|
order: Order;
|
|
500
|
+
test_credential: boolean;
|
|
500
501
|
}
|
|
501
502
|
interface PaymentV2 {
|
|
502
503
|
organization_code: string;
|
|
@@ -522,6 +523,7 @@ declare namespace Payment {
|
|
|
522
523
|
trace_id: string;
|
|
523
524
|
subscription_code: string;
|
|
524
525
|
merchant_reference: string;
|
|
526
|
+
test_credential: boolean;
|
|
525
527
|
}
|
|
526
528
|
interface TransactionPayment {
|
|
527
529
|
code: string;
|
|
@@ -542,7 +544,7 @@ declare namespace Payment {
|
|
|
542
544
|
three_ds_electronic_commerce_indicator?: string;
|
|
543
545
|
three_ds_transaction_id?: string;
|
|
544
546
|
}
|
|
545
|
-
interface PaymentItem extends Pick<Payment, 'code' | 'description' | 'country' | 'status' | 'amount' | 'created_at' | 'updated_at'> {
|
|
547
|
+
interface PaymentItem extends Pick<Payment, 'code' | 'description' | 'country' | 'status' | 'amount' | 'created_at' | 'updated_at' | 'test_credential'> {
|
|
546
548
|
idempotency_key: string;
|
|
547
549
|
organization_code: string;
|
|
548
550
|
order_id: string;
|
|
@@ -1270,6 +1272,9 @@ declare namespace User {
|
|
|
1270
1272
|
interface ImpersonationUsersResponse {
|
|
1271
1273
|
result: ImpersonationUser[];
|
|
1272
1274
|
}
|
|
1275
|
+
interface ImpersonationEnabledResponse {
|
|
1276
|
+
enabled: 'true' | 'false';
|
|
1277
|
+
}
|
|
1273
1278
|
}
|
|
1274
1279
|
|
|
1275
1280
|
declare namespace Country {
|
|
@@ -3486,6 +3491,39 @@ declare namespace MFA {
|
|
|
3486
3491
|
}
|
|
3487
3492
|
}
|
|
3488
3493
|
|
|
3494
|
+
declare namespace Translation {
|
|
3495
|
+
type Languages = {
|
|
3496
|
+
supported_languages: string[];
|
|
3497
|
+
};
|
|
3498
|
+
type Translations = {
|
|
3499
|
+
[key: string]: any;
|
|
3500
|
+
};
|
|
3501
|
+
}
|
|
3502
|
+
|
|
3503
|
+
declare namespace AI {
|
|
3504
|
+
/**
|
|
3505
|
+
* @description Payload for AI generation feedback
|
|
3506
|
+
* @example
|
|
3507
|
+
* {
|
|
3508
|
+
* code: '123', // code of the workflow, not the version code
|
|
3509
|
+
* generated_json: [{
|
|
3510
|
+
* type: 'condition',
|
|
3511
|
+
* value: '123'
|
|
3512
|
+
* }],
|
|
3513
|
+
* status: 'ACCEPTED' | 'REJECTED' | 'FRONT_FAILED'
|
|
3514
|
+
*/
|
|
3515
|
+
type AIGenerate = {
|
|
3516
|
+
code: string;
|
|
3517
|
+
generated_json: SmartRouting.ConditionItem[];
|
|
3518
|
+
status: AIGenerateStatus;
|
|
3519
|
+
};
|
|
3520
|
+
enum AIGenerateStatus {
|
|
3521
|
+
ACCEPTED = "ACCEPTED",
|
|
3522
|
+
REFUSED = "REJECTED",
|
|
3523
|
+
FRONT_FAILED = "FRONT_FAILED"
|
|
3524
|
+
}
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3489
3527
|
type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
|
|
3490
3528
|
response: {
|
|
3491
3529
|
data: {
|
|
@@ -4012,6 +4050,7 @@ interface ErrorRoutingAIResponse {
|
|
|
4012
4050
|
};
|
|
4013
4051
|
}
|
|
4014
4052
|
declare function useAICreateWorkflow(organizationCode: string, options?: Omit<UseMutationOptions<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate>;
|
|
4053
|
+
declare function useGenerateFeedback(options?: Omit<UseMutationOptions<any, AxiosError<ErrorRoutingAIResponse>, AI.AIGenerate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<any, AxiosError<ErrorRoutingAIResponse>, AI.AIGenerate>;
|
|
4015
4054
|
|
|
4016
4055
|
declare function usePostPaymentsLazy(params: GetPaymentsParams): UseQueryResult<Payment.PaymentList | AxiosError>;
|
|
4017
4056
|
declare function usePostPaymentsEvaluated(params: GetPaymentsEvaluatedParams): UseQueryResult<Payment.PaymentList, unknown>;
|
|
@@ -4210,6 +4249,7 @@ declare function useGetPermissions(organizationCode: any, accountCode: any): Use
|
|
|
4210
4249
|
declare function useEmailVerification(email: string): UseQueryResult<User.UserResponseEmailVerification | string, unknown>;
|
|
4211
4250
|
declare function useGetLoginMethods(): UseQueryResult<unknown, unknown>;
|
|
4212
4251
|
declare function useGetImpersonationUsers(): UseQueryResult<User.ImpersonationUser[], AxiosError>;
|
|
4252
|
+
declare function useGetImpersonationEnabled(): UseQueryResult<User.ImpersonationEnabledResponse, AxiosError>;
|
|
4213
4253
|
|
|
4214
4254
|
declare function useGetNotificationsCustomer(customer: string): UseQueryResult<Notifications.NotificationsBodyResponse, unknown>;
|
|
4215
4255
|
declare function useGetValidateOpsgenieKey(key: string): UseQueryResult<{
|
|
@@ -4247,7 +4287,7 @@ declare function useGetPermissionsCatalog(): UseQueryResult<Team.CatalogPermissi
|
|
|
4247
4287
|
declare function useGetSmartRoutingDataReport(params: {
|
|
4248
4288
|
[a: string]: number;
|
|
4249
4289
|
}): UseQueryResult<any, unknown>;
|
|
4250
|
-
declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string): UseQueryResult<any, unknown>;
|
|
4290
|
+
declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
4251
4291
|
declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
4252
4292
|
declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
4253
4293
|
declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
@@ -4334,10 +4374,9 @@ declare namespace FeatureFlags {
|
|
|
4334
4374
|
}
|
|
4335
4375
|
|
|
4336
4376
|
interface FeatureFlagsResult {
|
|
4337
|
-
|
|
4377
|
+
[key: string]: boolean;
|
|
4338
4378
|
}
|
|
4339
4379
|
declare function useFeatureFlags(data: FeatureFlags.Request): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
4340
|
-
declare const ALL_FEATURE_FLAGS: string[];
|
|
4341
4380
|
declare function useAllFeatureFlags(body: FeatureFlags.RequestAll): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
4342
4381
|
declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlagsResult>;
|
|
4343
4382
|
|
|
@@ -4420,6 +4459,9 @@ declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
|
|
|
4420
4459
|
declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
|
|
4421
4460
|
declare function usePatchAndExecuteChart(chartgpt_id: string, patchPayload: PatchChartGPTPayload, enabled?: boolean): UseQueryResult<PatchAndExecuteChartResult, unknown>;
|
|
4422
4461
|
|
|
4462
|
+
declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
4463
|
+
declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
4464
|
+
|
|
4423
4465
|
interface CreateChartGPTChartPayload {
|
|
4424
4466
|
user_prompt: string;
|
|
4425
4467
|
}
|
|
@@ -4599,6 +4641,7 @@ declare class Api extends HttpClient {
|
|
|
4599
4641
|
removeDeclinedGroup<T>(organizationCode: string, declinedGroupCode: number | string): Promise<AxiosResponse<T, any>>;
|
|
4600
4642
|
multiAccountDeclinedGroupCreate<T>(organizationCode: string, payload: SmartRouting.PayloadDeclinedGroupCreate): Promise<AxiosResponse<T, any>>;
|
|
4601
4643
|
generateAIWorkflowRoutes<T>(organizationCode: string, payload: SmartRouting.PayloadAIWorkflowCreate): Promise<AxiosResponse<T, any>>;
|
|
4644
|
+
postAIGenerationFeedback<T>(payload: AI.AIGenerate): Promise<AxiosResponse<T, any>>;
|
|
4602
4645
|
getRoutingMonitorsTemplates<T>(organizationCode: any): Promise<AxiosResponse<T, RoutingMonitors.TemplateSelector[]>>;
|
|
4603
4646
|
getRoutingMonitorsTemplate<T>(code: string, organizationCode: string): Promise<AxiosResponse<T, RoutingMonitors.Template>>;
|
|
4604
4647
|
createMonitorThreshold<T>(data: any, organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -4676,6 +4719,7 @@ declare class Api extends HttpClient {
|
|
|
4676
4719
|
deleteScheduledReport<T>(reportCode: string): Promise<AxiosResponse<T>>;
|
|
4677
4720
|
getProfile<T>(): Promise<AxiosResponse<T, any>>;
|
|
4678
4721
|
getImpersonationUsers<T>(): Promise<AxiosResponse<T, any>>;
|
|
4722
|
+
getImpersonationEnabled<T>(): Promise<AxiosResponse<T, any>>;
|
|
4679
4723
|
updateProfile<T>(payload: User.UserRequestPayload): Promise<AxiosResponse<T>>;
|
|
4680
4724
|
inviteUsersMassive<T>(data: UserInviteMultiaccountPayload, organizationCode: string): Promise<AxiosResponse<T>>;
|
|
4681
4725
|
unInviteUsersV2<T>({ userCode, organizationCode, }: {
|
|
@@ -4729,9 +4773,8 @@ declare class Api extends HttpClient {
|
|
|
4729
4773
|
deleteRoles<T>(id: any): Promise<AxiosResponse<T>>;
|
|
4730
4774
|
getRolesPermissions<T>(): Promise<AxiosResponse<T>>;
|
|
4731
4775
|
getFeatureFlagId<T>({ name, ...rest }: FeatureFlags.Request): Promise<AxiosResponse<T>>;
|
|
4732
|
-
getFeatureFlagIdAll({
|
|
4733
|
-
|
|
4734
|
-
body: FeatureFlags.RequestAll;
|
|
4776
|
+
getFeatureFlagIdAll({ accountCode, }: {
|
|
4777
|
+
accountCode?: string;
|
|
4735
4778
|
}): Promise<AxiosResponse<FeatureFlagsResult, any>>;
|
|
4736
4779
|
getPermissionsCatalog<T>(): Promise<AxiosResponse<T>>;
|
|
4737
4780
|
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
@@ -4907,6 +4950,8 @@ declare class Api extends HttpClient {
|
|
|
4907
4950
|
}): Promise<AxiosResponse<T, any>>;
|
|
4908
4951
|
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
4909
4952
|
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
4953
|
+
getLanguages<T>(): Promise<AxiosResponse<T, any>>;
|
|
4954
|
+
getTranslations<T>(): Promise<AxiosResponse<T, any>>;
|
|
4910
4955
|
}
|
|
4911
4956
|
|
|
4912
4957
|
declare class ApiSingleton extends Api {
|
|
@@ -4930,5 +4975,5 @@ declare enum ApiErrorCodes {
|
|
|
4930
4975
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
4931
4976
|
}
|
|
4932
4977
|
|
|
4933
|
-
export {
|
|
4978
|
+
export { AI, 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, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChargebacksUpload, useChartExecute, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, 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, useGetStylingSettings, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
4934
4979
|
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|