fix: add menu value to enum

This commit is contained in:
abdou6666 2025-03-04 13:06:42 +01:00
parent ea6b19637d
commit 0cf437e773
2 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,7 @@ import { CategoryRepository } from '../repositories/category.repository';
import { LabelRepository } from '../repositories/label.repository';
import { Block, BlockModel } from '../schemas/block.schema';
import { LabelModel } from '../schemas/label.schema';
import { PayloadType } from '../schemas/types/message';
import { PayloadType } from '../schemas/types/button';
import { BlockService } from '../services/block.service';
import { CategoryService } from '../services/category.service';
import { LabelService } from '../services/label.service';

View File

@ -41,4 +41,5 @@ export enum PayloadType {
quick_reply = 'quick_reply',
button = 'button',
outcome = 'outcome',
menu = 'menu',
}