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.29 to 0.0.30

2

lib/interfaces/address.d.ts

@@ -11,2 +11,4 @@ export interface Address {

country: string;
createdAt?: string;
updateAt?: string;
}

@@ -22,2 +22,4 @@ import { CourseType } from './courseType';

publishedAt?: string;
createdAt?: string;
updateAt?: string;
}
export interface CourseType {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
}
export interface Domain {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
}

@@ -7,2 +7,4 @@ export interface File {

bytes: number;
createdAt?: string;
updateAt?: string;
}

4

lib/interfaces/goLinkLog.d.ts

@@ -15,5 +15,5 @@ import { GoLink } from './goLink';

userId: number;
goLink: GoLink;
createdAt?: string;
updatedAt?: string;
goLink: GoLink;
updateAt?: string;
}

@@ -6,2 +6,4 @@ import { User } from './user';

user: User;
createdAt?: string;
updateAt?: string;
}

@@ -7,2 +7,4 @@ import { User } from './user';

user?: User;
createdAt?: string;
updateAt?: string;
}

@@ -9,2 +9,4 @@ export interface Mail {

priority?: string;
createdAt?: string;
updateAt?: string;
}

@@ -8,2 +8,4 @@ export interface Menu {

action: string;
createdAt?: string;
updateAt?: string;
}

@@ -5,2 +5,4 @@ export interface Permission {

domainId: number;
createdAt?: string;
updateAt?: string;
}
import { Address } from './address';
import { Model } from './model';
import { PersonValue } from './personValue';
export interface Person extends Model {
export interface Person {
id: number;

@@ -13,2 +12,4 @@ name: string;

address?: Address;
createdAt?: string;
updateAt?: string;
}

@@ -5,2 +5,4 @@ export interface PersonValue {

value: string;
createdAt?: string;
updateAt?: string;
}

@@ -8,2 +8,4 @@ import { Visibility } from './visibility';

visibility?: Visibility;
createdAt?: string;
updateAt?: string;
}

@@ -10,2 +10,4 @@ import { File } from './file';

person?: Person;
createdAt?: string;
updateAt?: string;
}
export interface Visibility {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
}
{
"name": "hcode-core",
"version": "0.0.29",
"version": "0.0.30",
"description": "Hcode Core",

@@ -5,0 +5,0 @@ "types": "typings.d.ts",

@@ -11,2 +11,4 @@ export interface Address {

country: string;
createdAt?: string;
updateAt?: string;
}

@@ -23,2 +23,4 @@ import { CourseType } from './courseType';

publishedAt?: string;
createdAt?: string;
updateAt?: string;
}
export interface CourseType {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
}
export interface Domain {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
}

@@ -7,2 +7,4 @@ export interface File {

bytes: number;
createdAt?: string;
updateAt?: string;
}

@@ -16,5 +16,5 @@ import { GoLink } from './goLink';

userId: number;
goLink: GoLink;
createdAt?: string;
updatedAt?: string;
goLink: GoLink;
updateAt?: string;
}

@@ -7,2 +7,4 @@ import { User } from './user';

user: User;
createdAt?: string;
updateAt?: string;
}

@@ -8,2 +8,4 @@ import { User } from './user';

user?: User;
createdAt?: string;
updateAt?: string;
}
export interface Mail {
from?: string;
to: string;
cc?: Array<string>;
subject: string;
body: string;
replyTo?: string;
priority?: string;
}
from?: string;
to: string;
cc?: Array<string>;
subject: string;
body: string;
replyTo?: string;
priority?: string;
createdAt?: string;
updateAt?: string;
}

@@ -8,2 +8,4 @@ export interface Menu {

action: string;
createdAt?: string;
updateAt?: string;
}

@@ -5,2 +5,4 @@ export interface Permission {

domainId: number;
createdAt?: string;
updateAt?: string;
}
import { Address } from './address';
import { Model } from './model';
import { PersonValue } from './personValue';
export interface Person extends Model {
export interface Person {
id: number;

@@ -14,2 +13,4 @@ name: string;

address?: Address;
createdAt?: string;
updateAt?: string;
}

@@ -5,2 +5,4 @@ export interface PersonValue {

value: string;
createdAt?: string;
updateAt?: string;
}

@@ -9,2 +9,4 @@ import { Visibility } from './visibility';

visibility?: Visibility;
createdAt?: string;
updateAt?: string;
}

@@ -11,2 +11,4 @@ import { File } from './file';

person?: Person;
createdAt?: string;
updateAt?: string;
}
export interface Visibility {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
}

@@ -12,2 +12,4 @@ //Arquivo gerado automaticamente. NÃO EDITAR pois será perdido.

country: string;
createdAt?: string;
updateAt?: string;
};

@@ -40,2 +42,4 @@ type AnyObjectAliased = {

publishedAt?: string;
createdAt?: string;
updateAt?: string;
};

@@ -45,2 +49,4 @@ type CourseTypeAliased = {

name: string;
createdAt?: string;
updateAt?: string;
};

@@ -50,2 +56,4 @@ type DomainAliased = {

name: string;
createdAt?: string;
updateAt?: string;
};

@@ -58,2 +66,4 @@ type FileAliased = {

bytes: number;
createdAt?: string;
updateAt?: string;
};

@@ -86,5 +96,5 @@ type GoLinkAliased = {

userId: number;
goLink: GoLinkAliased;
createdAt?: string;
updatedAt?: string;
goLink: GoLinkAliased;
updateAt?: string;
};

@@ -95,2 +105,4 @@ type GoLinkUserAliased = {

user: UserAliased;
createdAt?: string;
updateAt?: string;
};

@@ -102,2 +114,4 @@ type LogAliased = {

user?: UserAliased;
createdAt?: string;
updateAt?: string;
};

@@ -112,2 +126,4 @@ type MailAliased = {

priority?: string;
createdAt?: string;
updateAt?: string;
};

@@ -121,2 +137,4 @@ type MenuAliased = {

action: string;
createdAt?: string;
updateAt?: string;
};

@@ -131,4 +149,6 @@ type ModelAliased = {

domainId: number;
createdAt?: string;
updateAt?: string;
};
type Person extends ModelAliased = {
type PersonAliased = {
id: number;

@@ -142,2 +162,4 @@ name: string;

address?: AddressAliased;
createdAt?: string;
updateAt?: string;
};

@@ -148,2 +170,4 @@ type PersonValueAliased = {

value: string;
createdAt?: string;
updateAt?: string;
};

@@ -156,2 +180,4 @@ type TagAliased = {

visibility?: VisibilityAliased;
createdAt?: string;
updateAt?: string;
};

@@ -164,3 +190,5 @@ type UserAliased = {

photo?: FileAliased;
person?: Person;
person?: PersonAliased;
createdAt?: string;
updateAt?: string;
};

@@ -170,2 +198,4 @@ type VisibilityAliased = {

name: string;
createdAt?: string;
updateAt?: string;
};

@@ -188,3 +218,3 @@ declare module 'hcode-core' {

export type Permission = PermissionAliased;
export type Person extends Model = Person extends ModelAliased;
export type Person = PersonAliased;
export type PersonValue = PersonValueAliased;

@@ -191,0 +221,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