hcode-core
Advanced tools
Comparing version 0.0.26 to 0.0.27
@@ -21,3 +21,3 @@ import { CourseType } from './courseType'; | ||
visibility?: Visibility; | ||
publishedAt?: Date; | ||
publishedAt?: string; | ||
} |
@@ -8,4 +8,4 @@ import { GoLinkUser } from './goLinkUser'; | ||
domainId: number; | ||
createdAt: Date; | ||
updatedAt: Date; | ||
createdAt?: string; | ||
updatedAt?: string; | ||
_count?: { | ||
@@ -12,0 +12,0 @@ GoLinkLog?: number; |
@@ -9,5 +9,5 @@ import { Address } from './address'; | ||
gender?: string; | ||
birthAt?: Date; | ||
birthAt?: string; | ||
PersonValues?: PersonValue[]; | ||
address?: Address; | ||
} |
{ | ||
"name": "hcode-core", | ||
"version": "0.0.26", | ||
"version": "0.0.27", | ||
"description": "Hcode Core", | ||
@@ -5,0 +5,0 @@ "types": "typings.d.ts", |
@@ -22,3 +22,3 @@ import { CourseType } from './courseType'; | ||
visibility?: Visibility; | ||
publishedAt?: Date; | ||
publishedAt?: string; | ||
} |
@@ -9,4 +9,4 @@ import { GoLinkUser } from './goLinkUser'; | ||
domainId: number; | ||
createdAt: Date; | ||
updatedAt: Date; | ||
createdAt?: string; | ||
updatedAt?: string; | ||
_count?: { | ||
@@ -13,0 +13,0 @@ GoLinkLog?: number; |
@@ -10,5 +10,5 @@ import { Address } from './address'; | ||
gender?: string; | ||
birthAt?: Date; | ||
birthAt?: string; | ||
PersonValues?: PersonValue[]; | ||
address?: Address; | ||
} |
@@ -38,3 +38,3 @@ //Arquivo gerado automaticamente. NÃO EDITAR pois será perdido. | ||
visibility?: VisibilityAliased; | ||
publishedAt?: Date; | ||
publishedAt?: string; | ||
}; | ||
@@ -62,4 +62,4 @@ type CourseTypeAliased = { | ||
domainId: number; | ||
createdAt: Date; | ||
updatedAt: Date; | ||
createdAt?: string; | ||
updatedAt?: string; | ||
_count?: { | ||
@@ -126,3 +126,3 @@ GoLinkLog?: number; | ||
gender?: string; | ||
birthAt?: Date; | ||
birthAt?: string; | ||
PersonValues?: PersonValueAliased[]; | ||
@@ -129,0 +129,0 @@ address?: AddressAliased; |
37144