@paybyrd/threedsecure-service
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "@paybyrd/threedsecure-service", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "JS service implementation to control the 3DS flow over Paybyrd API", | ||
@@ -5,0 +5,0 @@ "main": "dist/threedsecure-service.min.js", |
class ThreeDSecureService { | ||
constructor({ threeDSecureUrl, container, maxAttempts, attemptDelay, culture, onProgressFn }) { | ||
this._onProgressFn = onProgressFn; | ||
this._maxAttempts = maxAttempts; | ||
this._attemptDelay = attemptDelay; | ||
this._threeDSecureUrl = threeDSecureUrl; | ||
this._culture = culture; | ||
this._maxAttempts = maxAttempts || 50; | ||
this._attemptDelay = attemptDelay || 2000; | ||
this._threeDSecureUrl = threeDSecureUrl || 'https://threedsecure.paybyrd.com'; | ||
this._culture = culture || 'en-US'; | ||
this._container = container || document.body; | ||
@@ -9,0 +9,0 @@ |
No README
QualityPackage does not have a README. This may indicate a failed publish or a low quality package.
Found 1 instance in 1 package
29004
5
1
101