'use strict';
/**
* @module braintree-web/vault-manager
* @description Manages customer's payment methods.
*/
var BraintreeError = require('../lib/braintree-error');
var VaultManager = require('./vault-manager');
var sharedErrors = require('../lib/errors');
var VERSION = process.env.npm_package_version;
var Promise = require('../lib/promise');
var wrapPromise = require('@braintree/wrap-promise');
/**
* @static
* @function create
* @param {object} options Creation options:
* @param {Client} options.client A {@link Client} instance.
* @param {callback} callback The second argument, `data`, is the {@link VaultManager} instance.
* @returns {void}
*/
function create(options) {
var clientVersion;
if (options.client == null) {
return Promise.reject(new BraintreeError({
type: sharedErrors.INSTANTIATION_OPTION_REQUIRED.type,
code: sharedErrors.INSTANTIATION_OPTION_REQUIRED.code,
message: 'options.client is required when instantiating Vault Manager.'
}));
}
clientVersion = options.client.getVersion();
if (clientVersion !== VERSION) {
return Promise.reject(new BraintreeError({
type: sharedErrors.INCOMPATIBLE_VERSIONS.type,
code: sharedErrors.INCOMPATIBLE_VERSIONS.code,
message: 'Client (version ' + clientVersion + ') and Vault Manager (version ' + VERSION + ') components must be from the same SDK version.'
}));
}
return Promise.resolve(new VaultManager(options));
}
module.exports = {
create: wrapPromise(create),
/**
* @description The current version of the SDK, i.e. `{@pkg version}`.
* @type {string}
*/
VERSION: VERSION
};