ams-ssk
Version:
NestJS AMS Library for file management
27 lines (26 loc) • 616 B
TypeScript
export declare enum MessageType {
TEXT = "text",
PHOTO = "photo",
VIDEO = "video"
}
export declare class BroadcastMessageDto {
message: string;
type?: MessageType;
mediaUrl?: string;
}
export declare class BotStatusResponseDto {
id: number;
activeOperations: number;
maxOperations: number;
utilizationPercentage: number;
}
export declare class ConfigurationResponseDto {
channelConfigured: boolean;
botsCount: number;
maxOperationsPerBot: number;
}
export declare class BroadcastResponseDto {
success: boolean;
messageId?: string;
timestamp: string;
}