/* * Copyright © 2025 Hexastack. All rights reserved. * * Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms: * 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission. * 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file). */ import { ApiProperty, ApiPropertyOptional, PartialType } from '@nestjs/swagger'; import { IsArray, IsDate, IsNotEmpty, IsNumber, IsOptional, IsString, } from 'class-validator'; import { ChannelName } from '@/channel/types'; import { Validate } from '@/utils/decorators/validate.decorator'; import { DtoConfig } from '@/utils/types/dto.types'; import { IsObjectId } from '@/utils/validation-rules/is-object-id'; import { channelDataSchema, SubscriberChannelData, } from '../schemas/types/channel'; export class SubscriberCreateDto { @ApiProperty({ description: 'Subscriber first name', type: String }) @IsNotEmpty() @IsString() first_name: string; @ApiProperty({ description: 'Subscriber last name', type: String }) @IsNotEmpty() @IsString() last_name: string; @ApiPropertyOptional({ description: 'Subscriber locale', type: String }) @IsOptional() @IsString() locale?: string; @ApiPropertyOptional({ description: 'Subscriber timezone', type: Number }) @IsOptional() @IsNumber() timezone?: number; @ApiPropertyOptional({ description: 'Subscriber language', type: String }) @IsNotEmpty() @IsString() language: string; @ApiPropertyOptional({ description: 'Subscriber gender', type: String }) @IsOptional() @IsString() gender?: string; @ApiPropertyOptional({ description: 'Subscriber country', type: String }) @IsOptional() @IsString() country?: string; @ApiPropertyOptional({ description: 'Subscriber foreign id', type: String }) @IsOptional() @IsString() foreign_id?: string; @ApiProperty({ description: 'Subscriber labels', type: Array }) @IsNotEmpty() @IsArray() @IsObjectId({ each: true, message: 'Label must be a valid ObjectId' }) labels: string[]; @ApiPropertyOptional({ description: 'Subscriber assigned to', type: String, default: null, }) @IsOptional() @IsString() @IsObjectId({ message: 'AssignedTo must be a valid ObjectId' }) assignedTo?: string | null; @ApiPropertyOptional({ description: 'Subscriber assigned at', type: Date, default: null, }) @IsOptional() @IsDate() assignedAt?: Date | null; @ApiPropertyOptional({ description: 'Subscriber last visit', type: Date, }) @IsOptional() @IsDate() lastvisit?: Date; @ApiPropertyOptional({ description: 'Subscriber retained from', type: Date, }) @IsOptional() @IsDate() retainedFrom?: Date; @ApiProperty({ description: 'Subscriber channel', type: Object, }) @IsNotEmpty() @Validate(channelDataSchema) channel: SubscriberChannelData; @ApiPropertyOptional({ description: 'Subscriber Avatar', type: String, default: null, }) @IsOptional() @IsString() @IsObjectId({ message: 'Avatar Attachment ID must be a valid ObjectId' }) avatar?: string | null = null; } export class SubscriberUpdateDto extends PartialType(SubscriberCreateDto) {} export type SubscriberDto = DtoConfig<{ create: SubscriberCreateDto; }>;