mirror of
https://github.com/hexastack/hexabot
synced 2024-11-24 13:05:15 +00:00
76 lines
1.9 KiB
TypeScript
76 lines
1.9 KiB
TypeScript
/*
|
|
* Copyright © 2024 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 } from '@nestjs/swagger';
|
|
import {
|
|
IsArray,
|
|
IsIn,
|
|
IsNotEmpty,
|
|
IsOptional,
|
|
IsString,
|
|
} from 'class-validator';
|
|
|
|
import { SettingType } from '../schemas/types';
|
|
|
|
export class SettingCreateDto {
|
|
@ApiProperty({ description: 'Setting group', type: String })
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
group: string;
|
|
|
|
@ApiProperty({ description: 'Setting subgroup', type: String })
|
|
@IsOptional()
|
|
@IsString()
|
|
subgroup?: string;
|
|
|
|
@ApiProperty({ description: 'Setting label (system name)', type: String })
|
|
@IsNotEmpty()
|
|
@IsString()
|
|
label: string;
|
|
|
|
@ApiProperty({
|
|
description: 'Setting type',
|
|
enum: [
|
|
'text',
|
|
'multiple_text',
|
|
'checkbox',
|
|
'select',
|
|
'number',
|
|
'attachment',
|
|
'multiple_attachment',
|
|
],
|
|
})
|
|
@IsNotEmpty()
|
|
@IsIn(Object.values(SettingType))
|
|
type: SettingType;
|
|
|
|
@ApiProperty({ description: 'Setting value' })
|
|
@IsNotEmpty()
|
|
value: any;
|
|
|
|
@ApiPropertyOptional({
|
|
description: 'Setting options (required when type is select)',
|
|
isArray: true,
|
|
type: Array,
|
|
})
|
|
@IsArray()
|
|
@IsOptional()
|
|
options?: string[];
|
|
|
|
//TODO: adding swagger decorators
|
|
config?: Record<string, any>;
|
|
|
|
//TODO: adding swagger decorators
|
|
weight: number;
|
|
}
|
|
|
|
export class SettingUpdateDto {
|
|
@ApiProperty({ description: 'value of the setting' })
|
|
value: null | string | number | boolean | string[] | Record<string, any>;
|
|
}
|