Skip to content

Commit 64a914d

Browse files
committed
CHK-8736: Support Vaulting Enabled Flag
1 parent 268c9d0 commit 64a914d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/types/apiInterfaces.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ export interface IOrderInitialData {
379379
flow_settings: Record<string, unknown>;
380380
requires_shipping: boolean;
381381
eps_gateways: IEpsGateways;
382+
vaulting_enabled: boolean;
382383
}
383384

384385
export interface ISupportedLanguage {

src/variables/mocks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,7 @@ export const orderInitialDataMock: IOrderInitialData = {
351351
flow_settings: {},
352352
requires_shipping: true,
353353
eps_gateways: {},
354+
vaulting_enabled: false,
354355
};
355356

356357
export const cssRuleMock: ICssRule = {

src/variables/variables.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ export const orderInitialData: IOrderInitialData = {
201201
flow_settings: {},
202202
requires_shipping: true,
203203
eps_gateways: {},
204+
vaulting_enabled: false,
204205
};
205206

206207
export const retryErrorCodeList: Array<number> = [

0 commit comments

Comments
 (0)