whatsapp-mdf
Version:
SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta.
41 lines (40 loc) • 1.63 kB
JavaScript
;
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the license found in the
* LICENSE file in the root directory of this source tree.
*/
var __importDefault = this && this.__importDefault || function (mod) {
return mod && mod.__esModule ? mod : {
"default": mod
};
};
Object.defineProperty(exports, "__esModule", {
value: true
});
const base_1 = __importDefault(require("./base"));
const enums_1 = require("../types/enums");
const logger_1 = __importDefault(require("../logger"));
const LIB_NAME = 'PHONENUMBERS_API';
const LOG_LOCAL = false;
const LOGGER = new logger_1.default(LIB_NAME, process.env.DEBUG === 'true' || LOG_LOCAL);
class PhoneNumbersAPI extends base_1.default {
constructor() {
super(...arguments);
this.commonMethod = enums_1.HttpMethodsEnum.Post;
}
requestCode(body) {
const endpoint = 'request_code';
LOGGER.log(`Requesting phone number verification code for phone number Id ${this.config[enums_1.WAConfigEnum.PhoneNumberId]}`);
return this.client.sendCAPIRequest(this.commonMethod, endpoint, this.config[enums_1.WAConfigEnum.RequestTimeout], JSON.stringify(body));
}
verifyCode(body) {
const endpoint = 'verify_code';
LOGGER.log(`Sending phone number verification code ${body.code} for phone number Id ${this.config[enums_1.WAConfigEnum.PhoneNumberId]}`);
return this.client.sendCAPIRequest(this.commonMethod, endpoint, this.config[enums_1.WAConfigEnum.RequestTimeout], JSON.stringify(body));
}
}
exports.default = PhoneNumbersAPI;
module.exports = exports.default;