mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-20 04:12:23 -06:00
Merge pull request #2163 from ricaelchiquetti/feat/update_delete_meta_templates
Feat/update and delete meta templates
This commit is contained in:
@@ -6,3 +6,16 @@ export class TemplateDto {
|
||||
components: any;
|
||||
webhookUrl?: string;
|
||||
}
|
||||
|
||||
export class TemplateEditDto {
|
||||
templateId: string;
|
||||
category?: 'AUTHENTICATION' | 'MARKETING' | 'UTILITY';
|
||||
allowCategoryChange?: boolean;
|
||||
ttl?: number;
|
||||
components?: any;
|
||||
}
|
||||
|
||||
export class TemplateDeleteDto {
|
||||
name: string;
|
||||
hsmId?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user