Merge pull request #2163 from ricaelchiquetti/feat/update_delete_meta_templates

Feat/update and delete meta templates
This commit is contained in:
Davidson Gomes
2025-11-07 14:36:14 -03:00
committed by GitHub
7 changed files with 233 additions and 1 deletions

View File

@@ -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;
}