@basel_mn/qv-api-client
Version:
TypeScript/JavaScript client for QV API, providing easy access to invoices, payments, and Swish integration
37 lines (36 loc) • 1.52 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
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) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentsApi = void 0;
class PaymentsApi {
constructor(client) {
this.client = client;
}
getPayments() {
return __awaiter(this, arguments, void 0, function* (params = {}) {
const { data } = yield this.client.get('/payments', { params });
return data;
});
}
getPayment(id) {
return __awaiter(this, void 0, void 0, function* () {
const { data } = yield this.client.get(`/payments/${id}`);
return data;
});
}
getPaymentMethods() {
return __awaiter(this, void 0, void 0, function* () {
const { data } = yield this.client.get('/payments/methods');
return data;
});
}
}
exports.PaymentsApi = PaymentsApi;