Skip to content

Commit ace4254

Browse files
authored
CHK-8736: Support Vaulting Enabled Flag (#40)
1 parent 268c9d0 commit ace4254

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/types/apiInterfaces.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ export interface IInitializeOrderResponse {
108108
initial_data: IOrderInitialData,
109109
application_state: IApplicationState,
110110
jwt_token: string,
111-
public_order_id: string
111+
public_order_id: string,
112+
vaulting_enabled: boolean,
112113
}
113114

114115
export interface IInitializeSimpleOrderResponse {

src/variables/mocks.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -372,4 +372,5 @@ export const initializeOrderResponseMock: IInitializeOrderResponse = {
372372
application_state: applicationStateMock,
373373
jwt_token: 'test_jwt_token',
374374
public_order_id: 'test_public_order_id',
375+
vaulting_enabled: false,
375376
};

0 commit comments

Comments
 (0)