ebay-api
Version:
eBay API for Node and Browser
50 lines (49 loc) • 1.61 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const index_js_1 = __importDefault(require("../../index.js"));
class Cancellation extends index_js_1.default {
get basePath() {
return '/post-order/v2';
}
get useIaf() {
return true;
}
approveCancellationRequest(cancelId) {
cancelId = encodeURIComponent(cancelId);
return this.post(`/cancellation/${cancelId}/approve`);
}
checkCancellationEligibility(legacyOrderId) {
return this.post('/cancellation/check_eligibility', {
legacyOrderId
});
}
confirmRefundReceived(cancelId, payload) {
cancelId = encodeURIComponent(cancelId);
return this.post(`/cancellation/${cancelId}/confirm`, payload);
}
createCancellation(payload) {
return this.post('/cancellation', payload);
}
getCancellation(cancelId, fieldGroups) {
cancelId = encodeURIComponent(cancelId);
return this.get(`/cancellation/${cancelId}`, {
params: {
fieldgroups: fieldGroups
}
});
}
rejectCancellationRequest(cancelId, payload) {
cancelId = encodeURIComponent(cancelId);
return this.post(`/cancellation/${cancelId}/reject`, payload);
}
search(params) {
return this.get('/cancellation/search', {
params
});
}
}
Cancellation.id = 'Cancellation';
exports.default = Cancellation;