pswincom-gateway-typed
Version:
Send SMS messages through LINK Mobility / PSWinCom Gateway, TypeScript version.
14 lines • 484 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.makeDeliveryResponse = void 0;
const xml2js_1 = require("xml2js");
const makeDeliveryResponse = async (
// Should be the XML provided by the gateway
body) => {
const xmlResponse = await (0, xml2js_1.parseStringPromise)(body, {
explicitArray: false,
});
return xmlResponse;
};
exports.makeDeliveryResponse = makeDeliveryResponse;
//# sourceMappingURL=make-delivery-response.js.map