- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
243 lines
10 KiB
JavaScript
243 lines
10 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);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.SendPushNotificationDto = exports.UpdateDeviceDto = exports.RegisterDeviceDto = exports.UpdatePreferencesDto = exports.SendTemplateNotificationDto = exports.CreateNotificationDto = void 0;
|
|
const class_validator_1 = require("class-validator");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
class CreateNotificationDto {
|
|
}
|
|
exports.CreateNotificationDto = CreateNotificationDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)(),
|
|
(0, class_validator_1.IsUUID)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "userId", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ enum: ['info', 'success', 'warning', 'error', 'system'] }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsEnum)(['info', 'success', 'warning', 'error', 'system']),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "type", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ enum: ['in_app', 'email', 'push', 'sms'] }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsEnum)(['in_app', 'email', 'push', 'sms']),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "channel", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ example: 'Welcome!' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "title", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ example: 'Welcome to our platform!' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "message", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsObject)(),
|
|
__metadata("design:type", Object)
|
|
], CreateNotificationDto.prototype, "data", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: '/dashboard' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "actionUrl", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Email address for email channel delivery' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsEmail)(),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "email", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'User name for email personalization' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], CreateNotificationDto.prototype, "userName", void 0);
|
|
class SendTemplateNotificationDto {
|
|
}
|
|
exports.SendTemplateNotificationDto = SendTemplateNotificationDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)(),
|
|
(0, class_validator_1.IsUUID)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], SendTemplateNotificationDto.prototype, "userId", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ example: 'welcome_email' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], SendTemplateNotificationDto.prototype, "templateCode", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsObject)(),
|
|
__metadata("design:type", Object)
|
|
], SendTemplateNotificationDto.prototype, "variables", void 0);
|
|
class UpdatePreferencesDto {
|
|
}
|
|
exports.UpdatePreferencesDto = UpdatePreferencesDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "emailEnabled", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "pushEnabled", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "inAppEnabled", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "smsEnabled", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "marketingEmails", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "productUpdates", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdatePreferencesDto.prototype, "securityAlerts", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsObject)(),
|
|
__metadata("design:type", Object)
|
|
], UpdatePreferencesDto.prototype, "categoryPreferences", void 0);
|
|
class RegisterDeviceDto {
|
|
}
|
|
exports.RegisterDeviceDto = RegisterDeviceDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'JSON serialized PushSubscription object' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "deviceToken", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ enum: ['web', 'mobile', 'desktop'], default: 'web' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsEnum)(['web', 'mobile', 'desktop']),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "deviceType", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: 'Chrome on Windows' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "deviceName", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: 'Chrome' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "browser", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: '120.0' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "browserVersion", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: 'Windows' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "os", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: '11' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], RegisterDeviceDto.prototype, "osVersion", void 0);
|
|
class UpdateDeviceDto {
|
|
}
|
|
exports.UpdateDeviceDto = UpdateDeviceDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: 'My Work Laptop' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], UpdateDeviceDto.prototype, "deviceName", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsBoolean)(),
|
|
__metadata("design:type", Boolean)
|
|
], UpdateDeviceDto.prototype, "isActive", void 0);
|
|
class SendPushNotificationDto {
|
|
}
|
|
exports.SendPushNotificationDto = SendPushNotificationDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)(),
|
|
(0, class_validator_1.IsUUID)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], SendPushNotificationDto.prototype, "userId", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ example: 'New Message' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], SendPushNotificationDto.prototype, "title", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ example: 'You have a new message' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsNotEmpty)(),
|
|
__metadata("design:type", String)
|
|
], SendPushNotificationDto.prototype, "body", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: '/messages' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], SendPushNotificationDto.prototype, "url", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ example: '/icon.png' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], SendPushNotificationDto.prototype, "icon", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsObject)(),
|
|
__metadata("design:type", Object)
|
|
], SendPushNotificationDto.prototype, "data", void 0);
|
|
//# sourceMappingURL=create-notification.dto.js.map
|