github-actions[bot]
Deploy Backend from GitHub Actions Commit: c89dec07198e3d623d9f3e33a3a42f954d0970c2
98629af | import { | |
| IsBoolean, | |
| IsString, | |
| IsNotEmpty, | |
| IsIn, | |
| IsOptional, | |
| IsNumber, | |
| } from "class-validator"; | |
| export class CreateNodeDto { | |
| () | |
| () | |
| title: string; | |
| () | |
| () | |
| summary: string; | |
| () | |
| () | |
| originalText: string; | |
| () | |
| () | |
| quickTake: string; | |
| () | |
| () | |
| difficulty?: string; | |
| () | |
| () | |
| timeToRead?: string; | |
| () | |
| () | |
| videoUrl?: string; | |
| () | |
| () | |
| orderIndex: number; | |
| () | |
| () | |
| chapterId: string; | |
| () | |
| lessonType?: string; | |
| () | |
| lessonFlow?: any; | |
| () | |
| lessonMedia?: any; | |
| () | |
| () | |
| contentReady?: boolean; | |
| () | |
| (["draft", "published", "archived"]) | |
| () | |
| lessonStatus?: string; | |
| } | |