hcode-core
Advanced tools
Comparing version 0.0.62 to 0.0.63
import { Course } from './course'; | ||
import { CourseContentType } from './courseContentType'; | ||
import { CourseContentVideo } from './courseContentVideo'; | ||
import { Visibility } from './visibility'; | ||
@@ -19,4 +20,5 @@ export interface CourseContent { | ||
CourseContent?: CourseContent[]; | ||
CourseContentVideo?: CourseContentVideo[]; | ||
createdAt?: string; | ||
updateAt?: string; | ||
} |
{ | ||
"name": "hcode-core", | ||
"version": "0.0.62", | ||
"version": "0.0.63", | ||
"description": "Hcode Core", | ||
@@ -5,0 +5,0 @@ "types": "typings.d.ts", |
import { Course } from './course'; | ||
import { CourseContentType } from './courseContentType'; | ||
import { CourseContentVideo } from './courseContentVideo'; | ||
import { Visibility } from './visibility'; | ||
@@ -24,2 +25,3 @@ | ||
CourseContent?: CourseContent[]; | ||
CourseContentVideo?: CourseContentVideo[]; | ||
@@ -26,0 +28,0 @@ createdAt?: string; |
@@ -76,2 +76,3 @@ //Arquivo gerado automaticamente. NÃO EDITAR pois será perdido. | ||
CourseContent?: CourseContentAliased[]; | ||
CourseContentVideo?: CourseContentVideoAliased[]; | ||
createdAt?: string; | ||
@@ -86,2 +87,10 @@ updateAt?: string; | ||
}; | ||
type CourseContentVideoAliased = { | ||
id: number; | ||
courseContentId: number; | ||
fileId: number; | ||
typeId: number; | ||
createdAt?: string; | ||
updateAt?: string; | ||
}; | ||
type CourseTagAliased = { | ||
@@ -280,2 +289,3 @@ courseId: number; | ||
export type CourseContentType = CourseContentTypeAliased; | ||
export type CourseContentVideo = CourseContentVideoAliased; | ||
export type CourseTag = CourseTagAliased; | ||
@@ -282,0 +292,0 @@ export type CourseType = CourseTypeAliased; |
62069
178
1616