mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-19 11:52:20 -06:00
36 lines
894 B
TypeScript
36 lines
894 B
TypeScript
import { JSONSchema7 } from 'json-schema';
|
|
import { v4 } from 'uuid';
|
|
|
|
const isNotEmpty = (...propertyNames: string[]): JSONSchema7 => {
|
|
const properties: Record<string, unknown> = {};
|
|
propertyNames.forEach(
|
|
(property) =>
|
|
(properties[property] = {
|
|
minLength: 1,
|
|
description: `The "${property}" cannot be empty`,
|
|
}),
|
|
);
|
|
return {
|
|
if: {
|
|
propertyNames: {
|
|
enum: [...propertyNames],
|
|
},
|
|
},
|
|
then: { properties },
|
|
} as JSONSchema7;
|
|
};
|
|
|
|
export const templateEditSchema: JSONSchema7 = {
|
|
$id: v4(),
|
|
type: 'object',
|
|
properties: {
|
|
templateId: { type: 'string' },
|
|
category: { type: 'string', enum: ['AUTHENTICATION', 'MARKETING', 'UTILITY'] },
|
|
allowCategoryChange: { type: 'boolean' },
|
|
ttl: { type: 'number' },
|
|
components: { type: 'array' },
|
|
},
|
|
required: ['templateId'],
|
|
...isNotEmpty('templateId'),
|
|
};
|