File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -402,6 +402,7 @@ export interface IOrderInitialData {
402402 alternative_payment_methods : IAlternativePaymentMethod ;
403403 external_payment_gateways : IExternalPaymentGateways ;
404404 life_elements : Array < ILifeField > ;
405+ fraud_tools : Array < IFraudTool > ;
405406 flow_settings : Record < string , unknown > ;
406407 requires_shipping : boolean ;
407408 eps_gateways : IEpsGateways ;
@@ -544,6 +545,12 @@ export interface IExternalPaymentGateway {
544545 currency : string ;
545546}
546547
548+ export interface IFraudTool {
549+ id : string ;
550+ type : string ;
551+ credentials : Record < string , unknown > ;
552+ }
553+
547554export interface ILifeField {
548555 input_default : string | null ;
549556 input_label : string | null ;
Original file line number Diff line number Diff line change @@ -357,6 +357,7 @@ export const orderInitialDataMock: IOrderInitialData = {
357357 ] ,
358358 external_payment_gateways : [ ] ,
359359 life_elements : [ ] ,
360+ fraud_tools : [ ] ,
360361 flow_settings : { } ,
361362 requires_shipping : true ,
362363 eps_gateways : { } ,
Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ export const orderInitialData: IOrderInitialData = {
203203 alternative_payment_methods : [ ] ,
204204 external_payment_gateways : [ ] ,
205205 life_elements : [ ] ,
206+ fraud_tools : [ ] ,
206207 flow_settings : { } ,
207208 requires_shipping : true ,
208209 eps_gateways : { } ,
You can’t perform that action at this time.
0 commit comments