feathers-shippo
Version:
A Feathers JS adapter for the Shippo API
12 lines (11 loc) • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ShippoRefunds = void 0;
const service_1 = require("../service");
class ShippoRefunds extends service_1.ShippoService {
constructor(options, app) {
options = Object.assign(Object.assign({ limiters: (0, service_1.shippoLimiters)(options.token) }, options), { path: 'refunds', methods: ['get', 'find', 'create'] });
super(options, app);
}
}
exports.ShippoRefunds = ShippoRefunds;