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