Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hcode-core

Package Overview
Dependencies
Maintainers
2
Versions
631
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hcode-core - npm Package Compare versions

Comparing version 0.0.28 to 0.0.29

lib/interfaces/model.d.ts

3

lib/interfaces/person.d.ts
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;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc