"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; var __param = (this && this.__param) || function (paramIndex, decorator) { return function (target, key) { decorator(target, key, paramIndex); } }; Object.defineProperty(exports, "__esModule", { value: true }); exports.InventoryController = void 0; const common_1 = require("@nestjs/common"); const create_inventory_dto_1 = require("./dto/create-inventory.dto"); const update_inventory_dto_1 = require("./dto/update-inventory.dto"); const inventory_service_1 = require("./inventory.service"); const consume_inventory_dto_1 = require("./dto/consume-inventory.dto"); let InventoryController = class InventoryController { constructor(inventoryService) { this.inventoryService = inventoryService; } consume(id, body) { return this.inventoryService.consume(id, body); } findConsumptionHistory(id) { return this.inventoryService.findConsumptionHistory(id); } findAll(location, sort) { return this.inventoryService.findAll({ location, sort }); } findExpiring() { return this.inventoryService.findExpiring(); } create(body) { return this.inventoryService.create(body); } update(id, body) { return this.inventoryService.update(id, body); } remove(id) { return this.inventoryService.remove(id); } }; exports.InventoryController = InventoryController; __decorate([ (0, common_1.Post)(':id/consume'), __param(0, (0, common_1.Param)('id', common_1.ParseIntPipe)), __param(1, (0, common_1.Body)()), __metadata("design:type", Function), __metadata("design:paramtypes", [Number, consume_inventory_dto_1.ConsumeInventoryDto]), __metadata("design:returntype", void 0) ], InventoryController.prototype, "consume", null); __decorate([ (0, common_1.Get)(':id/consumption-history'), __param(0, (0, common_1.Param)('id', common_1.ParseIntPipe)), __metadata("design:type", Function), __metadata("design:paramtypes", [Number]), __metadata("design:returntype", void 0) ], InventoryController.prototype, "findConsumptionHistory", null); __decorate([ (0, common_1.Get)(), __param(0, (0, common_1.Query)('location')), __param(1, (0, common_1.Query)('sort')), __metadata("design:type", Function), __metadata("design:paramtypes", [String, String]), __metadata("design:returntype", void 0) ], InventoryController.prototype, "findAll", null); __decorate([ (0, common_1.Get)('expiring'), __metadata("design:type", Function), __metadata("design:paramtypes", []), __metadata("design:returntype", void 0) ], InventoryController.prototype, "findExpiring", null); __decorate([ (0, common_1.Post)(), __param(0, (0, common_1.Body)()), __metadata("design:type", Function), __metadata("design:paramtypes", [create_inventory_dto_1.CreateInventoryDto]), __metadata("design:returntype", void 0) ], InventoryController.prototype, "create", null); __decorate([ (0, common_1.Patch)(':id'), __param(0, (0, common_1.Param)('id', common_1.ParseIntPipe)), __param(1, (0, common_1.Body)()), __metadata("design:type", Function), __metadata("design:paramtypes", [Number, update_inventory_dto_1.UpdateInventoryDto]), __metadata("design:returntype", void 0) ], InventoryController.prototype, "update", null); __decorate([ (0, common_1.Delete)(':id'), __param(0, (0, common_1.Param)('id', common_1.ParseIntPipe)), __metadata("design:type", Function), __metadata("design:paramtypes", [Number]), __metadata("design:returntype", void 0) ], InventoryController.prototype, "remove", null); exports.InventoryController = InventoryController = __decorate([ (0, common_1.Controller)('inventory'), __metadata("design:paramtypes", [inventory_service_1.InventoryService]) ], InventoryController); //# sourceMappingURL=inventory.controller.js.map