@yuno-payments/dashboard-api-mfe 0.36.6 → 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 +6 -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/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/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +6 -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/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/index.d.ts +48 -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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { UseMutationOptions, UseMutationResult } from '@tanstack/react-query';
|
|
2
|
-
import { SmartRouting } from '../../types';
|
|
2
|
+
import { AI, SmartRouting } from '../../types';
|
|
3
3
|
import { AxiosError } from 'axios';
|
|
4
4
|
interface CreateAIsResponse {
|
|
5
5
|
code: string;
|
|
@@ -24,4 +24,5 @@ export interface ErrorRoutingAIResponse {
|
|
|
24
24
|
};
|
|
25
25
|
}
|
|
26
26
|
export declare function useAICreateWorkflow(organizationCode: string, options?: Omit<UseMutationOptions<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<CreateAIsResponse, AxiosError<ErrorRoutingAIResponse>, SmartRouting.PayloadAIWorkflowCreate>;
|
|
27
|
+
export declare function useGenerateFeedback(options?: Omit<UseMutationOptions<any, AxiosError<ErrorRoutingAIResponse>, AI.AIGenerate, unknown> | undefined, 'mutationKey' | 'mutationFn'>): UseMutationResult<any, AxiosError<ErrorRoutingAIResponse>, AI.AIGenerate>;
|
|
27
28
|
export {};
|
|
@@ -3,7 +3,7 @@ import { DataReport } from '../../types';
|
|
|
3
3
|
export declare function useGetSmartRoutingDataReport(params: {
|
|
4
4
|
[a: string]: number;
|
|
5
5
|
}): UseQueryResult<any, unknown>;
|
|
6
|
-
export declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string): UseQueryResult<any, unknown>;
|
|
6
|
+
export declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMetricParams, path: string, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
7
7
|
export declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
8
8
|
export declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
9
9
|
export declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { FeatureFlags } from '../../types/feature-flags/intex';
|
|
3
3
|
export interface FeatureFlagsResult {
|
|
4
|
-
|
|
4
|
+
[key: string]: boolean;
|
|
5
5
|
}
|
|
6
6
|
export declare function useFeatureFlags(data: FeatureFlags.Request): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
7
|
-
export declare const ALL_FEATURE_FLAGS: string[];
|
|
8
7
|
export declare function useAllFeatureFlags(body: FeatureFlags.RequestAll): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
9
8
|
export declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlagsResult>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './translation.query';
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { Translation } from '../../types';
|
|
4
|
+
export declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
5
|
+
export declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SmartRouting } from '../smart-routing';
|
|
2
|
+
export declare namespace AI {
|
|
3
|
+
/**
|
|
4
|
+
* @description Payload for AI generation feedback
|
|
5
|
+
* @example
|
|
6
|
+
* {
|
|
7
|
+
* code: '123', // code of the workflow, not the version code
|
|
8
|
+
* generated_json: [{
|
|
9
|
+
* type: 'condition',
|
|
10
|
+
* value: '123'
|
|
11
|
+
* }],
|
|
12
|
+
* status: 'ACCEPTED' | 'REJECTED' | 'FRONT_FAILED'
|
|
13
|
+
*/
|
|
14
|
+
type AIGenerate = {
|
|
15
|
+
code: string;
|
|
16
|
+
generated_json: SmartRouting.ConditionItem[];
|
|
17
|
+
status: AIGenerateStatus;
|
|
18
|
+
};
|
|
19
|
+
enum AIGenerateStatus {
|
|
20
|
+
ACCEPTED = "ACCEPTED",
|
|
21
|
+
REFUSED = "REJECTED",
|
|
22
|
+
FRONT_FAILED = "FRONT_FAILED"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ai';
|
|
@@ -93,6 +93,7 @@ export declare namespace Payment {
|
|
|
93
93
|
payment_method: PaymentMethod;
|
|
94
94
|
customer_payer: CustomerPayer;
|
|
95
95
|
order: Order;
|
|
96
|
+
test_credential: boolean;
|
|
96
97
|
}
|
|
97
98
|
interface PaymentV2 {
|
|
98
99
|
organization_code: string;
|
|
@@ -118,6 +119,7 @@ export declare namespace Payment {
|
|
|
118
119
|
trace_id: string;
|
|
119
120
|
subscription_code: string;
|
|
120
121
|
merchant_reference: string;
|
|
122
|
+
test_credential: boolean;
|
|
121
123
|
}
|
|
122
124
|
interface TransactionPayment {
|
|
123
125
|
code: string;
|
|
@@ -138,7 +140,7 @@ export declare namespace Payment {
|
|
|
138
140
|
three_ds_electronic_commerce_indicator?: string;
|
|
139
141
|
three_ds_transaction_id?: string;
|
|
140
142
|
}
|
|
141
|
-
interface PaymentItem extends Pick<Payment, 'code' | 'description' | 'country' | 'status' | 'amount' | 'created_at' | 'updated_at'> {
|
|
143
|
+
interface PaymentItem extends Pick<Payment, 'code' | 'description' | 'country' | 'status' | 'amount' | 'created_at' | 'updated_at' | 'test_credential'> {
|
|
142
144
|
idempotency_key: string;
|
|
143
145
|
organization_code: string;
|
|
144
146
|
order_id: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './translation';
|
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;
|
|
@@ -3489,6 +3491,39 @@ declare namespace MFA {
|
|
|
3489
3491
|
}
|
|
3490
3492
|
}
|
|
3491
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
|
+
|
|
3492
3527
|
type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
|
|
3493
3528
|
response: {
|
|
3494
3529
|
data: {
|
|
@@ -4015,6 +4050,7 @@ interface ErrorRoutingAIResponse {
|
|
|
4015
4050
|
};
|
|
4016
4051
|
}
|
|
4017
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>;
|
|
4018
4054
|
|
|
4019
4055
|
declare function usePostPaymentsLazy(params: GetPaymentsParams): UseQueryResult<Payment.PaymentList | AxiosError>;
|
|
4020
4056
|
declare function usePostPaymentsEvaluated(params: GetPaymentsEvaluatedParams): UseQueryResult<Payment.PaymentList, unknown>;
|
|
@@ -4251,7 +4287,7 @@ declare function useGetPermissionsCatalog(): UseQueryResult<Team.CatalogPermissi
|
|
|
4251
4287
|
declare function useGetSmartRoutingDataReport(params: {
|
|
4252
4288
|
[a: string]: number;
|
|
4253
4289
|
}): UseQueryResult<any, unknown>;
|
|
4254
|
-
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>;
|
|
4255
4291
|
declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
4256
4292
|
declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
4257
4293
|
declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
@@ -4338,10 +4374,9 @@ declare namespace FeatureFlags {
|
|
|
4338
4374
|
}
|
|
4339
4375
|
|
|
4340
4376
|
interface FeatureFlagsResult {
|
|
4341
|
-
|
|
4377
|
+
[key: string]: boolean;
|
|
4342
4378
|
}
|
|
4343
4379
|
declare function useFeatureFlags(data: FeatureFlags.Request): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
4344
|
-
declare const ALL_FEATURE_FLAGS: string[];
|
|
4345
4380
|
declare function useAllFeatureFlags(body: FeatureFlags.RequestAll): UseQueryResult<FeatureFlagsResult, unknown>;
|
|
4346
4381
|
declare function useCachedFeatureFlag(name: string): UseQueryResult<FeatureFlagsResult>;
|
|
4347
4382
|
|
|
@@ -4424,6 +4459,9 @@ declare function useGetChartsByUser(): UseQueryResult<ChartGPTChart[], unknown>;
|
|
|
4424
4459
|
declare function useGetChartsByUserWithResults(): UseQueryResult<ChartGPTChartWithResults[], unknown>;
|
|
4425
4460
|
declare function usePatchAndExecuteChart(chartgpt_id: string, patchPayload: PatchChartGPTPayload, enabled?: boolean): UseQueryResult<PatchAndExecuteChartResult, unknown>;
|
|
4426
4461
|
|
|
4462
|
+
declare function useGetLanguages(): UseQueryResult<Translation.Languages, AxiosError>;
|
|
4463
|
+
declare function useGetTranslations(): UseQueryResult<Translation.Translations, AxiosError>;
|
|
4464
|
+
|
|
4427
4465
|
interface CreateChartGPTChartPayload {
|
|
4428
4466
|
user_prompt: string;
|
|
4429
4467
|
}
|
|
@@ -4603,6 +4641,7 @@ declare class Api extends HttpClient {
|
|
|
4603
4641
|
removeDeclinedGroup<T>(organizationCode: string, declinedGroupCode: number | string): Promise<AxiosResponse<T, any>>;
|
|
4604
4642
|
multiAccountDeclinedGroupCreate<T>(organizationCode: string, payload: SmartRouting.PayloadDeclinedGroupCreate): Promise<AxiosResponse<T, any>>;
|
|
4605
4643
|
generateAIWorkflowRoutes<T>(organizationCode: string, payload: SmartRouting.PayloadAIWorkflowCreate): Promise<AxiosResponse<T, any>>;
|
|
4644
|
+
postAIGenerationFeedback<T>(payload: AI.AIGenerate): Promise<AxiosResponse<T, any>>;
|
|
4606
4645
|
getRoutingMonitorsTemplates<T>(organizationCode: any): Promise<AxiosResponse<T, RoutingMonitors.TemplateSelector[]>>;
|
|
4607
4646
|
getRoutingMonitorsTemplate<T>(code: string, organizationCode: string): Promise<AxiosResponse<T, RoutingMonitors.Template>>;
|
|
4608
4647
|
createMonitorThreshold<T>(data: any, organizationCode: any): Promise<AxiosResponse<T>>;
|
|
@@ -4734,9 +4773,8 @@ declare class Api extends HttpClient {
|
|
|
4734
4773
|
deleteRoles<T>(id: any): Promise<AxiosResponse<T>>;
|
|
4735
4774
|
getRolesPermissions<T>(): Promise<AxiosResponse<T>>;
|
|
4736
4775
|
getFeatureFlagId<T>({ name, ...rest }: FeatureFlags.Request): Promise<AxiosResponse<T>>;
|
|
4737
|
-
getFeatureFlagIdAll({
|
|
4738
|
-
|
|
4739
|
-
body: FeatureFlags.RequestAll;
|
|
4776
|
+
getFeatureFlagIdAll({ accountCode, }: {
|
|
4777
|
+
accountCode?: string;
|
|
4740
4778
|
}): Promise<AxiosResponse<FeatureFlagsResult, any>>;
|
|
4741
4779
|
getPermissionsCatalog<T>(): Promise<AxiosResponse<T>>;
|
|
4742
4780
|
changePasswordV2<T>(body: any): Promise<AxiosResponse<T>>;
|
|
@@ -4912,6 +4950,8 @@ declare class Api extends HttpClient {
|
|
|
4912
4950
|
}): Promise<AxiosResponse<T, any>>;
|
|
4913
4951
|
executeChartGPTChart<T>(chartgpt_id: string): Promise<AxiosResponse<T, any>>;
|
|
4914
4952
|
getChartsByUser<T>(): Promise<AxiosResponse<T, any>>;
|
|
4953
|
+
getLanguages<T>(): Promise<AxiosResponse<T, any>>;
|
|
4954
|
+
getTranslations<T>(): Promise<AxiosResponse<T, any>>;
|
|
4915
4955
|
}
|
|
4916
4956
|
|
|
4917
4957
|
declare class ApiSingleton extends Api {
|
|
@@ -4935,5 +4975,5 @@ declare enum ApiErrorCodes {
|
|
|
4935
4975
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
4936
4976
|
}
|
|
4937
4977
|
|
|
4938
|
-
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 };
|
|
4939
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
|