@yuno-payments/dashboard-api-mfe 1.10.9 → 1.11.2
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 +2 -5
- package/build/cjs/types/mutations/index.d.ts +1 -0
- package/build/cjs/types/mutations/playground/index.d.ts +1 -0
- package/build/cjs/types/mutations/playground/playground.mutation.d.ts +7 -0
- package/build/cjs/types/queries/data-report/data-report.query.d.ts +0 -4
- package/build/cjs/types/types/audit/audit.d.ts +2 -0
- package/build/cjs/types/types/data-report/data-report.d.ts +4 -1
- package/build/cjs/types/types/index.d.ts +1 -0
- package/build/cjs/types/types/playground/index.d.ts +1 -0
- package/build/cjs/types/types/playground/playground.d.ts +33 -0
- package/build/esm/index.js +4 -4
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +2 -5
- package/build/esm/types/mutations/index.d.ts +1 -0
- package/build/esm/types/mutations/playground/index.d.ts +1 -0
- package/build/esm/types/mutations/playground/playground.mutation.d.ts +7 -0
- package/build/esm/types/queries/data-report/data-report.query.d.ts +0 -4
- package/build/esm/types/types/audit/audit.d.ts +2 -0
- package/build/esm/types/types/data-report/data-report.d.ts +4 -1
- package/build/esm/types/types/index.d.ts +1 -0
- package/build/esm/types/types/playground/index.d.ts +1 -0
- package/build/esm/types/types/playground/playground.d.ts +33 -0
- package/build/index.d.ts +46 -10
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
2
2
|
import { HttpClient } from '../lib/http-client';
|
|
3
3
|
import { GetPaymentsParams, GetReconciliationMetricParams, FirebaseUserSubscribe, PathNotification, TimeZoneCatalog, GetTransactionDetailsV2Params, MfaUserSubscribe, UserInviteMultiaccountPayload, GetTransactionsParams, PaymentsSettings, GetPayoutDetail, GetPayoutTransactionDetail, PinnedSections, ThemeSettings, ListSubscriptionsParams } from './api.types';
|
|
4
|
-
import { Audit, OperationTransaction, Organization, OrganizationConfig, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, ReconciliationInsights, Payment, AddToRiskListRequest, InsightsFraudParams, InsightsFraudBody, AI, PaymentFiltersSection, Installments, Connection, TemplateReporting, GetUserFullResponse, Team, ConciergeAlerts } from '../types';
|
|
4
|
+
import { Audit, OperationTransaction, Organization, OrganizationConfig, SmartRouting, User, Webhook, Reports, ReportType, TemplateType, OrganizationSettings, IListScheduledReportsResponse, DataReport, Reconciliation, Checkout, ReconciliationReportType, SendPaymentNotification, ReconciliationAlerts, ReconciliationAgenda, ReconciliationSales, ReconciliationAdvancements, ReconciliationFees, ReconciliationInsights, Payment, AddToRiskListRequest, InsightsFraudParams, InsightsFraudBody, AI, PaymentFiltersSection, Installments, Connection, TemplateReporting, GetUserFullResponse, Team, ConciergeAlerts, Playground } 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';
|
|
@@ -224,7 +224,6 @@ export declare class Api extends HttpClient {
|
|
|
224
224
|
getInsightsMetricsConversionRateV2<T>(params: DataReport.InsightMetricParams, path: string): Promise<AxiosResponse<T, any>>;
|
|
225
225
|
getInsightsMetricsConversionRateViewMore<T>(params: DataReport.InsightMetricParams, type: string): Promise<AxiosResponse<T, any>>;
|
|
226
226
|
getInsightFallbackMetrics<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
227
|
-
getInsightsMetricsVolume<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
228
227
|
getInsightsMetricsVolumeV2<T>(account_codes: string, path: DataReport.InsightsVolumeMetricsV2Path, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
229
228
|
getInsightsFraudScreeningVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
230
229
|
getInsightsFraudScreeningConversionRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
@@ -240,11 +239,8 @@ export declare class Api extends HttpClient {
|
|
|
240
239
|
getInsightsChargebacksReasonsDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
241
240
|
getInsightsChargebacksStatusDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
242
241
|
getInsightsChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
243
|
-
getInsightOverview<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
244
242
|
getInsightOverviewV3<T>(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): Promise<AxiosResponse<T, any>>;
|
|
245
243
|
getInsighstHomeMetrics<T>(params: DataReport.InsightsHomeMetrics): Promise<AxiosResponse<T, any>>;
|
|
246
|
-
getInsightsMetricsTotalPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
247
|
-
getInsightsMetricsCustomerPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
248
244
|
getCheckouts({ accountCode, }: {
|
|
249
245
|
accountCode: any;
|
|
250
246
|
}): Promise<AxiosResponse<Checkout.CheckoutList[]>>;
|
|
@@ -678,5 +674,6 @@ export declare class Api extends HttpClient {
|
|
|
678
674
|
createConciergeAlert<T>(payload: ConciergeAlerts.CreateAlertPayload): Promise<AxiosResponse<T>>;
|
|
679
675
|
deleteConciergeAlert<T>(alertId: string): Promise<AxiosResponse<T>>;
|
|
680
676
|
enableConciergeAlert<T>(alertId: string, payload: ConciergeAlerts.EnableAlertPayload): Promise<AxiosResponse<T>>;
|
|
677
|
+
postPlaygroundExecuteFlow<T>(payload: Playground.ExecuteFlowPayload): Promise<AxiosResponse<T, unknown>>;
|
|
681
678
|
}
|
|
682
679
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './playground.mutation';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { UseMutationResult } from '@tanstack/react-query';
|
|
2
|
+
import { AxiosError } from 'axios';
|
|
3
|
+
import { Playground } from '../../types';
|
|
4
|
+
import { BFFErrorResponse } from '../smart-routing';
|
|
5
|
+
export declare function usePostPlaygroundExecuteFlow(): UseMutationResult<Playground.ExecuteFlowResponse, AxiosError<BFFErrorResponse>, {
|
|
6
|
+
payload: Playground.ExecuteFlowPayload;
|
|
7
|
+
}>;
|
|
@@ -9,11 +9,7 @@ export declare function useInsightsConversionRateMetricsV2(params: DataReport.In
|
|
|
9
9
|
}): UseQueryResult<any, unknown>;
|
|
10
10
|
export declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
11
11
|
export declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
12
|
-
export declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
13
12
|
export declare function useInsightsVolumeMetricsV2(account_codes: string, params: DataReport.InsightMetricParams, path: DataReport.InsightsVolumeMetricsV2Path, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
14
|
-
export declare function useInsightsTotalPaymentsAndFraudMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
15
|
-
export declare function useInsightsCustomerPaymentsAndFraudMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
16
|
-
export declare function useInsightsOverviewMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
17
13
|
export declare function useInsightsOverviewMetricsV3(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): UseQueryResult<any, unknown>;
|
|
18
14
|
export declare function useInsightsHomeMetrics(params: DataReport.InsightsHomeMetrics): UseQueryResult<any, unknown>;
|
|
19
15
|
export declare function useGetInsightsReport(params: DataReport.InsightExportParams): UseQueryResult<any, unknown>;
|
|
@@ -68,6 +68,7 @@ export declare namespace Audit {
|
|
|
68
68
|
time_zone: string;
|
|
69
69
|
account_codes?: string[] | null;
|
|
70
70
|
}
|
|
71
|
+
type MonitorType = 'CREATED TRANSACTIONS' | 'SUCCEEDED TRANSACTIONS';
|
|
71
72
|
interface AuditMonitorData {
|
|
72
73
|
alert_id: number;
|
|
73
74
|
status: string;
|
|
@@ -86,6 +87,7 @@ export declare namespace Audit {
|
|
|
86
87
|
condition_set_id: number;
|
|
87
88
|
approval_rate: number;
|
|
88
89
|
account_code: string;
|
|
90
|
+
monitor_type?: MonitorType | null;
|
|
89
91
|
}
|
|
90
92
|
interface AuditMonitors {
|
|
91
93
|
page: number;
|
|
@@ -6,7 +6,10 @@ export declare namespace DataReport {
|
|
|
6
6
|
PROVIDERS = "providers",
|
|
7
7
|
COUNTRIES = "countries",
|
|
8
8
|
UNIQUE_CUSTOMER_PAYMENTS = "unique-customer-payments",
|
|
9
|
-
TOTAL_PAYMENTS = "total-payments"
|
|
9
|
+
TOTAL_PAYMENTS = "total-payments",
|
|
10
|
+
CARD_TYPES = "card-types",
|
|
11
|
+
CARD_BRANDS = "card-brands",
|
|
12
|
+
ISSUERS = "issuers"
|
|
10
13
|
}
|
|
11
14
|
export interface SmartRouting {
|
|
12
15
|
version: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './playground';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
export declare namespace Playground {
|
|
2
|
+
type FlowType = 'DIRECT';
|
|
3
|
+
type FlowStatus = 'SUCCESS' | 'PARTIAL_FAILURE' | 'FAILURE';
|
|
4
|
+
type StepStatus = 'SUCCESS' | 'FAILED' | 'SKIPPED';
|
|
5
|
+
type StepName = 'CREATE_CUSTOMER' | 'CREATE_CHECKOUT_SESSION' | 'CREATE_PAYMENT';
|
|
6
|
+
interface ExecuteFlowPayload {
|
|
7
|
+
flow_type: FlowType;
|
|
8
|
+
config: {
|
|
9
|
+
capture: boolean;
|
|
10
|
+
};
|
|
11
|
+
customer: Record<string, unknown>;
|
|
12
|
+
payment_method: Record<string, unknown>;
|
|
13
|
+
country: string;
|
|
14
|
+
amount: Record<string, unknown>;
|
|
15
|
+
account_id: string;
|
|
16
|
+
payment_description: string;
|
|
17
|
+
}
|
|
18
|
+
interface StepResult {
|
|
19
|
+
step: StepName;
|
|
20
|
+
status: StepStatus;
|
|
21
|
+
http_status: number | null;
|
|
22
|
+
response: Record<string, unknown> | null;
|
|
23
|
+
error_message: string | null;
|
|
24
|
+
duration_ms: number;
|
|
25
|
+
}
|
|
26
|
+
interface ExecuteFlowResponse {
|
|
27
|
+
status: FlowStatus;
|
|
28
|
+
failed_step: string | null;
|
|
29
|
+
error_message: string | null;
|
|
30
|
+
steps: StepResult[];
|
|
31
|
+
total_duration_ms: number;
|
|
32
|
+
}
|
|
33
|
+
}
|
package/build/index.d.ts
CHANGED
|
@@ -2644,7 +2644,10 @@ declare namespace DataReport {
|
|
|
2644
2644
|
PROVIDERS = "providers",
|
|
2645
2645
|
COUNTRIES = "countries",
|
|
2646
2646
|
UNIQUE_CUSTOMER_PAYMENTS = "unique-customer-payments",
|
|
2647
|
-
TOTAL_PAYMENTS = "total-payments"
|
|
2647
|
+
TOTAL_PAYMENTS = "total-payments",
|
|
2648
|
+
CARD_TYPES = "card-types",
|
|
2649
|
+
CARD_BRANDS = "card-brands",
|
|
2650
|
+
ISSUERS = "issuers"
|
|
2648
2651
|
}
|
|
2649
2652
|
export interface SmartRouting {
|
|
2650
2653
|
version: string;
|
|
@@ -4113,6 +4116,7 @@ declare namespace Audit {
|
|
|
4113
4116
|
time_zone: string;
|
|
4114
4117
|
account_codes?: string[] | null;
|
|
4115
4118
|
}
|
|
4119
|
+
type MonitorType = 'CREATED TRANSACTIONS' | 'SUCCEEDED TRANSACTIONS';
|
|
4116
4120
|
interface AuditMonitorData {
|
|
4117
4121
|
alert_id: number;
|
|
4118
4122
|
status: string;
|
|
@@ -4131,6 +4135,7 @@ declare namespace Audit {
|
|
|
4131
4135
|
condition_set_id: number;
|
|
4132
4136
|
approval_rate: number;
|
|
4133
4137
|
account_code: string;
|
|
4138
|
+
monitor_type?: MonitorType | null;
|
|
4134
4139
|
}
|
|
4135
4140
|
interface AuditMonitors {
|
|
4136
4141
|
page: number;
|
|
@@ -5682,6 +5687,40 @@ declare namespace ConciergeAlerts {
|
|
|
5682
5687
|
};
|
|
5683
5688
|
}
|
|
5684
5689
|
|
|
5690
|
+
declare namespace Playground {
|
|
5691
|
+
type FlowType = 'DIRECT';
|
|
5692
|
+
type FlowStatus = 'SUCCESS' | 'PARTIAL_FAILURE' | 'FAILURE';
|
|
5693
|
+
type StepStatus = 'SUCCESS' | 'FAILED' | 'SKIPPED';
|
|
5694
|
+
type StepName = 'CREATE_CUSTOMER' | 'CREATE_CHECKOUT_SESSION' | 'CREATE_PAYMENT';
|
|
5695
|
+
interface ExecuteFlowPayload {
|
|
5696
|
+
flow_type: FlowType;
|
|
5697
|
+
config: {
|
|
5698
|
+
capture: boolean;
|
|
5699
|
+
};
|
|
5700
|
+
customer: Record<string, unknown>;
|
|
5701
|
+
payment_method: Record<string, unknown>;
|
|
5702
|
+
country: string;
|
|
5703
|
+
amount: Record<string, unknown>;
|
|
5704
|
+
account_id: string;
|
|
5705
|
+
payment_description: string;
|
|
5706
|
+
}
|
|
5707
|
+
interface StepResult {
|
|
5708
|
+
step: StepName;
|
|
5709
|
+
status: StepStatus;
|
|
5710
|
+
http_status: number | null;
|
|
5711
|
+
response: Record<string, unknown> | null;
|
|
5712
|
+
error_message: string | null;
|
|
5713
|
+
duration_ms: number;
|
|
5714
|
+
}
|
|
5715
|
+
interface ExecuteFlowResponse {
|
|
5716
|
+
status: FlowStatus;
|
|
5717
|
+
failed_step: string | null;
|
|
5718
|
+
error_message: string | null;
|
|
5719
|
+
steps: StepResult[];
|
|
5720
|
+
total_duration_ms: number;
|
|
5721
|
+
}
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5685
5724
|
type DeleteMutation = UseMutationResult<AxiosResponse<Organization.AccountOrganization, unknown>, {
|
|
5686
5725
|
response: {
|
|
5687
5726
|
data: {
|
|
@@ -6834,11 +6873,7 @@ declare function useInsightsConversionRateMetricsV2(params: DataReport.InsightMe
|
|
|
6834
6873
|
}): UseQueryResult<any, unknown>;
|
|
6835
6874
|
declare function useViewMoreMetrics(params: DataReport.InsightMetricParams, type: any): UseQueryResult<any, unknown>;
|
|
6836
6875
|
declare function useInsightsFallbackMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
6837
|
-
declare function useInsightsVolumeMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
6838
6876
|
declare function useInsightsVolumeMetricsV2(account_codes: string, params: DataReport.InsightMetricParams, path: DataReport.InsightsVolumeMetricsV2Path, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
6839
|
-
declare function useInsightsTotalPaymentsAndFraudMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
6840
|
-
declare function useInsightsCustomerPaymentsAndFraudMetrics(account_codes: string, params: DataReport.InsightMetricParams, enabled?: boolean): UseQueryResult<any, unknown>;
|
|
6841
|
-
declare function useInsightsOverviewMetrics(params: DataReport.InsightMetricParams): UseQueryResult<any, unknown>;
|
|
6842
6877
|
declare function useInsightsOverviewMetricsV3(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): UseQueryResult<any, unknown>;
|
|
6843
6878
|
declare function useInsightsHomeMetrics(params: DataReport.InsightsHomeMetrics): UseQueryResult<any, unknown>;
|
|
6844
6879
|
declare function useGetInsightsReport(params: DataReport.InsightExportParams): UseQueryResult<any, unknown>;
|
|
@@ -7295,6 +7330,10 @@ declare function useEnableConciergeAlert(): UseMutationResult<ConciergeAlerts.En
|
|
|
7295
7330
|
payload: ConciergeAlerts.EnableAlertPayload;
|
|
7296
7331
|
}>;
|
|
7297
7332
|
|
|
7333
|
+
declare function usePostPlaygroundExecuteFlow(): UseMutationResult<Playground.ExecuteFlowResponse, AxiosError<BFFErrorResponse>, {
|
|
7334
|
+
payload: Playground.ExecuteFlowPayload;
|
|
7335
|
+
}>;
|
|
7336
|
+
|
|
7298
7337
|
interface S3Payload {
|
|
7299
7338
|
payload: S3Client.PayloadV2;
|
|
7300
7339
|
handleSetProgress?: (progress: number) => void;
|
|
@@ -7505,7 +7544,6 @@ declare class Api extends HttpClient {
|
|
|
7505
7544
|
getInsightsMetricsConversionRateV2<T>(params: DataReport.InsightMetricParams, path: string): Promise<AxiosResponse<T, any>>;
|
|
7506
7545
|
getInsightsMetricsConversionRateViewMore<T>(params: DataReport.InsightMetricParams, type: string): Promise<AxiosResponse<T, any>>;
|
|
7507
7546
|
getInsightFallbackMetrics<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
7508
|
-
getInsightsMetricsVolume<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
7509
7547
|
getInsightsMetricsVolumeV2<T>(account_codes: string, path: DataReport.InsightsVolumeMetricsV2Path, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
7510
7548
|
getInsightsFraudScreeningVolumeAndCountTx(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
7511
7549
|
getInsightsFraudScreeningConversionRate(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
@@ -7521,11 +7559,8 @@ declare class Api extends HttpClient {
|
|
|
7521
7559
|
getInsightsChargebacksReasonsDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
7522
7560
|
getInsightsChargebacksStatusDistribution(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
7523
7561
|
getInsightsChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
7524
|
-
getInsightOverview<T>(params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
7525
7562
|
getInsightOverviewV3<T>(params: DataReport.InsightMetricParams, type: DataReport.OverviewMetricType): Promise<AxiosResponse<T, any>>;
|
|
7526
7563
|
getInsighstHomeMetrics<T>(params: DataReport.InsightsHomeMetrics): Promise<AxiosResponse<T, any>>;
|
|
7527
|
-
getInsightsMetricsTotalPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
7528
|
-
getInsightsMetricsCustomerPaymentsAndFraud<T>(account_codes: string, params: DataReport.InsightMetricParams): Promise<AxiosResponse<T, any>>;
|
|
7529
7564
|
getCheckouts({ accountCode, }: {
|
|
7530
7565
|
accountCode: any;
|
|
7531
7566
|
}): Promise<AxiosResponse<Checkout.CheckoutList[]>>;
|
|
@@ -7959,6 +7994,7 @@ declare class Api extends HttpClient {
|
|
|
7959
7994
|
createConciergeAlert<T>(payload: ConciergeAlerts.CreateAlertPayload): Promise<AxiosResponse<T>>;
|
|
7960
7995
|
deleteConciergeAlert<T>(alertId: string): Promise<AxiosResponse<T>>;
|
|
7961
7996
|
enableConciergeAlert<T>(alertId: string, payload: ConciergeAlerts.EnableAlertPayload): Promise<AxiosResponse<T>>;
|
|
7997
|
+
postPlaygroundExecuteFlow<T>(payload: Playground.ExecuteFlowPayload): Promise<AxiosResponse<T, unknown>>;
|
|
7962
7998
|
}
|
|
7963
7999
|
|
|
7964
8000
|
declare class ApiSingleton extends Api {
|
|
@@ -8009,5 +8045,5 @@ declare const useOrganizationCode: () => any;
|
|
|
8009
8045
|
|
|
8010
8046
|
declare const useAccountCode: () => any;
|
|
8011
8047
|
|
|
8012
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ALERTS_QUERY_KEY, CONCIERGE_ALERT_BY_ID_QUERY_KEY, Checkout, ConciergeAlerts, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkToggleMethod, 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, useCreateConciergeAlert, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteConciergeAlert, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useEnableConciergeAlert, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetApiLogsList, useGetApiLogsStatsErrors, useGetApiLogsStatsErrorsByEndpoint, useGetApiLogsStatsRequests, useGetApiLogsV3, useGetApiLogsV3ByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAlertById, useGetConciergeAlerts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, 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, usePatchOrganizationKeysNote, 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, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, 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, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
|
|
8048
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, CONCIERGE_ALERTS_QUERY_KEY, CONCIERGE_ALERT_BY_ID_QUERY_KEY, Checkout, ConciergeAlerts, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Playground, Recipients, RecipientsExport, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBlockOnboarding, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useBulkToggleMethod, 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, useCreateConciergeAlert, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOnboarding, useCreateOperationTransaction, useCreateOrgRole, useCreatePaymentLinks, useCreateRecipient, useCreateRecipientExport, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteConciergeAlert, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeleteOrgRole, useDeletePaymentLink, useDeleteRecipient, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDownloadRecipientExport, useDuplicateAccount, useDuplicateVersion, useEditOrgRole, useEditPaymentLinks, useEditRoles, useEmailVerification, useEnableConciergeAlert, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetApiLogsList, useGetApiLogsStatsErrors, useGetApiLogsStatsErrorsByEndpoint, useGetApiLogsStatsRequests, useGetApiLogsV3, useGetApiLogsV3ByPaymentCode, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConciergeAlertById, useGetConciergeAlerts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrgPermissionsCatalog, useGetOrgRolesPermissions, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipientExportDownload, useGetRecipientExports, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesForImpersonation, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettingsV2, useGetSubscriptionByCode, useGetSubscriptionPayments, useGetTeamsFiltersMembers, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useGetWorkOsMfaStatus, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetricsV3, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePatchOrganizationKeysNote, 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, usePostOrganizationKeysMarkRevealed, usePostOrganizationKeysRoll, usePostOrganizationKeysTamRequest, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostPlaygroundExecuteFlow, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookLogs, usePostWebhookMultiAccount, useProviderConversionRatesData, useProviderRawResponse, usePublishCheckout, 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, useTableOnboarding, useToggleMethod, useUnInviteUsersV2, useUnblockOnboarding, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOnboarding, useUpdateOrganizationStatus, useUpdateProfile, useUpdateRecipient, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useUploadPaymentLinkLogo, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosDomainStatus, useWorkosDomainVerificationPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
|
|
8013
8049
|
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, BlockOnboardingParams, BulkToggleResult, 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, CreateOnboardingParams, CreateOnboardingPayload, CreateOnboardingProvider, CreateOnboardingTermsOfService, CreateRecipientAddress, CreateRecipientBank, CreateRecipientDocument, CreateRecipientDocumentation, CreateRecipientLegalRepresentative, CreateRecipientParams, CreateRecipientPayload, CreateRecipientPhone, CreateRecipientWithdrawalMethod, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteRecipientParams, 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, GetRecipientExportsParams, 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, RoleType, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnblockOnboardingParams, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateOnboardingParams, UpdateOnboardingPayload, UpdateRecipientParams, UpdateRecipientPayload, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetApiLogsV3ByPaymentCodeOptions, UseGetApiLogsV3Options, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseGetWebhookTimelineOptions, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage, WorkosDomainStatusResponse };
|