hcode-core
Advanced tools
Comparing version 0.0.28 to 0.0.29
import { Address } from './address'; | ||
import { Model } from './model'; | ||
import { PersonValue } from './personValue'; | ||
export interface Person { | ||
export interface Person extends Model { | ||
id: number; | ||
@@ -5,0 +6,0 @@ name: string; |
{ | ||
"name": "hcode-core", | ||
"version": "0.0.28", | ||
"version": "0.0.29", | ||
"description": "Hcode Core", | ||
@@ -5,0 +5,0 @@ "types": "typings.d.ts", |
import { Address } from './address'; | ||
import { Model } from './model'; | ||
import { PersonValue } from './personValue'; | ||
export interface Person { | ||
export interface Person extends Model { | ||
id: number; | ||
@@ -6,0 +7,0 @@ name: string; |
@@ -113,2 +113,6 @@ //Arquivo gerado automaticamente. NÃO EDITAR pois será perdido. | ||
}; | ||
type ModelAliased = { | ||
createdAt: string; | ||
updateAt: string; | ||
}; | ||
type PermissionAliased = { | ||
@@ -119,3 +123,3 @@ id: number; | ||
}; | ||
type PersonAliased = { | ||
type Person extends ModelAliased = { | ||
id: number; | ||
@@ -148,3 +152,3 @@ name: string; | ||
photo?: FileAliased; | ||
person?: PersonAliased; | ||
person?: Person; | ||
}; | ||
@@ -169,4 +173,5 @@ type VisibilityAliased = { | ||
export type Menu = MenuAliased; | ||
export type Model = ModelAliased; | ||
export type Permission = PermissionAliased; | ||
export type Person = PersonAliased; | ||
export type Person extends Model = Person extends ModelAliased; | ||
export type PersonValue = PersonValueAliased; | ||
@@ -173,0 +178,0 @@ export type Tag = TagAliased; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38955
127
995