Skip to content

Commit 90e768e

Browse files
authored
APE-1916 | Add support for SIP to FDP handling (#432)
1 parent 75321d6 commit 90e768e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

tpp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@token-io/tpp",
3-
"version": "1.0.69",
3+
"version": "1.0.70",
44
"description": "Token JavaScript TPP SDK",
55
"license": "ISC",
66
"author": {

tpp/src/main/TokenRequestBuilder.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,15 @@ export default class TokenRequestBuilder {
211211
this.requestPayload.credentials = credentials;
212212
return this;
213213
}
214+
215+
/**
216+
* Sets Future Dated Payment Conversion as bool flag in the payload
217+
*
218+
* @param disableFutureDatedPaymentConversion
219+
* @return TokenRequestBuilder
220+
*/
221+
setDisableFutureDatedPaymentConversion(disableFutureDatedPaymentConversion: boolean): TokenRequestBuilder {
222+
this.requestPayload.disableFutureDatedPaymentConversion = disableFutureDatedPaymentConversion;
223+
return this;
224+
}
214225
}

0 commit comments

Comments
 (0)