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 {
402
402
alternative_payment_methods : IAlternativePaymentMethod ;
403
403
external_payment_gateways : IExternalPaymentGateways ;
404
404
life_elements : Array < ILifeField > ;
405
+ fraud_tools : Array < IFraudTool > ;
405
406
flow_settings : Record < string , unknown > ;
406
407
requires_shipping : boolean ;
407
408
eps_gateways : IEpsGateways ;
@@ -544,6 +545,12 @@ export interface IExternalPaymentGateway {
544
545
currency : string ;
545
546
}
546
547
548
+ export interface IFraudTool {
549
+ id : string ;
550
+ type : string ;
551
+ credentials : Record < string , unknown > ;
552
+ }
553
+
547
554
export interface ILifeField {
548
555
input_default : string | null ;
549
556
input_label : string | null ;
Original file line number Diff line number Diff line change @@ -357,6 +357,7 @@ export const orderInitialDataMock: IOrderInitialData = {
357
357
] ,
358
358
external_payment_gateways : [ ] ,
359
359
life_elements : [ ] ,
360
+ fraud_tools : [ ] ,
360
361
flow_settings : { } ,
361
362
requires_shipping : true ,
362
363
eps_gateways : { } ,
Original file line number Diff line number Diff line change @@ -203,6 +203,7 @@ export const orderInitialData: IOrderInitialData = {
203
203
alternative_payment_methods : [ ] ,
204
204
external_payment_gateways : [ ] ,
205
205
life_elements : [ ] ,
206
+ fraud_tools : [ ] ,
206
207
flow_settings : { } ,
207
208
requires_shipping : true ,
208
209
eps_gateways : { } ,
You can’t perform that action at this time.
0 commit comments