@yuno-payments/dashboard-api-mfe 1.6.1 → 1.6.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 +5 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/api/api.d.ts +10 -8
- package/build/cjs/types/mutations/smart-routing/smart-routing.mutation.d.ts +24 -6
- package/build/cjs/types/queries/api-logs/api-logs-v3.query.d.ts +2 -2
- package/build/cjs/types/queries/organizations/organizations.query.d.ts +3 -1
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +1 -1
- package/build/cjs/types/queries/webhooks/webhook-timeline.query.d.ts +2 -2
- package/build/cjs/types/types/audit/audit.d.ts +1 -0
- package/build/cjs/types/types/connection/connection.d.ts +1 -0
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/esm/index.js +5 -5
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +10 -8
- package/build/esm/types/mutations/smart-routing/smart-routing.mutation.d.ts +24 -6
- package/build/esm/types/queries/api-logs/api-logs-v3.query.d.ts +2 -2
- package/build/esm/types/queries/organizations/organizations.query.d.ts +3 -1
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +1 -1
- package/build/esm/types/queries/webhooks/webhook-timeline.query.d.ts +2 -2
- package/build/esm/types/types/audit/audit.d.ts +1 -0
- package/build/esm/types/types/connection/connection.d.ts +1 -0
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +3 -0
- package/build/index.d.ts +48 -22
- package/package.json +2 -2
|
@@ -113,7 +113,7 @@ export declare class Api extends HttpClient {
|
|
|
113
113
|
accountCode: any;
|
|
114
114
|
integration_code: any;
|
|
115
115
|
}): Promise<AxiosResponse<T, any>>;
|
|
116
|
-
getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T>>;
|
|
116
|
+
getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string, basePath?: SmartRouting.RoutingType): Promise<AxiosResponse<T>>;
|
|
117
117
|
getHashPylon<T>(): Promise<AxiosResponse<T>>;
|
|
118
118
|
getConnections<T>(): Promise<AxiosResponse<T, any>>;
|
|
119
119
|
getOnboardingStatus<T>(accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
@@ -160,8 +160,8 @@ export declare class Api extends HttpClient {
|
|
|
160
160
|
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
161
161
|
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
162
162
|
postExportWebhooksLogs<T>(payload: Audit.ExportWebhooksLogsRequest): Promise<AxiosResponse<T>>;
|
|
163
|
-
getApiLogsV3<T>(
|
|
164
|
-
getWebhookTimeline<T>(
|
|
163
|
+
getApiLogsV3<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
164
|
+
getWebhookTimeline<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
165
165
|
postExportDashboardLogs<T>(payload: Audit.ExportDashboardLogsRequest): Promise<AxiosResponse<T>>;
|
|
166
166
|
postExportMonitorsLogs<T>(payload: Audit.ExportMonitorsLogsRequest): Promise<AxiosResponse<T>>;
|
|
167
167
|
getAuditExportsList<T>(reportType: Audit.AuditExportReportType): Promise<AxiosResponse<T>>;
|
|
@@ -185,11 +185,13 @@ export declare class Api extends HttpClient {
|
|
|
185
185
|
getDashboardStaticContents<T>(): Promise<AxiosResponse<T, any>>;
|
|
186
186
|
getLocales<T>(): Promise<AxiosResponse<T, any>>;
|
|
187
187
|
getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
188
|
-
putSmartRoutingToggleMethod<T>(accountCode: string, paymentMethod: string, active: boolean): Promise<AxiosResponse<T, any>>;
|
|
188
|
+
putSmartRoutingToggleMethod<T>(accountCode: string, paymentMethod: string, active: boolean, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
189
189
|
getSmartRoutingConditionTypes<T>(accountCode: string, paymentMethod: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
190
190
|
getSmartRoutingConditionPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T, any>>;
|
|
191
191
|
getSmartRoutingConditionTypesValues<T>(accountCode: string, index: number): Promise<AxiosResponse<T, any>>;
|
|
192
|
-
getSmartRoutingNextSteps<T>(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T,
|
|
192
|
+
getSmartRoutingNextSteps<T>(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, {
|
|
193
|
+
actions: string[];
|
|
194
|
+
} | string[]>>;
|
|
193
195
|
getSmartRoutingWorkflowVersion<T>(accountCode: string, workflowVersionId: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
194
196
|
getSmartRoutingWorkflow<T>(accountCode: string, paymentName: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
195
197
|
putSmartRoutingUpdateWorkflow<T>(accountCode: string, data: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
@@ -204,10 +206,10 @@ export declare class Api extends HttpClient {
|
|
|
204
206
|
getSmartRoutingDeclinedGroup<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
205
207
|
updateSmartRoutingDeclinedGroup<T>(accountCode: string, declineId: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
206
208
|
createSmartRoutingDeclinedGroup<T>(accountCode: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
207
|
-
getSmartRoutingPaymentRoute<T>(accountCode: string, paymentId: string): Promise<AxiosResponse<T, SmartRouting.PaymentRoutes>>;
|
|
208
|
-
updateSmartRoutingFavorite<T>(accountCode: string, versionCode: string, favorite: boolean): Promise<AxiosResponse<T, any>>;
|
|
209
|
+
getSmartRoutingPaymentRoute<T>(accountCode: string, paymentId: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, SmartRouting.PaymentRoutes>>;
|
|
210
|
+
updateSmartRoutingFavorite<T>(accountCode: string, versionCode: string, favorite: boolean, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
209
211
|
getSmartRoutingSimulateConditionTypeValues<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
|
|
210
|
-
simulateSmartRoutingTransaction<T>(accountCode: string, workflowVersionCode: string, values: any): Promise<AxiosResponse<T, any>>;
|
|
212
|
+
simulateSmartRoutingTransaction<T>(accountCode: string, workflowVersionCode: string, values: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
211
213
|
getSmartRoutingSearchConditionValues<T>(conditionType: string, text: string): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
|
|
212
214
|
getProviderConversionRatesData<T>(): Promise<AxiosResponse<T, SmartRouting.SRConversionRates[]>>;
|
|
213
215
|
updateMonitorRedistribution<T>(organizationCode: string, values: SmartRouting.MonitorRedistribution): Promise<AxiosResponse<T, any>>;
|
|
@@ -23,11 +23,27 @@ export declare function useDuplicateVersion({ versionCode, accountCode, routingT
|
|
|
23
23
|
accountCode: string;
|
|
24
24
|
routingType?: SmartRouting.RoutingType;
|
|
25
25
|
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
26
|
-
export declare function useToggleMethod({ paymentMethod, active, accountCode }: {
|
|
27
|
-
paymentMethod:
|
|
28
|
-
active:
|
|
29
|
-
accountCode:
|
|
26
|
+
export declare function useToggleMethod({ paymentMethod, active, accountCode, routingType, }: {
|
|
27
|
+
paymentMethod: string;
|
|
28
|
+
active: boolean;
|
|
29
|
+
accountCode: string;
|
|
30
|
+
routingType?: SmartRouting.RoutingType;
|
|
30
31
|
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
32
|
+
export interface ToggleMethodItem {
|
|
33
|
+
paymentMethod: string;
|
|
34
|
+
routingType: SmartRouting.RoutingType;
|
|
35
|
+
active: boolean;
|
|
36
|
+
}
|
|
37
|
+
export interface BulkToggleResult {
|
|
38
|
+
success: number;
|
|
39
|
+
failed: number;
|
|
40
|
+
total: number;
|
|
41
|
+
errors: Array<{
|
|
42
|
+
paymentMethod: string;
|
|
43
|
+
error: any;
|
|
44
|
+
}>;
|
|
45
|
+
}
|
|
46
|
+
export declare function useBulkToggleMethod(accountCode: string, options?: any): UseMutationResult<BulkToggleResult, unknown, ToggleMethodItem[]>;
|
|
31
47
|
export declare function useSmartRoutingUpdateDeclinedGroup({ declinedId, accountCode }: {
|
|
32
48
|
declinedId: string;
|
|
33
49
|
accountCode: string;
|
|
@@ -36,9 +52,10 @@ export declare function useSmartRoutingCreateDeclinedGroup({ accountCode, option
|
|
|
36
52
|
accountCode: any;
|
|
37
53
|
options: any;
|
|
38
54
|
}): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
39
|
-
export declare function useSmartRoutingToggleFavorite({ versionCode, accountCode }: {
|
|
55
|
+
export declare function useSmartRoutingToggleFavorite({ versionCode, accountCode, routingType, }: {
|
|
40
56
|
versionCode: string;
|
|
41
57
|
accountCode: string;
|
|
58
|
+
routingType?: SmartRouting.RoutingType;
|
|
42
59
|
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersions, unknown>;
|
|
43
60
|
export declare function useSmartRoutingEditWorkflowName({ code, name, accountCode, routingType, }: {
|
|
44
61
|
code: string;
|
|
@@ -46,9 +63,10 @@ export declare function useSmartRoutingEditWorkflowName({ code, name, accountCod
|
|
|
46
63
|
accountCode: string;
|
|
47
64
|
routingType?: SmartRouting.RoutingType;
|
|
48
65
|
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
49
|
-
export declare function useSmartRoutingSimulateTransaction({ accountCode, workflowVersionCode, }: {
|
|
66
|
+
export declare function useSmartRoutingSimulateTransaction({ accountCode, workflowVersionCode, routingType, }: {
|
|
50
67
|
workflowVersionCode: string;
|
|
51
68
|
accountCode: string;
|
|
69
|
+
routingType?: SmartRouting.RoutingType;
|
|
52
70
|
}, options?: any): UseMutationResult<any, unknown>;
|
|
53
71
|
export declare function useSmartRoutingUpdateMonitorRedistribution(organizationCode: string, options?: any): UseMutationResult<any, unknown>;
|
|
54
72
|
export interface BFFErrorResponse {
|
|
@@ -3,7 +3,7 @@ import { Audit } from '../../types';
|
|
|
3
3
|
import { AxiosError } from 'axios';
|
|
4
4
|
import { BFFErrorResponse } from '../../mutations';
|
|
5
5
|
export interface UseGetApiLogsV3Options {
|
|
6
|
-
|
|
6
|
+
paymentCode: string;
|
|
7
7
|
enabled?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare function useGetApiLogsV3({
|
|
9
|
+
export declare function useGetApiLogsV3({ paymentCode, enabled, }: UseGetApiLogsV3Options): UseQueryResult<Audit.ApiLogsV3Response, AxiosError<BFFErrorResponse>>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import type { Organization } from '../../types';
|
|
3
|
+
import { SmartRouting } from '../../types';
|
|
3
4
|
import { CustomAxiosResponse } from '../../utils/handler-error';
|
|
4
5
|
import { AxiosError } from 'axios';
|
|
5
6
|
import { BFFErrorResponse } from '../../mutations';
|
|
@@ -19,9 +20,10 @@ export declare function useGetIntegrationByAccountV2({ accountCode, organization
|
|
|
19
20
|
accountCode: string;
|
|
20
21
|
organizationCode: string;
|
|
21
22
|
}): UseQueryResult<Organization.Integration[], CustomAxiosResponse<null>>;
|
|
22
|
-
export declare function useGetConnectionsByPaymentMethod({ accountCode, paymentMethod, }: {
|
|
23
|
+
export declare function useGetConnectionsByPaymentMethod({ accountCode, paymentMethod, basePath, }: {
|
|
23
24
|
accountCode: string;
|
|
24
25
|
paymentMethod: string;
|
|
26
|
+
basePath?: SmartRouting.RoutingType;
|
|
25
27
|
}): UseQueryResult<Organization.Connections[], AxiosError<BFFErrorResponse, any>>;
|
|
26
28
|
export declare function useGetHashPylon(): UseQueryResult<{
|
|
27
29
|
data: string;
|
|
@@ -17,7 +17,7 @@ export declare function useGetSmartRoutingWorkflowVersion({ accountCode, workflo
|
|
|
17
17
|
}): UseQueryResult<SmartRouting.WorkflowVersion & ErrorProp, unknown>;
|
|
18
18
|
export declare function useGetSmartRoutingNextRoute(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): UseQueryResult<string[] & ErrorProp, unknown>;
|
|
19
19
|
export declare function useGetSmartRoutingDeclineGroups(accountCode: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.DeclineGroups & ErrorProp, unknown>;
|
|
20
|
-
export declare function useGetSmartRoutingPaymentRoute(accountCode: string, paymentId: string): UseQueryResult<SmartRouting.PaymentRoutes & ErrorProp, unknown>;
|
|
20
|
+
export declare function useGetSmartRoutingPaymentRoute(accountCode: string, paymentId: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.PaymentRoutes & ErrorProp, unknown>;
|
|
21
21
|
export declare function useGetSmartRoutingSimulateConditionTypeValues(accountCode: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.AllConditionTypeValues & ErrorProp, unknown>;
|
|
22
22
|
export declare function useGetSmartRoutingSearchConditionValues({ text, conditionType, }: {
|
|
23
23
|
text: string;
|
|
@@ -3,7 +3,7 @@ import { Audit } from '../../types';
|
|
|
3
3
|
import { AxiosError } from 'axios';
|
|
4
4
|
import { BFFErrorResponse } from '../../mutations';
|
|
5
5
|
export interface UseGetWebhookTimelineOptions {
|
|
6
|
-
|
|
6
|
+
paymentCode: string;
|
|
7
7
|
enabled?: boolean;
|
|
8
8
|
}
|
|
9
|
-
export declare function useGetWebhookTimeline({
|
|
9
|
+
export declare function useGetWebhookTimeline({ paymentCode, enabled, }: UseGetWebhookTimelineOptions): UseQueryResult<Audit.WebhookTimelineResponse, AxiosError<BFFErrorResponse>>;
|
|
@@ -106,6 +106,7 @@ export declare namespace SmartRouting {
|
|
|
106
106
|
created_at: string;
|
|
107
107
|
updated_at: string;
|
|
108
108
|
payment_method_type: string;
|
|
109
|
+
withdrawal_method_type: string;
|
|
109
110
|
is_active: boolean;
|
|
110
111
|
payment_method_description?: string;
|
|
111
112
|
}
|
|
@@ -130,6 +131,7 @@ export declare namespace SmartRouting {
|
|
|
130
131
|
id: number;
|
|
131
132
|
code: string;
|
|
132
133
|
payment_method_type: string;
|
|
134
|
+
withdrawal_method_type: string;
|
|
133
135
|
account_code: string;
|
|
134
136
|
payment_method_data: {
|
|
135
137
|
logo: string | null;
|
|
@@ -160,6 +162,7 @@ export declare namespace SmartRouting {
|
|
|
160
162
|
export interface ConditionType {
|
|
161
163
|
name: string;
|
|
162
164
|
payment_method_type?: string;
|
|
165
|
+
withdrawal_method_type?: string;
|
|
163
166
|
value_source: ValueSource;
|
|
164
167
|
description: string;
|
|
165
168
|
icon: string;
|
package/build/index.d.ts
CHANGED
|
@@ -1135,6 +1135,7 @@ declare namespace Connection {
|
|
|
1135
1135
|
provider_id: string;
|
|
1136
1136
|
name: string;
|
|
1137
1137
|
payment_method_type: string;
|
|
1138
|
+
withdrawal_method_type: string;
|
|
1138
1139
|
country: string;
|
|
1139
1140
|
params: Params[];
|
|
1140
1141
|
}
|
|
@@ -2264,6 +2265,7 @@ declare namespace SmartRouting {
|
|
|
2264
2265
|
created_at: string;
|
|
2265
2266
|
updated_at: string;
|
|
2266
2267
|
payment_method_type: string;
|
|
2268
|
+
withdrawal_method_type: string;
|
|
2267
2269
|
is_active: boolean;
|
|
2268
2270
|
payment_method_description?: string;
|
|
2269
2271
|
}
|
|
@@ -2288,6 +2290,7 @@ declare namespace SmartRouting {
|
|
|
2288
2290
|
id: number;
|
|
2289
2291
|
code: string;
|
|
2290
2292
|
payment_method_type: string;
|
|
2293
|
+
withdrawal_method_type: string;
|
|
2291
2294
|
account_code: string;
|
|
2292
2295
|
payment_method_data: {
|
|
2293
2296
|
logo: string | null;
|
|
@@ -2318,6 +2321,7 @@ declare namespace SmartRouting {
|
|
|
2318
2321
|
export interface ConditionType {
|
|
2319
2322
|
name: string;
|
|
2320
2323
|
payment_method_type?: string;
|
|
2324
|
+
withdrawal_method_type?: string;
|
|
2321
2325
|
value_source: ValueSource;
|
|
2322
2326
|
description: string;
|
|
2323
2327
|
icon: string;
|
|
@@ -4322,6 +4326,7 @@ declare namespace Audit {
|
|
|
4322
4326
|
search?: string;
|
|
4323
4327
|
time_zone?: string;
|
|
4324
4328
|
now?: string;
|
|
4329
|
+
payment_code?: string;
|
|
4325
4330
|
}
|
|
4326
4331
|
interface WebhookTimelineItem {
|
|
4327
4332
|
id: number;
|
|
@@ -5605,11 +5610,27 @@ declare function useDuplicateVersion({ versionCode, accountCode, routingType, }:
|
|
|
5605
5610
|
accountCode: string;
|
|
5606
5611
|
routingType?: SmartRouting.RoutingType;
|
|
5607
5612
|
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersion, unknown>;
|
|
5608
|
-
declare function useToggleMethod({ paymentMethod, active, accountCode }: {
|
|
5609
|
-
paymentMethod:
|
|
5610
|
-
active:
|
|
5611
|
-
accountCode:
|
|
5613
|
+
declare function useToggleMethod({ paymentMethod, active, accountCode, routingType, }: {
|
|
5614
|
+
paymentMethod: string;
|
|
5615
|
+
active: boolean;
|
|
5616
|
+
accountCode: string;
|
|
5617
|
+
routingType?: SmartRouting.RoutingType;
|
|
5612
5618
|
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
5619
|
+
interface ToggleMethodItem {
|
|
5620
|
+
paymentMethod: string;
|
|
5621
|
+
routingType: SmartRouting.RoutingType;
|
|
5622
|
+
active: boolean;
|
|
5623
|
+
}
|
|
5624
|
+
interface BulkToggleResult {
|
|
5625
|
+
success: number;
|
|
5626
|
+
failed: number;
|
|
5627
|
+
total: number;
|
|
5628
|
+
errors: Array<{
|
|
5629
|
+
paymentMethod: string;
|
|
5630
|
+
error: any;
|
|
5631
|
+
}>;
|
|
5632
|
+
}
|
|
5633
|
+
declare function useBulkToggleMethod(accountCode: string, options?: any): UseMutationResult<BulkToggleResult, unknown, ToggleMethodItem[]>;
|
|
5613
5634
|
declare function useSmartRoutingUpdateDeclinedGroup({ declinedId, accountCode }: {
|
|
5614
5635
|
declinedId: string;
|
|
5615
5636
|
accountCode: string;
|
|
@@ -5618,9 +5639,10 @@ declare function useSmartRoutingCreateDeclinedGroup({ accountCode, options, }: {
|
|
|
5618
5639
|
accountCode: any;
|
|
5619
5640
|
options: any;
|
|
5620
5641
|
}): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
5621
|
-
declare function useSmartRoutingToggleFavorite({ versionCode, accountCode }: {
|
|
5642
|
+
declare function useSmartRoutingToggleFavorite({ versionCode, accountCode, routingType, }: {
|
|
5622
5643
|
versionCode: string;
|
|
5623
5644
|
accountCode: string;
|
|
5645
|
+
routingType?: SmartRouting.RoutingType;
|
|
5624
5646
|
}, options?: any): UseMutationResult<SmartRouting.WorkflowVersions, unknown>;
|
|
5625
5647
|
declare function useSmartRoutingEditWorkflowName({ code, name, accountCode, routingType, }: {
|
|
5626
5648
|
code: string;
|
|
@@ -5628,9 +5650,10 @@ declare function useSmartRoutingEditWorkflowName({ code, name, accountCode, rout
|
|
|
5628
5650
|
accountCode: string;
|
|
5629
5651
|
routingType?: SmartRouting.RoutingType;
|
|
5630
5652
|
}, options?: any): UseMutationResult<SmartRouting.PaymentMethods, unknown>;
|
|
5631
|
-
declare function useSmartRoutingSimulateTransaction({ accountCode, workflowVersionCode, }: {
|
|
5653
|
+
declare function useSmartRoutingSimulateTransaction({ accountCode, workflowVersionCode, routingType, }: {
|
|
5632
5654
|
workflowVersionCode: string;
|
|
5633
5655
|
accountCode: string;
|
|
5656
|
+
routingType?: SmartRouting.RoutingType;
|
|
5634
5657
|
}, options?: any): UseMutationResult<any, unknown>;
|
|
5635
5658
|
declare function useSmartRoutingUpdateMonitorRedistribution(organizationCode: string, options?: any): UseMutationResult<any, unknown>;
|
|
5636
5659
|
interface BFFErrorResponse {
|
|
@@ -6030,9 +6053,10 @@ declare function useGetIntegrationByAccountV2({ accountCode, organizationCode, }
|
|
|
6030
6053
|
accountCode: string;
|
|
6031
6054
|
organizationCode: string;
|
|
6032
6055
|
}): UseQueryResult<Organization.Integration[], CustomAxiosResponse<null>>;
|
|
6033
|
-
declare function useGetConnectionsByPaymentMethod({ accountCode, paymentMethod, }: {
|
|
6056
|
+
declare function useGetConnectionsByPaymentMethod({ accountCode, paymentMethod, basePath, }: {
|
|
6034
6057
|
accountCode: string;
|
|
6035
6058
|
paymentMethod: string;
|
|
6059
|
+
basePath?: SmartRouting.RoutingType;
|
|
6036
6060
|
}): UseQueryResult<Organization.Connections[], AxiosError<BFFErrorResponse, any>>;
|
|
6037
6061
|
declare function useGetHashPylon(): UseQueryResult<{
|
|
6038
6062
|
data: string;
|
|
@@ -6117,7 +6141,7 @@ declare function useGetSmartRoutingWorkflowVersion({ accountCode, workflowVersio
|
|
|
6117
6141
|
}): UseQueryResult<SmartRouting.WorkflowVersion & ErrorProp, unknown>;
|
|
6118
6142
|
declare function useGetSmartRoutingNextRoute(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): UseQueryResult<string[] & ErrorProp, unknown>;
|
|
6119
6143
|
declare function useGetSmartRoutingDeclineGroups(accountCode: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.DeclineGroups & ErrorProp, unknown>;
|
|
6120
|
-
declare function useGetSmartRoutingPaymentRoute(accountCode: string, paymentId: string): UseQueryResult<SmartRouting.PaymentRoutes & ErrorProp, unknown>;
|
|
6144
|
+
declare function useGetSmartRoutingPaymentRoute(accountCode: string, paymentId: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.PaymentRoutes & ErrorProp, unknown>;
|
|
6121
6145
|
declare function useGetSmartRoutingSimulateConditionTypeValues(accountCode: string, routingType?: SmartRouting.RoutingType): UseQueryResult<SmartRouting.AllConditionTypeValues & ErrorProp, unknown>;
|
|
6122
6146
|
declare function useGetSmartRoutingSearchConditionValues({ text, conditionType, }: {
|
|
6123
6147
|
text: string;
|
|
@@ -6659,16 +6683,16 @@ declare function useGetInstallmentsPlans(accountCode: string, enabled?: boolean,
|
|
|
6659
6683
|
declare function useSearchInstallmentsPlans(payload: Installments.SearchInstallmentsPlansRequest, enabled?: boolean): UseQueryResult<Installments.SearchInstallmentsPlansResponse, Error>;
|
|
6660
6684
|
|
|
6661
6685
|
interface UseGetApiLogsV3Options {
|
|
6662
|
-
|
|
6686
|
+
paymentCode: string;
|
|
6663
6687
|
enabled?: boolean;
|
|
6664
6688
|
}
|
|
6665
|
-
declare function useGetApiLogsV3({
|
|
6689
|
+
declare function useGetApiLogsV3({ paymentCode, enabled, }: UseGetApiLogsV3Options): UseQueryResult<Audit.ApiLogsV3Response, AxiosError<BFFErrorResponse>>;
|
|
6666
6690
|
|
|
6667
6691
|
interface UseGetWebhookTimelineOptions {
|
|
6668
|
-
|
|
6692
|
+
paymentCode: string;
|
|
6669
6693
|
enabled?: boolean;
|
|
6670
6694
|
}
|
|
6671
|
-
declare function useGetWebhookTimeline({
|
|
6695
|
+
declare function useGetWebhookTimeline({ paymentCode, enabled, }: UseGetWebhookTimelineOptions): UseQueryResult<Audit.WebhookTimelineResponse, AxiosError<BFFErrorResponse>>;
|
|
6672
6696
|
|
|
6673
6697
|
interface CreateChartGPTChartPayload {
|
|
6674
6698
|
user_prompt: string;
|
|
@@ -6884,7 +6908,7 @@ declare class Api extends HttpClient {
|
|
|
6884
6908
|
accountCode: any;
|
|
6885
6909
|
integration_code: any;
|
|
6886
6910
|
}): Promise<AxiosResponse<T, any>>;
|
|
6887
|
-
getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T>>;
|
|
6911
|
+
getConnectionsByPaymentMethod<T>(accountCode: string, paymentMethod: string, basePath?: SmartRouting.RoutingType): Promise<AxiosResponse<T>>;
|
|
6888
6912
|
getHashPylon<T>(): Promise<AxiosResponse<T>>;
|
|
6889
6913
|
getConnections<T>(): Promise<AxiosResponse<T, any>>;
|
|
6890
6914
|
getOnboardingStatus<T>(accountCode: string): Promise<AxiosResponse<T, any>>;
|
|
@@ -6931,8 +6955,8 @@ declare class Api extends HttpClient {
|
|
|
6931
6955
|
postResendWebhooks<T>({ codes, }: Audit.AuditWebhooksResendParams): Promise<AxiosResponse<T>>;
|
|
6932
6956
|
postExportApiLogs<T>(payload: Audit.ExportApiLogsRequest): Promise<AxiosResponse<T>>;
|
|
6933
6957
|
postExportWebhooksLogs<T>(payload: Audit.ExportWebhooksLogsRequest): Promise<AxiosResponse<T>>;
|
|
6934
|
-
getApiLogsV3<T>(
|
|
6935
|
-
getWebhookTimeline<T>(
|
|
6958
|
+
getApiLogsV3<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
6959
|
+
getWebhookTimeline<T>(paymentCode: string): Promise<AxiosResponse<T>>;
|
|
6936
6960
|
postExportDashboardLogs<T>(payload: Audit.ExportDashboardLogsRequest): Promise<AxiosResponse<T>>;
|
|
6937
6961
|
postExportMonitorsLogs<T>(payload: Audit.ExportMonitorsLogsRequest): Promise<AxiosResponse<T>>;
|
|
6938
6962
|
getAuditExportsList<T>(reportType: Audit.AuditExportReportType): Promise<AxiosResponse<T>>;
|
|
@@ -6956,11 +6980,13 @@ declare class Api extends HttpClient {
|
|
|
6956
6980
|
getDashboardStaticContents<T>(): Promise<AxiosResponse<T, any>>;
|
|
6957
6981
|
getLocales<T>(): Promise<AxiosResponse<T, any>>;
|
|
6958
6982
|
getSmartRoutingMethods<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6959
|
-
putSmartRoutingToggleMethod<T>(accountCode: string, paymentMethod: string, active: boolean): Promise<AxiosResponse<T, any>>;
|
|
6983
|
+
putSmartRoutingToggleMethod<T>(accountCode: string, paymentMethod: string, active: boolean, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6960
6984
|
getSmartRoutingConditionTypes<T>(accountCode: string, paymentMethod: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6961
6985
|
getSmartRoutingConditionPaymentMethod<T>(accountCode: string, paymentMethod: string): Promise<AxiosResponse<T, any>>;
|
|
6962
6986
|
getSmartRoutingConditionTypesValues<T>(accountCode: string, index: number): Promise<AxiosResponse<T, any>>;
|
|
6963
|
-
getSmartRoutingNextSteps<T>(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T,
|
|
6987
|
+
getSmartRoutingNextSteps<T>(accountCode: string, stepType: string, status: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, {
|
|
6988
|
+
actions: string[];
|
|
6989
|
+
} | string[]>>;
|
|
6964
6990
|
getSmartRoutingWorkflowVersion<T>(accountCode: string, workflowVersionId: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6965
6991
|
getSmartRoutingWorkflow<T>(accountCode: string, paymentName: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6966
6992
|
putSmartRoutingUpdateWorkflow<T>(accountCode: string, data: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
@@ -6975,10 +7001,10 @@ declare class Api extends HttpClient {
|
|
|
6975
7001
|
getSmartRoutingDeclinedGroup<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6976
7002
|
updateSmartRoutingDeclinedGroup<T>(accountCode: string, declineId: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
6977
7003
|
createSmartRoutingDeclinedGroup<T>(accountCode: string, payload: any): Promise<AxiosResponse<T, any>>;
|
|
6978
|
-
getSmartRoutingPaymentRoute<T>(accountCode: string, paymentId: string): Promise<AxiosResponse<T, SmartRouting.PaymentRoutes>>;
|
|
6979
|
-
updateSmartRoutingFavorite<T>(accountCode: string, versionCode: string, favorite: boolean): Promise<AxiosResponse<T, any>>;
|
|
7004
|
+
getSmartRoutingPaymentRoute<T>(accountCode: string, paymentId: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, SmartRouting.PaymentRoutes>>;
|
|
7005
|
+
updateSmartRoutingFavorite<T>(accountCode: string, versionCode: string, favorite: boolean, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6980
7006
|
getSmartRoutingSimulateConditionTypeValues<T>(accountCode: string, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
|
|
6981
|
-
simulateSmartRoutingTransaction<T>(accountCode: string, workflowVersionCode: string, values: any): Promise<AxiosResponse<T, any>>;
|
|
7007
|
+
simulateSmartRoutingTransaction<T>(accountCode: string, workflowVersionCode: string, values: any, routingType?: SmartRouting.RoutingType): Promise<AxiosResponse<T, any>>;
|
|
6982
7008
|
getSmartRoutingSearchConditionValues<T>(conditionType: string, text: string): Promise<AxiosResponse<T, SmartRouting.ConditionTypeValues[]>>;
|
|
6983
7009
|
getProviderConversionRatesData<T>(): Promise<AxiosResponse<T, SmartRouting.SRConversionRates[]>>;
|
|
6984
7010
|
updateMonitorRedistribution<T>(organizationCode: string, values: SmartRouting.MonitorRedistribution): Promise<AxiosResponse<T, any>>;
|
|
@@ -7462,5 +7488,5 @@ declare const useOrganizationCode: () => any;
|
|
|
7462
7488
|
|
|
7463
7489
|
declare const useAccountCode: () => any;
|
|
7464
7490
|
|
|
7465
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useBulkCreateInstallmentsPlans, useBulkDeleteInstallmentsPlans, useCachedFeatureFlag, useCancelReport, useCancelSubscription, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChangeTemplateStatus, useChargebacksUpload, useChartAssistantSocket, useChartExecute, useCloneTemplate, useCommunicationDetails, useCommunications, useCommunicationsByDay, useCommunicationsBySubstatus, useCommunicationsFilters, useCommunicationsSubstatusByDay, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateAndExecuteChartWithTimezone, useCreateChart, useCreateChartWithTimezone, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetApiLogsV3, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, 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, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, 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, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
|
|
7466
|
-
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChangeTemplateStatusRequest, ChargebacksCount, ChargebacksVolume, ChartFeedbackData, ChartFeedbackRequest, ChartFeedbackResponse, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, CloneTemplateRequest, ColumnModeType, CommunicationDistribution, CommunicationStatusDistribution, CommunicationsByDayResponse, CommunicationsBySubStatus, CommunicationsBySubstatusResponse, CommunicationsSubstatusByDayResponse, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetApiLogsV3Options, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseGetWebhookTimelineOptions, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
|
|
7491
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, DuplicateSetting, FEEDBACK_ISSUE_OPTIONS, FraudScreening, Installments, MFA, Notifications, Onboarding, OperationTransaction, Organization, OrganizationConfig, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, PendingDuplicateAccountStatus, Recipients, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationInsights, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateReporting, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyPaymentMethodAccounts, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAccountCode, useAddToRiskList, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, 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, useCreateInstallmentsPlan, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReconciliationsReportV3, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateSchedule, useCreateScheduledReport, useCreateSubscription, useCreateTemplate, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeleteInstallmentsPlan, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteReportTemplate, useDeleteRoles, useDeleteSamlConfig, useDeleteSchedule, useDeleteScheduledReport, useDeleteTemplate, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDisableSchedule, useDuplicateAccount, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useExportApiLogs, useExportDashboardLogs, useExportMonitorsLogs, useExportWebhooksLogs, useFeatureFlags, useFetchUserExportDetail, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsForImpersonation, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetApiLogsByTransactionCode, useGetApiLogsDetailByPaymentCode, useGetApiLogsV3, useGetAuditEvents, useGetAuditExportDownload, useGetAuditExportsList, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartFeedback, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCountryData, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetInstallmentsPlans, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNetworkTokensOnboardingByOrganization, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOnboardingDetail, useGetOnboardingStatus, useGetOnboardingTimeline, useGetOrganization, useGetOrganizationConfigs, useGetOrganizationKeysMetadata, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodAccounts, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTimeline, useGetPayoutTransactionDetail, useGetPendingDuplicateAccounts, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetRecipientById, useGetRecipients, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationInsightsAmountConflictAggregators, useGetReconciliationInsightsAmountConflictList, useGetReconciliationInsightsAmountToBeSettledSummary, useGetReconciliationInsightsConflictDateAggregators, useGetReconciliationInsightsConflictDateList, useGetReconciliationInsightsConflictDateSummary, useGetReconciliationInsightsConflictsSummary, useGetReconciliationInsightsFeesChargedSummary, useGetReconciliationInsightsIncorrectFeesAggregators, useGetReconciliationInsightsIncorrectFeesList, useGetReconciliationInsightsIncorrectFeesSummary, useGetReconciliationInsightsNotConfirmAggregators, useGetReconciliationInsightsNotConfirmList, useGetReconciliationInsightsNotConfirmSummary, useGetReconciliationInsightsNotReconciledAggregators, useGetReconciliationInsightsNotReconciledList, useGetReconciliationInsightsReconciledAggregators, useGetReconciliationInsightsReconciledList, useGetReconciliationInsightsReconciledSummary, useGetReconciliationInsightsReconciliationRateByAccount, useGetReconciliationInsightsReconciliationRateByCurrency, useGetReconciliationInsightsReconciliationRateByProvider, useGetReconciliationInsightsStatusConflictAggregators, useGetReconciliationInsightsStatusConflictList, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, 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, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUnifiedExportStatus, useGetUnifiedExportsList, useGetUserExportStatus, useGetUserFull, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhookTimeline, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useInviteUsersMultiaccountMassiveV2, useIsTesting, useListSubscriptions, useListUserExports, useLocalStorage, useLoginMethods, useNetworkTokensOnboarding, useNewPostConnectionValidate, useOrganizationCode, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, 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, useToggleMethod, useUnInviteUsersV2, useUnifiedExportStart, useUnrollUserV2, useUpdateInstallmentsPlan, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateSubscription, useUpdateTemplateSelection, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics, useWorkosAdminPortal, useWorkosPasswordReset, useWorkosVerifyMfa };
|
|
7492
|
+
export type { AccountRoles, AddToRiskListRequest, AddToRiskListResponse, AllowlistMultiAccount, AvailableColumn, BFFErrorResponse, Blacklist, 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, CreateScheduleRequest, CreateTemplateRequest, DailyCommunicationsAndConversionRate, DailyCommunicationsSubStatusDistribution, DateFilter, DateFilterSelection, DateFilterValue, DatePresetType, DeleteResponse, DeleteScheduleRequest, DeleteTemplateRequest, DisableScheduleRequest, DuplicateAccountBody, DuplicateAccountResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FeedbackIssueOption, FeedbackIssueType, FeedbackRating, FilterBase, FilterDefinition, FilterKindType, FilterSelection, FilterSelectionBase, FirebaseUserSubscribe, FormatType, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, FrequencyType, GetApiLogsParams, GetOnboardingDetailParams, GetOnboardingTimelineParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetRecipientByIdParams, GetRecipientsParams, GetReconciliationMetricParams, GetSchedulesListResponse, GetTemplatesListResponse, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, GetUserFullResponse, IChangePassword, ICreateReconciliationsReportV3Request, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, ListSubscriptionsParams, MfaUserPayload, MfaUserSubscribe, MultiSelectFilter, MultiSelectFilterSelection, MultiSelectFilterValue, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PendingDuplicateAccount, PendingDuplicateAccountsResponse, PeriodicityRecord, PinnedSections, Plot, PlotRow, PostBlackList, ProviderStyled, RangeFilter, RangeFilterSelection, RangeFilterValue, ReconAgendaProps, RecoveredPayments, RecoveredPaymentsByDayResponse, RecoveredTPV, RecoveredTPVByDayResponse, RefundPdfResponse, ReportSchedule, ReportScheduleExecution, ReportTemplate, ReportTemplateMetadata, ResponseValidatePasswordRegularUser, RetryDuplicateAccountBody, RetryDuplicateAccountResponse, ScheduleExecutionStatusType, ScheduleWithExecutions, ScheduleWithTemplate, SearchScheduleByIdRequest, SearchSchedulesRequest, SearchTemplateByIdRequest, SearchTemplatesRequest, SmartRecoveryOverviewFilters, SmartRecoveryOverviewQueryParams, TemplateMetadata, TemplateReportingError, TemplateSelection, TemplateStatusType, TemplateVariantType, TemplateWithMetadata, ThemeSettings, TimeZoneCatalog, ToggleMethodItem, TotalTimeline, TransactionHistory, UnifiedExportStartParams, UnifiedExportStatusQueryParams, UnifiedExportsListQueryParams, UpdateTemplateSelectionRequest, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UseGetApiLogsV3Options, UseGetChartFeedbackParams, UseGetOnboardingStatusParams, UseGetWebhookTimelineOptions, UseSubmitChartFeedbackOptions, UseSubmitChartFeedbackParams, UserInviteMultiaccountPayload, WebSocketMessage };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@rollup/plugin-image": "^3.0.2",
|
|
48
48
|
"@rollup/plugin-json": "^6.0.0",
|
|
49
49
|
"@rollup/plugin-node-resolve": "^15.2.1",
|
|
50
|
-
"@rollup/plugin-terser": "^0.
|
|
50
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
51
51
|
"@rollup/plugin-typescript": "^11.1.4",
|
|
52
52
|
"@rspack/cli": "^1.2.6",
|
|
53
53
|
"@rspack/core": "^1.5.2",
|