feat(tiktok): add content posting method to tiktok dto

This commit is contained in:
Keiwan Mosaddegh 2025-01-23 09:49:08 +01:00
parent fc60ed41aa
commit 13b26030b4
1 changed files with 4 additions and 0 deletions

View File

@ -32,4 +32,8 @@ export class TikTokDto {
@IsIn(['true'])
@IsDefined()
isValidVideo: boolean;
@IsIn(['DIRECT_POST', 'UPLOAD'])
@IsString()
content_posting_method: 'DIRECT_POST' | 'UPLOAD';
}