michangarrito/apps/backend/dist/modules/messaging/messaging.controller.js
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00

116 lines
5.4 KiB
JavaScript

"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.MessagingController = void 0;
const common_1 = require("@nestjs/common");
const swagger_1 = require("@nestjs/swagger");
const jwt_auth_guard_1 = require("../auth/guards/jwt-auth.guard");
const messaging_service_1 = require("./messaging.service");
let MessagingController = class MessagingController {
constructor(messagingService) {
this.messagingService = messagingService;
}
getConversations(req) {
return this.messagingService.getConversations(req.user.tenantId);
}
getConversation(req, id) {
return this.messagingService.getConversation(req.user.tenantId, id);
}
getMessages(id, limit) {
return this.messagingService.getMessages(id, limit);
}
markAsRead(req, id) {
return this.messagingService.markAsRead(req.user.tenantId, id);
}
getNotifications(req, unreadOnly) {
return this.messagingService.getNotifications(req.user.tenantId, req.user.id, unreadOnly);
}
getUnreadCount(req) {
return this.messagingService.getUnreadCount(req.user.tenantId, req.user.id);
}
markNotificationRead(id) {
return this.messagingService.markNotificationRead(id);
}
};
exports.MessagingController = MessagingController;
__decorate([
(0, common_1.Get)('conversations'),
(0, swagger_1.ApiOperation)({ summary: 'Listar conversaciones' }),
__param(0, (0, common_1.Request)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "getConversations", null);
__decorate([
(0, common_1.Get)('conversations/:id'),
(0, swagger_1.ApiOperation)({ summary: 'Obtener conversación con mensajes' }),
__param(0, (0, common_1.Request)()),
__param(1, (0, common_1.Param)('id')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, String]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "getConversation", null);
__decorate([
(0, common_1.Get)('conversations/:id/messages'),
(0, swagger_1.ApiOperation)({ summary: 'Obtener mensajes de una conversación' }),
(0, swagger_1.ApiQuery)({ name: 'limit', required: false }),
__param(0, (0, common_1.Param)('id')),
__param(1, (0, common_1.Query)('limit')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [String, Number]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "getMessages", null);
__decorate([
(0, common_1.Patch)('conversations/:id/read'),
(0, swagger_1.ApiOperation)({ summary: 'Marcar conversación como leída' }),
__param(0, (0, common_1.Request)()),
__param(1, (0, common_1.Param)('id')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, String]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "markAsRead", null);
__decorate([
(0, common_1.Get)('notifications'),
(0, swagger_1.ApiOperation)({ summary: 'Listar notificaciones' }),
(0, swagger_1.ApiQuery)({ name: 'unreadOnly', required: false }),
__param(0, (0, common_1.Request)()),
__param(1, (0, common_1.Query)('unreadOnly')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object, Boolean]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "getNotifications", null);
__decorate([
(0, common_1.Get)('notifications/count'),
(0, swagger_1.ApiOperation)({ summary: 'Contador de notificaciones no leídas' }),
__param(0, (0, common_1.Request)()),
__metadata("design:type", Function),
__metadata("design:paramtypes", [Object]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "getUnreadCount", null);
__decorate([
(0, common_1.Patch)('notifications/:id/read'),
(0, swagger_1.ApiOperation)({ summary: 'Marcar notificación como leída' }),
__param(0, (0, common_1.Param)('id')),
__metadata("design:type", Function),
__metadata("design:paramtypes", [String]),
__metadata("design:returntype", void 0)
], MessagingController.prototype, "markNotificationRead", null);
exports.MessagingController = MessagingController = __decorate([
(0, swagger_1.ApiTags)('messaging'),
(0, swagger_1.ApiBearerAuth)(),
(0, common_1.UseGuards)(jwt_auth_guard_1.JwtAuthGuard),
(0, common_1.Controller)('v1/messaging'),
__metadata("design:paramtypes", [messaging_service_1.MessagingService])
], MessagingController);
//# sourceMappingURL=messaging.controller.js.map