UNPKG

@hipay/hipay-enterprise-sdk-nodejs

Version:

The HiPay Enterprise SDK for NodeJS is a library for developers who want to integrate HiPay Enterprise payment methods to any NodeJS platform.

22 lines (20 loc) 413 B
'use strict'; /** * Constant values of Computed Authentication Status * * Value must be a member of the following list: * - "challenge", * - "frictionless", * - "" * * CHALLENGE challenge * FRICTIONLESS frictionless * EMPTY '' * * @type {{CHALLENGE: String, FRICTIONLESS: String, EMPTY: String}} */ module.exports = { CHALLENGE: 'challenge', FRICTIONLESS: 'frictionless', EMPTY: '' };