@yuno-payments/dashboard-api-mfe 0.36.41-beta.5 → 0.36.42-CORECM-12914.1
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 +18 -3
- package/build/cjs/types/mutations/checkouts/index.d.ts +1 -0
- package/build/cjs/types/mutations/checkouts/styling/styling.mutation.d.ts +2 -0
- package/build/cjs/types/queries/checkouts/styling/styling.query.d.ts +13 -1
- package/build/cjs/types/queries/smart-routing/smart-routing.query.d.ts +1 -3
- package/build/cjs/types/types/checkout/styling/styling.d.ts +70 -0
- package/build/cjs/types/types/organization/organization.d.ts +0 -1
- package/build/cjs/types/types/smart-routing/smart-routing.d.ts +0 -3
- package/build/esm/index.js +7 -7
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/api/api.d.ts +18 -3
- package/build/esm/types/mutations/checkouts/index.d.ts +1 -0
- package/build/esm/types/mutations/checkouts/styling/styling.mutation.d.ts +2 -0
- package/build/esm/types/queries/checkouts/styling/styling.query.d.ts +13 -1
- package/build/esm/types/queries/smart-routing/smart-routing.query.d.ts +1 -3
- package/build/esm/types/types/checkout/styling/styling.d.ts +70 -0
- package/build/esm/types/types/organization/organization.d.ts +0 -1
- package/build/esm/types/types/smart-routing/smart-routing.d.ts +0 -3
- package/build/index.d.ts +240 -147
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import { ChangePaymentsWebhook } from '../mutations';
|
|
|
8
8
|
import { S3Client } from '../types/s3-client';
|
|
9
9
|
import { AllowedList } from '../types/allowed-list';
|
|
10
10
|
import { Cost } from '../types/connection/costs';
|
|
11
|
-
import { Styling, StylingSettings } from '../types/checkout/styling/styling';
|
|
11
|
+
import { Styling, StylingSettings, UpdateStylingThemeParams } from '../types/checkout/styling/styling';
|
|
12
12
|
import { FeatureFlags } from '../types/feature-flags/intex';
|
|
13
13
|
import { FeatureFlagsResult } from '../queries';
|
|
14
14
|
interface S3Payload {
|
|
@@ -213,7 +213,23 @@ export declare class Api extends HttpClient {
|
|
|
213
213
|
getStylingSdkDynamic({ accountCode }: {
|
|
214
214
|
accountCode: any;
|
|
215
215
|
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
216
|
-
|
|
216
|
+
/**
|
|
217
|
+
* @deprecated since version 0.36.27. use getStylingSettings instead
|
|
218
|
+
*/
|
|
219
|
+
getStylingTheme({ accountCode }: {
|
|
220
|
+
accountCode: string;
|
|
221
|
+
}): Promise<AxiosResponse<Styling.Theme, any>>;
|
|
222
|
+
/**
|
|
223
|
+
* @deprecated since version 0.36.27. use changeStylingSettings instead
|
|
224
|
+
*/
|
|
225
|
+
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
|
|
226
|
+
/**
|
|
227
|
+
* @deprecated since version 0.36.27. use getStylingSettingsV2 instead
|
|
228
|
+
*/
|
|
229
|
+
getStylingSettings({ accountCode }: {
|
|
230
|
+
accountCode: any;
|
|
231
|
+
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
232
|
+
getStylingSettingsV2({ accountCode, environment, }: {
|
|
217
233
|
accountCode: string;
|
|
218
234
|
environment?: string;
|
|
219
235
|
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
@@ -464,7 +480,6 @@ export declare class Api extends HttpClient {
|
|
|
464
480
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
465
481
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
466
482
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
467
|
-
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
468
483
|
createChartGPTChart<T>(payload: {
|
|
469
484
|
user_prompt: string;
|
|
470
485
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -2,7 +2,19 @@ import { StylingSettings } from '../../../types/checkout/styling/styling';
|
|
|
2
2
|
export declare function useGetStylingSdkDynamic({ accountCode, }: {
|
|
3
3
|
accountCode: string;
|
|
4
4
|
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
|
|
5
|
-
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
|
|
7
|
+
*/
|
|
8
|
+
export declare function useGetStylingTheme({ accountCode }: {
|
|
9
|
+
accountCode: string;
|
|
10
|
+
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Theme, unknown>;
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
|
|
13
|
+
*/
|
|
14
|
+
export declare function useGetStylingSettings({ accountCode, }: {
|
|
15
|
+
accountCode: string;
|
|
16
|
+
}): import("@tanstack/react-query").UseQueryResult<import("../../../types/checkout/styling/styling").Styling.Settings, unknown>;
|
|
17
|
+
export declare function useGetStylingSettingsV2({ accountCode, environment, }: {
|
|
6
18
|
accountCode: string;
|
|
7
19
|
environment?: string;
|
|
8
20
|
}): import("@tanstack/react-query").UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { UseQueryResult } from '@tanstack/react-query';
|
|
2
2
|
import { SmartRouting } from '../../types';
|
|
3
|
-
import {
|
|
4
|
-
import { BFFErrorResponse } from '../../mutations';
|
|
3
|
+
import { AxiosResponse } from 'axios';
|
|
5
4
|
export interface ErrorProp {
|
|
6
5
|
name?: string;
|
|
7
6
|
}
|
|
@@ -27,4 +26,3 @@ export declare function useGetSmartRoutingSearchConditionValues({ text, conditio
|
|
|
27
26
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
28
27
|
export declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
29
28
|
export declare function use3DSExemptions(): UseQueryResult<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
30
|
-
export declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
|
|
@@ -135,3 +135,73 @@ export declare enum VisualizationMode {
|
|
|
135
135
|
ONE_STEP = "ONE_STEP",
|
|
136
136
|
STEP_BY_STEP = "STEP_BY_STEP"
|
|
137
137
|
}
|
|
138
|
+
/**
|
|
139
|
+
* @deprecated since version 0.36.27. Remove all the code below when new styling section is fully implemented
|
|
140
|
+
*/
|
|
141
|
+
type Mode = 'default';
|
|
142
|
+
interface Spacing {
|
|
143
|
+
top: number;
|
|
144
|
+
right: number;
|
|
145
|
+
bottom: number;
|
|
146
|
+
left: number;
|
|
147
|
+
}
|
|
148
|
+
interface BorderRadius {
|
|
149
|
+
top_left: number;
|
|
150
|
+
top_right: number;
|
|
151
|
+
bottom_right: number;
|
|
152
|
+
bottom_left: number;
|
|
153
|
+
}
|
|
154
|
+
interface Decorator {
|
|
155
|
+
hover: StyleProps;
|
|
156
|
+
disabled: StyleProps;
|
|
157
|
+
focused: StyleProps;
|
|
158
|
+
error: StyleProps;
|
|
159
|
+
}
|
|
160
|
+
type StyleProps = {
|
|
161
|
+
color: string;
|
|
162
|
+
font_family: string;
|
|
163
|
+
font_size: number;
|
|
164
|
+
font_weight: string | number;
|
|
165
|
+
line_height: number;
|
|
166
|
+
padding: Spacing;
|
|
167
|
+
margin: Spacing;
|
|
168
|
+
background_color: string;
|
|
169
|
+
border_radius: BorderRadius;
|
|
170
|
+
decorator: Decorator;
|
|
171
|
+
text_align: string;
|
|
172
|
+
width: number;
|
|
173
|
+
height: number;
|
|
174
|
+
weight: number;
|
|
175
|
+
border_color: string;
|
|
176
|
+
border_style: string;
|
|
177
|
+
border_width: number;
|
|
178
|
+
};
|
|
179
|
+
type Style = {
|
|
180
|
+
props: StyleProps;
|
|
181
|
+
ref: string;
|
|
182
|
+
};
|
|
183
|
+
type Variables = {
|
|
184
|
+
color_primary: string;
|
|
185
|
+
background_color: string;
|
|
186
|
+
};
|
|
187
|
+
interface Section {
|
|
188
|
+
mode: Mode;
|
|
189
|
+
variables?: Variables;
|
|
190
|
+
styles: Style[];
|
|
191
|
+
}
|
|
192
|
+
interface Sections {
|
|
193
|
+
general: Section;
|
|
194
|
+
pm_list: Section;
|
|
195
|
+
apm: Section;
|
|
196
|
+
card_one_step: Section;
|
|
197
|
+
card_step_by_step: Section;
|
|
198
|
+
}
|
|
199
|
+
interface ThemeWithPartialSections {
|
|
200
|
+
account_code: string;
|
|
201
|
+
sections: Partial<Sections>;
|
|
202
|
+
}
|
|
203
|
+
export interface UpdateStylingThemeParams {
|
|
204
|
+
accountCode: string;
|
|
205
|
+
theme: ThemeWithPartialSections;
|
|
206
|
+
}
|
|
207
|
+
export {};
|
package/build/index.d.ts
CHANGED
|
@@ -1199,7 +1199,6 @@ declare namespace Organization {
|
|
|
1199
1199
|
updated_at: string;
|
|
1200
1200
|
provider_name: string;
|
|
1201
1201
|
connection_name: string;
|
|
1202
|
-
network_token_enable: boolean;
|
|
1203
1202
|
connection_state?: ConnectionState;
|
|
1204
1203
|
provider_icon: string;
|
|
1205
1204
|
category: string;
|
|
@@ -2202,9 +2201,6 @@ declare namespace SmartRouting {
|
|
|
2202
2201
|
export interface ThreeDSExemptionsResponse {
|
|
2203
2202
|
three_ds_exemptions: string[];
|
|
2204
2203
|
}
|
|
2205
|
-
export interface NetworkTokensOnboardingResponse {
|
|
2206
|
-
available: boolean;
|
|
2207
|
-
}
|
|
2208
2204
|
export {};
|
|
2209
2205
|
}
|
|
2210
2206
|
|
|
@@ -3903,6 +3899,215 @@ declare function useUpdateCheckoutTemplate(): _tanstack_react_query.UseMutationR
|
|
|
3903
3899
|
template: Record<string, string>;
|
|
3904
3900
|
}, unknown>;
|
|
3905
3901
|
|
|
3902
|
+
declare namespace Styling {
|
|
3903
|
+
type Mode = 'default';
|
|
3904
|
+
interface Spacing {
|
|
3905
|
+
top: number;
|
|
3906
|
+
right: number;
|
|
3907
|
+
bottom: number;
|
|
3908
|
+
left: number;
|
|
3909
|
+
}
|
|
3910
|
+
interface BorderRadius {
|
|
3911
|
+
top_left: number;
|
|
3912
|
+
top_right: number;
|
|
3913
|
+
bottom_right: number;
|
|
3914
|
+
bottom_left: number;
|
|
3915
|
+
}
|
|
3916
|
+
interface Decorator {
|
|
3917
|
+
hover: StyleProps;
|
|
3918
|
+
disabled: StyleProps;
|
|
3919
|
+
focused: StyleProps;
|
|
3920
|
+
error: StyleProps;
|
|
3921
|
+
}
|
|
3922
|
+
type StyleProps = {
|
|
3923
|
+
color: string;
|
|
3924
|
+
font_family: string;
|
|
3925
|
+
font_size: number;
|
|
3926
|
+
font_weight: string | number;
|
|
3927
|
+
line_height: number;
|
|
3928
|
+
padding: Spacing;
|
|
3929
|
+
margin: Spacing;
|
|
3930
|
+
background_color: string;
|
|
3931
|
+
border_radius: BorderRadius;
|
|
3932
|
+
decorator: Decorator;
|
|
3933
|
+
text_align: string;
|
|
3934
|
+
width: number;
|
|
3935
|
+
height: number;
|
|
3936
|
+
weight: number;
|
|
3937
|
+
border_color: string;
|
|
3938
|
+
border_style: string;
|
|
3939
|
+
border_width: number;
|
|
3940
|
+
};
|
|
3941
|
+
type Style = {
|
|
3942
|
+
props: StyleProps;
|
|
3943
|
+
ref: string;
|
|
3944
|
+
};
|
|
3945
|
+
type Variables = {
|
|
3946
|
+
color_primary: string;
|
|
3947
|
+
background_color: string;
|
|
3948
|
+
};
|
|
3949
|
+
interface Section {
|
|
3950
|
+
mode: Mode;
|
|
3951
|
+
variables?: Variables;
|
|
3952
|
+
styles: Style[];
|
|
3953
|
+
}
|
|
3954
|
+
interface Sections {
|
|
3955
|
+
general: Section;
|
|
3956
|
+
pm_list: Section;
|
|
3957
|
+
apm: Section;
|
|
3958
|
+
card_one_step: Section;
|
|
3959
|
+
card_step_by_step: Section;
|
|
3960
|
+
}
|
|
3961
|
+
export interface Theme {
|
|
3962
|
+
account_code: string;
|
|
3963
|
+
sections: Sections;
|
|
3964
|
+
}
|
|
3965
|
+
export interface Settings {
|
|
3966
|
+
sdk_dynamic: boolean;
|
|
3967
|
+
}
|
|
3968
|
+
export {};
|
|
3969
|
+
}
|
|
3970
|
+
declare namespace StylingSettings {
|
|
3971
|
+
interface UpdateSettings {
|
|
3972
|
+
styles: {
|
|
3973
|
+
global?: {
|
|
3974
|
+
accent_color?: string;
|
|
3975
|
+
primary_background_color?: string;
|
|
3976
|
+
primary_text_color?: string;
|
|
3977
|
+
primary_button_text_color?: string;
|
|
3978
|
+
secondary_background_color?: string;
|
|
3979
|
+
secondary_text_color?: string;
|
|
3980
|
+
secondary_button_background_color?: string;
|
|
3981
|
+
secondary_button_text_color?: string;
|
|
3982
|
+
font_family?: string;
|
|
3983
|
+
};
|
|
3984
|
+
header?: {
|
|
3985
|
+
logo_border_size?: number;
|
|
3986
|
+
logo_border_color?: string;
|
|
3987
|
+
logo_corner_radius?: number;
|
|
3988
|
+
font_size?: number;
|
|
3989
|
+
font_weight?: number;
|
|
3990
|
+
};
|
|
3991
|
+
button?: {
|
|
3992
|
+
corner_radius?: number;
|
|
3993
|
+
border_size?: number;
|
|
3994
|
+
primary_border_color?: string;
|
|
3995
|
+
secondary_border_color?: string;
|
|
3996
|
+
font_size?: number;
|
|
3997
|
+
font_weight?: number;
|
|
3998
|
+
};
|
|
3999
|
+
};
|
|
4000
|
+
settings: {
|
|
4001
|
+
sdk_type?: {
|
|
4002
|
+
web?: 'SEAMLESS' | 'FULL';
|
|
4003
|
+
mobile?: 'SEAMLESS' | 'FULL';
|
|
4004
|
+
};
|
|
4005
|
+
card?: {
|
|
4006
|
+
save_on_success?: boolean;
|
|
4007
|
+
visualization_mode?: VisualizationMode;
|
|
4008
|
+
};
|
|
4009
|
+
web_sdk?: {
|
|
4010
|
+
hide_pay_button?: boolean;
|
|
4011
|
+
render_mode?: RenderMode;
|
|
4012
|
+
};
|
|
4013
|
+
payment_method_list?: {
|
|
4014
|
+
unfolded_display?: boolean;
|
|
4015
|
+
preselected_payment_method?: boolean;
|
|
4016
|
+
condensed_checkout_view?: boolean;
|
|
4017
|
+
edit_payment_method_list?: boolean;
|
|
4018
|
+
};
|
|
4019
|
+
};
|
|
4020
|
+
}
|
|
4021
|
+
interface UpdateSettingsResponse extends UpdateSettings {
|
|
4022
|
+
external_fonts: {
|
|
4023
|
+
family_name: string;
|
|
4024
|
+
files: {
|
|
4025
|
+
url: string;
|
|
4026
|
+
weight: number;
|
|
4027
|
+
}[];
|
|
4028
|
+
}[];
|
|
4029
|
+
}
|
|
4030
|
+
}
|
|
4031
|
+
declare enum RenderMode {
|
|
4032
|
+
MODAL = "MODAL",
|
|
4033
|
+
RENDER = "RENDER"
|
|
4034
|
+
}
|
|
4035
|
+
declare enum VisualizationMode {
|
|
4036
|
+
ONE_STEP = "ONE_STEP",
|
|
4037
|
+
STEP_BY_STEP = "STEP_BY_STEP"
|
|
4038
|
+
}
|
|
4039
|
+
/**
|
|
4040
|
+
* @deprecated since version 0.36.27. Remove all the code below when new styling section is fully implemented
|
|
4041
|
+
*/
|
|
4042
|
+
type Mode = 'default';
|
|
4043
|
+
interface Spacing {
|
|
4044
|
+
top: number;
|
|
4045
|
+
right: number;
|
|
4046
|
+
bottom: number;
|
|
4047
|
+
left: number;
|
|
4048
|
+
}
|
|
4049
|
+
interface BorderRadius {
|
|
4050
|
+
top_left: number;
|
|
4051
|
+
top_right: number;
|
|
4052
|
+
bottom_right: number;
|
|
4053
|
+
bottom_left: number;
|
|
4054
|
+
}
|
|
4055
|
+
interface Decorator {
|
|
4056
|
+
hover: StyleProps;
|
|
4057
|
+
disabled: StyleProps;
|
|
4058
|
+
focused: StyleProps;
|
|
4059
|
+
error: StyleProps;
|
|
4060
|
+
}
|
|
4061
|
+
type StyleProps = {
|
|
4062
|
+
color: string;
|
|
4063
|
+
font_family: string;
|
|
4064
|
+
font_size: number;
|
|
4065
|
+
font_weight: string | number;
|
|
4066
|
+
line_height: number;
|
|
4067
|
+
padding: Spacing;
|
|
4068
|
+
margin: Spacing;
|
|
4069
|
+
background_color: string;
|
|
4070
|
+
border_radius: BorderRadius;
|
|
4071
|
+
decorator: Decorator;
|
|
4072
|
+
text_align: string;
|
|
4073
|
+
width: number;
|
|
4074
|
+
height: number;
|
|
4075
|
+
weight: number;
|
|
4076
|
+
border_color: string;
|
|
4077
|
+
border_style: string;
|
|
4078
|
+
border_width: number;
|
|
4079
|
+
};
|
|
4080
|
+
type Style = {
|
|
4081
|
+
props: StyleProps;
|
|
4082
|
+
ref: string;
|
|
4083
|
+
};
|
|
4084
|
+
type Variables = {
|
|
4085
|
+
color_primary: string;
|
|
4086
|
+
background_color: string;
|
|
4087
|
+
};
|
|
4088
|
+
interface Section {
|
|
4089
|
+
mode: Mode;
|
|
4090
|
+
variables?: Variables;
|
|
4091
|
+
styles: Style[];
|
|
4092
|
+
}
|
|
4093
|
+
interface Sections {
|
|
4094
|
+
general: Section;
|
|
4095
|
+
pm_list: Section;
|
|
4096
|
+
apm: Section;
|
|
4097
|
+
card_one_step: Section;
|
|
4098
|
+
card_step_by_step: Section;
|
|
4099
|
+
}
|
|
4100
|
+
interface ThemeWithPartialSections {
|
|
4101
|
+
account_code: string;
|
|
4102
|
+
sections: Partial<Sections>;
|
|
4103
|
+
}
|
|
4104
|
+
interface UpdateStylingThemeParams {
|
|
4105
|
+
accountCode: string;
|
|
4106
|
+
theme: ThemeWithPartialSections;
|
|
4107
|
+
}
|
|
4108
|
+
|
|
4109
|
+
declare function useUpdateStylingTheme(): _tanstack_react_query.UseMutationResult<unknown, unknown, UpdateStylingThemeParams, unknown>;
|
|
4110
|
+
|
|
3906
4111
|
declare function useCreateOperationTransaction(): _tanstack_react_query.UseMutationResult<axios.AxiosResponse<OperationTransaction.Response, any>, unknown, {
|
|
3907
4112
|
payload: OperationTransaction.Request;
|
|
3908
4113
|
transactionId: string;
|
|
@@ -4380,7 +4585,6 @@ declare function useGetSmartRoutingSearchConditionValues({ text, conditionType,
|
|
|
4380
4585
|
}): UseQueryResult<SmartRouting.ConditionTypeValues & ErrorProp, unknown>;
|
|
4381
4586
|
declare function useProviderConversionRatesData(): UseQueryResult<SmartRouting.SRConversionRates[] & ErrorProp, unknown>;
|
|
4382
4587
|
declare function use3DSExemptions(): UseQueryResult<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
4383
|
-
declare function useNetworkTokensOnboarding(): UseQueryResult<SmartRouting.NetworkTokensOnboardingResponse, AxiosError<BFFErrorResponse>>;
|
|
4384
4588
|
|
|
4385
4589
|
declare function useGetRoutingMonitorsTemplates(organizationCode: string): UseQueryResult<RoutingMonitors.TemplateSelector[], unknown>;
|
|
4386
4590
|
declare function useGetRoutingMonitorsTemplate(code: string, organizationCode: string): UseQueryResult<RoutingMonitors.Template, unknown>;
|
|
@@ -4399,148 +4603,22 @@ declare const useGetNameAndIcon: ({ paymentMethodType, type }: Checkout.GetNameA
|
|
|
4399
4603
|
declare const getQueryKeyRequiredFields: ({ paymentMethodType, type, }: Checkout.GetRequiredFieldsArgs) => string[];
|
|
4400
4604
|
declare const useGetRequiredFields: ({ paymentMethodType, type }: Checkout.GetRequiredFieldsArgs, option?: UseQueryOptions<Checkout.GetRequiredFieldsResponse, unknown, Checkout.GetRequiredFieldsResponse>) => UseQueryResult<Checkout.GetRequiredFieldsResponse, unknown>;
|
|
4401
4605
|
|
|
4402
|
-
declare namespace Styling {
|
|
4403
|
-
type Mode = 'default';
|
|
4404
|
-
interface Spacing {
|
|
4405
|
-
top: number;
|
|
4406
|
-
right: number;
|
|
4407
|
-
bottom: number;
|
|
4408
|
-
left: number;
|
|
4409
|
-
}
|
|
4410
|
-
interface BorderRadius {
|
|
4411
|
-
top_left: number;
|
|
4412
|
-
top_right: number;
|
|
4413
|
-
bottom_right: number;
|
|
4414
|
-
bottom_left: number;
|
|
4415
|
-
}
|
|
4416
|
-
interface Decorator {
|
|
4417
|
-
hover: StyleProps;
|
|
4418
|
-
disabled: StyleProps;
|
|
4419
|
-
focused: StyleProps;
|
|
4420
|
-
error: StyleProps;
|
|
4421
|
-
}
|
|
4422
|
-
type StyleProps = {
|
|
4423
|
-
color: string;
|
|
4424
|
-
font_family: string;
|
|
4425
|
-
font_size: number;
|
|
4426
|
-
font_weight: string | number;
|
|
4427
|
-
line_height: number;
|
|
4428
|
-
padding: Spacing;
|
|
4429
|
-
margin: Spacing;
|
|
4430
|
-
background_color: string;
|
|
4431
|
-
border_radius: BorderRadius;
|
|
4432
|
-
decorator: Decorator;
|
|
4433
|
-
text_align: string;
|
|
4434
|
-
width: number;
|
|
4435
|
-
height: number;
|
|
4436
|
-
weight: number;
|
|
4437
|
-
border_color: string;
|
|
4438
|
-
border_style: string;
|
|
4439
|
-
border_width: number;
|
|
4440
|
-
};
|
|
4441
|
-
type Style = {
|
|
4442
|
-
props: StyleProps;
|
|
4443
|
-
ref: string;
|
|
4444
|
-
};
|
|
4445
|
-
type Variables = {
|
|
4446
|
-
color_primary: string;
|
|
4447
|
-
background_color: string;
|
|
4448
|
-
};
|
|
4449
|
-
interface Section {
|
|
4450
|
-
mode: Mode;
|
|
4451
|
-
variables?: Variables;
|
|
4452
|
-
styles: Style[];
|
|
4453
|
-
}
|
|
4454
|
-
interface Sections {
|
|
4455
|
-
general: Section;
|
|
4456
|
-
pm_list: Section;
|
|
4457
|
-
apm: Section;
|
|
4458
|
-
card_one_step: Section;
|
|
4459
|
-
card_step_by_step: Section;
|
|
4460
|
-
}
|
|
4461
|
-
export interface Theme {
|
|
4462
|
-
account_code: string;
|
|
4463
|
-
sections: Sections;
|
|
4464
|
-
}
|
|
4465
|
-
export interface Settings {
|
|
4466
|
-
sdk_dynamic: boolean;
|
|
4467
|
-
}
|
|
4468
|
-
export {};
|
|
4469
|
-
}
|
|
4470
|
-
declare namespace StylingSettings {
|
|
4471
|
-
interface UpdateSettings {
|
|
4472
|
-
styles: {
|
|
4473
|
-
global?: {
|
|
4474
|
-
accent_color?: string;
|
|
4475
|
-
primary_background_color?: string;
|
|
4476
|
-
primary_text_color?: string;
|
|
4477
|
-
primary_button_text_color?: string;
|
|
4478
|
-
secondary_background_color?: string;
|
|
4479
|
-
secondary_text_color?: string;
|
|
4480
|
-
secondary_button_background_color?: string;
|
|
4481
|
-
secondary_button_text_color?: string;
|
|
4482
|
-
font_family?: string;
|
|
4483
|
-
};
|
|
4484
|
-
header?: {
|
|
4485
|
-
logo_border_size?: number;
|
|
4486
|
-
logo_border_color?: string;
|
|
4487
|
-
logo_corner_radius?: number;
|
|
4488
|
-
font_size?: number;
|
|
4489
|
-
font_weight?: number;
|
|
4490
|
-
};
|
|
4491
|
-
button?: {
|
|
4492
|
-
corner_radius?: number;
|
|
4493
|
-
border_size?: number;
|
|
4494
|
-
primary_border_color?: string;
|
|
4495
|
-
secondary_border_color?: string;
|
|
4496
|
-
font_size?: number;
|
|
4497
|
-
font_weight?: number;
|
|
4498
|
-
};
|
|
4499
|
-
};
|
|
4500
|
-
settings: {
|
|
4501
|
-
sdk_type?: {
|
|
4502
|
-
web?: 'SEAMLESS' | 'FULL';
|
|
4503
|
-
mobile?: 'SEAMLESS' | 'FULL';
|
|
4504
|
-
};
|
|
4505
|
-
card?: {
|
|
4506
|
-
save_on_success?: boolean;
|
|
4507
|
-
visualization_mode?: VisualizationMode;
|
|
4508
|
-
};
|
|
4509
|
-
web_sdk?: {
|
|
4510
|
-
hide_pay_button?: boolean;
|
|
4511
|
-
render_mode?: RenderMode;
|
|
4512
|
-
};
|
|
4513
|
-
payment_method_list?: {
|
|
4514
|
-
unfolded_display?: boolean;
|
|
4515
|
-
preselected_payment_method?: boolean;
|
|
4516
|
-
condensed_checkout_view?: boolean;
|
|
4517
|
-
edit_payment_method_list?: boolean;
|
|
4518
|
-
};
|
|
4519
|
-
};
|
|
4520
|
-
}
|
|
4521
|
-
interface UpdateSettingsResponse extends UpdateSettings {
|
|
4522
|
-
external_fonts: {
|
|
4523
|
-
family_name: string;
|
|
4524
|
-
files: {
|
|
4525
|
-
url: string;
|
|
4526
|
-
weight: number;
|
|
4527
|
-
}[];
|
|
4528
|
-
}[];
|
|
4529
|
-
}
|
|
4530
|
-
}
|
|
4531
|
-
declare enum RenderMode {
|
|
4532
|
-
MODAL = "MODAL",
|
|
4533
|
-
RENDER = "RENDER"
|
|
4534
|
-
}
|
|
4535
|
-
declare enum VisualizationMode {
|
|
4536
|
-
ONE_STEP = "ONE_STEP",
|
|
4537
|
-
STEP_BY_STEP = "STEP_BY_STEP"
|
|
4538
|
-
}
|
|
4539
|
-
|
|
4540
4606
|
declare function useGetStylingSdkDynamic({ accountCode, }: {
|
|
4541
4607
|
accountCode: string;
|
|
4542
4608
|
}): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
|
|
4543
|
-
|
|
4609
|
+
/**
|
|
4610
|
+
* @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
|
|
4611
|
+
*/
|
|
4612
|
+
declare function useGetStylingTheme({ accountCode }: {
|
|
4613
|
+
accountCode: string;
|
|
4614
|
+
}): _tanstack_react_query.UseQueryResult<Styling.Theme, unknown>;
|
|
4615
|
+
/**
|
|
4616
|
+
* @deprecated since version 0.36.27 use useGetStylingSettingsV2 instead
|
|
4617
|
+
*/
|
|
4618
|
+
declare function useGetStylingSettings({ accountCode, }: {
|
|
4619
|
+
accountCode: string;
|
|
4620
|
+
}): _tanstack_react_query.UseQueryResult<Styling.Settings, unknown>;
|
|
4621
|
+
declare function useGetStylingSettingsV2({ accountCode, environment, }: {
|
|
4544
4622
|
accountCode: string;
|
|
4545
4623
|
environment?: string;
|
|
4546
4624
|
}): _tanstack_react_query.UseQueryResult<StylingSettings.UpdateSettingsResponse, unknown>;
|
|
@@ -5018,7 +5096,23 @@ declare class Api extends HttpClient {
|
|
|
5018
5096
|
getStylingSdkDynamic({ accountCode }: {
|
|
5019
5097
|
accountCode: any;
|
|
5020
5098
|
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
5021
|
-
|
|
5099
|
+
/**
|
|
5100
|
+
* @deprecated since version 0.36.27. use getStylingSettings instead
|
|
5101
|
+
*/
|
|
5102
|
+
getStylingTheme({ accountCode }: {
|
|
5103
|
+
accountCode: string;
|
|
5104
|
+
}): Promise<AxiosResponse<Styling.Theme, any>>;
|
|
5105
|
+
/**
|
|
5106
|
+
* @deprecated since version 0.36.27. use changeStylingSettings instead
|
|
5107
|
+
*/
|
|
5108
|
+
updateStylingTheme({ accountCode, theme }: UpdateStylingThemeParams): Promise<AxiosResponse<unknown, any>>;
|
|
5109
|
+
/**
|
|
5110
|
+
* @deprecated since version 0.36.27. use getStylingSettingsV2 instead
|
|
5111
|
+
*/
|
|
5112
|
+
getStylingSettings({ accountCode }: {
|
|
5113
|
+
accountCode: any;
|
|
5114
|
+
}): Promise<AxiosResponse<Styling.Settings, any>>;
|
|
5115
|
+
getStylingSettingsV2({ accountCode, environment, }: {
|
|
5022
5116
|
accountCode: string;
|
|
5023
5117
|
environment?: string;
|
|
5024
5118
|
}): Promise<AxiosResponse<StylingSettings.UpdateSettingsResponse, any>>;
|
|
@@ -5269,7 +5363,6 @@ declare class Api extends HttpClient {
|
|
|
5269
5363
|
getInsightsConversionRateOverviewFraud3ds(body: ConversionRateBody, params: ConversionRateParams): Promise<AxiosResponse<ConversionRateOverviewFraud3ds>>;
|
|
5270
5364
|
getConversionRateChargebacksByCardBrand(body: InsightsFraudBody, params: InsightsFraudParams): Promise<AxiosResponse<any, any>>;
|
|
5271
5365
|
get3DSExemptions(): Promise<AxiosResponse<SmartRouting.ThreeDSExemptionsResponse>>;
|
|
5272
|
-
getNetworkTokensOnboarding(): Promise<AxiosResponse<SmartRouting.NetworkTokensOnboardingResponse>>;
|
|
5273
5366
|
createChartGPTChart<T>(payload: {
|
|
5274
5367
|
user_prompt: string;
|
|
5275
5368
|
}): Promise<AxiosResponse<T, any>>;
|
|
@@ -5319,5 +5412,5 @@ declare enum ApiErrorCodes {
|
|
|
5319
5412
|
ERR_BAD_REQUEST = "ERR_BAD_REQUEST"
|
|
5320
5413
|
}
|
|
5321
5414
|
|
|
5322
|
-
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsFilters, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods,
|
|
5415
|
+
export { AI, Accounts, Api, ApiErrorCodes, ApiProvider, ApiSingleton, Audit, BatchRefunds, Checkout, Cms, Connection, Country, DataReport, Developer, FraudScreening, MFA, Notifications, OperationTransaction, Organization, OrganizationSettings, Payment, PaymentFiltersSection, PaymentLinks, Payouts, Reconciliation, ReconciliationAdvancements, ReconciliationAgenda, ReconciliationAgendaInsight, ReconciliationAlerts, ReconciliationFees, ReconciliationReportType, ReconciliationSales, ReportType, Reports, RoutingMonitors, S3Client, SamlConfig, SendPaymentNotification, SmartRouting, Team, TemplateType, Translation, User, VelocityRules, Webhook, getQueryKeyGetNameAndIcon, getQueryKeyRequiredFields, queryCache, queryClient, use3DSExemptions, useAICreateWorkflow, useAllFeatureFlags, useAllowListDetail, useBlackListDetail, useCachedFeatureFlag, useCancelReport, useChangePasswordV2, useChangePaymentsWebhook, useChangeStatusBlackList, useChangeStatusItemBlackList, useChangeStylingSettings, useChargebacksUpload, useChartExecute, useCommunicationDetails, useCommunications, useCommunicationsFilters, useConfirmedOtpMfa, useCountRowsForReport, useCreateAndExecuteChart, useCreateChart, useCreateMonitorTemplate, useCreateMonitorThreshold, useCreateOperationTransaction, useCreatePaymentLinks, useCreateReconciliationAlert, useCreateReconciliationReportTemplate, useCreateReconciliationsReportV2, useCreateReportTemplate, useCreateReportV2, useCreateRoles, useCreateSamlConfig, useCreateScheduledReport, useCreateUserAuth0, useCreateWorkflow, useDeleteAccountsUserMassive, useDeleteAllowlistItem, useDeleteBlackListType, useDeleteBlockListItem, useDeleteChart, useDeleteCustomizedApiKeys, useDeletePaymentLink, useDeleteReconciliationAlert, useDeleteRoles, useDeleteSamlConfig, useDeleteScheduledReport, useDeleteUserTeamV2, useDeleteVersion, useDeleteWebhookV2, useDuplicateVersion, useEditPaymentLinks, useEditRoles, useEmailVerification, useExcludeUsers, useFeatureFlags, useFirebaseUserSubscribe, useGenerateFeedback, useGetAccounts, useGetAccountsByUser, useGetAccountsV2, useGetAllConfigRules, useGetAllOrganizations, useGetAllReconciliationsAdvancements, useGetAllReconciliationsAgenda, useGetAllReconciliationsAlerts, useGetAllReconciliationsFees, useGetAllReconciliationsSales, useGetAllTableColumns, useGetAllowedIps, useGetAuditEvents, useGetAuditLogsFilters, useGetAuditMonitorEventDetail, useGetBatchRefundProcessedFileDownload, useGetBatchRefundUserFileDownload, useGetBatchRefunds, useGetBlackList, useGetBlockListSummary, useGetCardBrands, useGetChartsByUser, useGetChartsByUserWithResults, useGetCheckoutTemplate, useGetCheckouts, useGetConditionalConfigRules, useGetConfigAllowlist, useGetConnections, useGetConnectionsByPaymentMethod, useGetCountriesConfigPaymentLink, useGetCountriesConfigPaymentLinkV2, useGetCredentials, useGetCredentialsMFA, useGetCustomizedApiKeys, useGetCustomizedApiKeysAccounts, useGetCustomizedApiKeysMembers, useGetCustomizedApiKeysProducts, useGetCustomizedApiKeysToken, useGetDashboardStaticContents, useGetDialogs, useGetDownloadReport, useGetEmailOtp, useGetHashPylon, useGetImpersonationEnabled, useGetImpersonationUsers, useGetInsightsReport, useGetInsightsReportAgain, useGetIntegrationByAccountV2, useGetIntegrationParams, useGetLanguages, useGetLocales, useGetLoginMethods, useGetMFAConfig, useGetMFAExcludedUsers, useGetMFAStatus, useGetMenu, useGetMergedNotifications, useGetNameAndIcon, useGetNotificationsCustomer, useGetNotificationsNumberMutation, useGetOrganization, useGetPaymentFilters, useGetPaymentLinkByCode, useGetPaymentLinks, useGetPaymentMethodsAndProviders, useGetPaymentMetricsFilters, useGetPaymentStatusesStyles, useGetPaymentTransactionsDetails, useGetPaymentV2, useGetPaymentsMethodsByCountry, useGetPayoutDetail, useGetPayoutHistoryDetail, useGetPayoutTransactionDetail, useGetPermissions, useGetPermissionsCatalog, useGetProfile, useGetProofOfCancel, useGetProofOfPayment, useGetProviderParams, useGetReconciliationActive, useGetReconciliationAgendaInsightsByKey, useGetReconciliationFilters, useGetReconciliationMetrics, useGetReconciliationTransactionStatusesStyles, useGetReconciliationTransactions, useGetReconciliationsReportColumns, useGetReconciliationsReportTemplates, useGetRefundPdf, useGetReportColumns, useGetReportTemplates, useGetReportsList, useGetReportsListMultiEnv, useGetRequiredFields, useGetRoles, useGetRolesPermissions, useGetRoutingMonitorsTemplate, useGetRoutingMonitorsTemplates, useGetRule, useGetSamlConfig, useGetScheduledReportsList, useGetSettlements, useGetSmartRoutingConditionPaymentMethod, useGetSmartRoutingConditionTypes, useGetSmartRoutingConditionTypesValues, useGetSmartRoutingDataReport, useGetSmartRoutingDeclineGroups, useGetSmartRoutingMethods, useGetSmartRoutingNextRoute, useGetSmartRoutingPaymentRoute, useGetSmartRoutingSearchConditionValues, useGetSmartRoutingSimulateConditionTypeValues, useGetSmartRoutingWorkflow, useGetSmartRoutingWorkflowVersion, useGetStylingSdkDynamic, useGetStylingSettings, useGetStylingSettingsV2, useGetStylingTheme, useGetTeamsFiltersMembers, useGetTimeZoneCatalog, useGetTimezonePaymentLink, useGetTokenValidation, useGetTransactionDetailsV2, useGetTransactionHistoryByPaymentCode, useGetTransactionRawResponse, useGetTransactionStatusesStyles, useGetTranslations, useGetUsersToImpersonate, useGetValidateOpsgenieKey, useGetWebhookParamsV2, useGetWebhooksV2Detail, useGetWebhooksV3, useInsights3dsConversionRateAndEvolution, useInsights3dsDeclineReasons, useInsights3dsFrictionlessVsChallenge, useInsights3dsVolumeAndCountTx, useInsightsChargebacksByCardBrand, useInsightsChargebacksByProviderAndCardBrand, useInsightsChargebacksDisputed, useInsightsChargebacksReasonsDistribution, useInsightsChargebacksStatusDistribution, useInsightsChargebacksTotalRateAndEvolution, useInsightsChargebacksVolumeAndCountTx, useInsightsChargebacksWinRate, useInsightsConversionRateMetricsV2, useInsightsCustomerPaymentsAndFraudMetrics, useInsightsFallbackMetrics, useInsightsFraudScreeningConversionRate, useInsightsFraudScreeningVolumeAndCountTx, useInsightsHomeMetrics, useInsightsOverviewMetrics, useInsightsOverviewMetricsV3, useInsightsTotalPaymentsAndFraudMetrics, useInsightsVolumeMetrics, useInsightsVolumeMetricsV2, useInviteUsersMultiaccountMassive, useIsTesting, useLoginMethods, useNewPostConnectionValidate, usePatchAccountV2, usePatchAddAllowlistItems, usePatchAllowedIps, usePatchAllowlist, usePatchAndExecuteChart, usePatchApiKeysEditNote, usePatchChangeStatusAllowlist, usePatchChangeStatusAllowlistItem, usePatchChartName, usePatchConnection, usePathCreateCustomizedApiKeys, usePathNotifications, usePayoutsFilters, usePayoutsList, usePostAccount, usePostAllowlistMultiAccount, usePostApiKeysRoll, usePostAuditMonitors, usePostBatchRefundByFile, usePostBlackListBatch, usePostBlackListItems, usePostBlackListMultiAccount, usePostBlockList, usePostCall, usePostChangeStatusConnection, usePostConnectionMultiAccount, usePostCreateAllowlistMultiAccount, usePostCreateCustomizedApiKeys, usePostCreateInsightsReport, usePostCreateRuleMultiAccount, usePostCredentialsValidatePassword, usePostDefaultRoutes, usePostEditRule, usePostFraudTransactions, usePostGetAllowlistItems, usePostGetAllowlistMultiAccount, usePostMembersPaginatedV2, usePostPaymentsEvaluated, usePostPaymentsLazy, usePostSlackMessageChannel, usePostTransactions, usePostUserSettings, usePostUserSettingsPinned, usePostUserSettingsTables, usePostUserThemeSettings, usePostValideStatusConnection, usePostVelocityRules, usePostWebhookMultiAccount, useProviderConversionRatesData, usePublishVersion, usePutAccountPrincipal, usePutAccountsUserMassive, usePutBlackListType, usePutCosts, useSaveVersion, useSendPaymentNotification, useSetCustodian, useSmartRoutingCreateDeclinedGroup, useSmartRoutingEditWorkflowName, useSmartRoutingMultiAccountDeclinedGroupCreate, useSmartRoutingRemoveDeclinedGroup, useSmartRoutingSimulateTransaction, useSmartRoutingToggleFavorite, useSmartRoutingUpdateDeclinedGroup, useSmartRoutingUpdateMonitorRedistribution, useToggleMethod, useUnInviteUsersV2, useUnrollUserV2, useUpdateCheckoutTemplate, useUpdateIsActiveCheckout, useUpdateMFAConfig, useUpdateOrganizationStatus, useUpdateProfile, useUpdateReconciliationAlert, useUpdateReconciliationReportTemplate, useUpdateReportTemplate, useUpdateSamlConfig, useUpdateScheduledReport, useUpdateStylingTheme, useUpdateWebhookV2, useUploadBatchRefundsFileV2, useUploadBatchRefundsV2, useUploadFileS3ClientBatchRefunds, useValiateAllowlistItems, useValidateBlockListItems, useValidateCredentials, useValidateOrgName, useValidatePasswordStatus, useViewMoreMetrics };
|
|
5323
5416
|
export type { AccountRoles, AllowlistMultiAccount, BFFErrorResponse, Blacklist, CentralizedColumn, ChangePaymentsWebhook, ChargebacksCount, ChargebacksVolume, ChartGPTChart, ChartGPTChartWithResults, ChartGPTExecuteResponse, ChartGPTResult, Condition, ConversionRateBody, ConversionRateOverview, ConversionRateOverviewFraud3ds, ConversionRateParams, ConversionRatePeriodicityRecord, Cost, CostPayload, Countries, CreateAndExecuteChartPayload, CreateAndExecuteChartResult, CreateChartGPTChartPayload, CreateChartGPTChartResponse, ErrorChartGPTResponse, ErrorProp, ErrorRoutingAIResponse, ErrorRoutingAIResponseData, FeatureFlagsResult, FirebaseUserSubscribe, Fraud3dsCount, Fraud3dsVolume, FraudScreeningCount, FraudScreeningVolume, GetApiLogsParams, GetPaymentMethodsByProviderParams, GetPaymentParams, GetPaymentTransactionsParams, GetPaymentsEvaluatedParams, GetPaymentsParams, GetPayoutDetail, GetPayoutTransactionDetail, GetReconciliationMetricParams, GetTransactionDetailsParams, GetTransactionDetailsV2Params, GetTransactionsParams, IChangePassword, ICreateReportsRequest, IKeyRoll, IListScheduledReportsResponse, InsightMetricParams, Insights3dsConversionRate, Insights3dsDeclineReasons, Insights3dsFrictionlessVsChallenge, Insights3dsResumeResponse, InsightsChargebacksByCardBrand, InsightsChargebacksByProviderAndCardBrand, InsightsChargebacksByReason, InsightsChargebacksDisputed, InsightsChargebacksResumeResponse, InsightsChargebacksStatusDistribution, InsightsChargebacksTotalRateAndEvolution, InsightsChargebacksWinRate, InsightsFraudBody, InsightsFraudConversionRateResponse, InsightsFraudParams, InsightsFraudScreeningResumeResponse, MfaUserPayload, MfaUserSubscribe, PatchAndExecuteChartResult, PatchChartGPTChartPayload, PatchChartGPTPayload, PathNotification, PaymentMethodStyled, PaymentsSettings, PeriodicityRecord, PinnedSections, PostBlackList, ProviderStyled, ReconAgendaProps, RefundPdfResponse, ThemeSettings, TimeZoneCatalog, TotalTimeline, TransactionHistory, UseGetAllReconciliationsAdvancementsProps, UseGetAllReconciliationsAlertsProps, UseGetAllReconciliationsFeesProps, UseGetAllReconciliationsSalesProps, UserInviteMultiaccountPayload };
|