ee-ts-util
Version:
typescript utilities and functions
27 lines • 1.37 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const xero = require("xero-node");
const fs = require("fs");
exports.buildXeroClient = (config) => {
if (config.privateKeyPath && !config.privateKey) {
config.privateKey = fs.readFileSync(config.privateKeyPath, "utf8");
}
return new xero.PrivateApplication(config);
};
exports.buildXeroCreateInvoiceAdapter = (xeroClient) => (invoiceDto) => __awaiter(this, void 0, void 0, function* () {
const invoiceToBeSaved = xeroClient.core.invoices.newInvoice(invoiceDto);
const result = yield invoiceToBeSaved.save();
return {
id: result.entities[0]._obj.InvoiceID,
total: result.entities[0].Total
};
});
//# sourceMappingURL=invoiceAdapter.js.map