UNPKG

snowflake-sdk

Version:
31 lines 701 B
"use strict"; const Util = require('../util'); /** * Creates an oauth PAT authenticator. * * @param {String} token * @param {String} password * * @returns {Object} * @constructor */ function AuthOauthPAT(token, password) { /** * Update JSON body with token. * * @param {JSON} body * * @returns {null} */ this.updateBody = function (body) { if (Util.exists(token)) { body['data']['TOKEN'] = token; } else if (Util.exists(password)) { body['data']['TOKEN'] = password; } }; this.authenticate = async function () { }; } module.exports = AuthOauthPAT; //# sourceMappingURL=auth_oauth_pat.js.map