New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

hcode-core

Package Overview
Dependencies
Maintainers
2
Versions
633
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.47 to 0.0.48

lib/interfaces/courseContentType.d.ts

10

lib/interfaces/courseContent.d.ts
import { Course } from './course';
import { CourseType } from './courseType';
import { CourseContentType } from './courseContentType';
import { Visibility } from './visibility';
export interface CourseContent {

@@ -10,9 +11,12 @@ id: number;

courseId: number;
type: CourseType;
typeId: number;
description?: string;
order: number;
code: string;
CourseContent?: CourseContent[];
visibilityId: number;
visibility?: Visibility;
typeId: number;
type?: CourseContentType;
createdAt?: string;
updateAt?: string;
}
{
"name": "hcode-core",
"version": "0.0.47",
"version": "0.0.48",
"description": "Hcode Core",

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

import { Course } from './course';
import { CourseType } from './courseType';
import { CourseContentType } from './courseContentType';
import { Visibility } from './visibility';

@@ -11,4 +12,3 @@ export interface CourseContent {

courseId: number;
type: CourseType;
typeId: number;
description?: string;

@@ -18,4 +18,12 @@ order: number;

CourseContent?: CourseContent[];
visibilityId: number;
visibility?: Visibility;
typeId: number;
type?: CourseContentType;
createdAt?: string;
updateAt?: string;
}

@@ -61,10 +61,19 @@ //Arquivo gerado automaticamente. NÃO EDITAR pois será perdido.

courseId: number;
type: CourseTypeAliased;
typeId: number;
description?: string;
order: number;
code: string;
CourseContent?: CourseContentAliased[];
visibilityId: number;
visibility?: VisibilityAliased;
typeId: number;
type?: CourseContentTypeAliased;
createdAt?: string;
updateAt?: string;
};
type CourseContentTypeAliased = {
id: number;
name: string;
createdAt?: string;
updateAt?: string;
};
type CourseTypeAliased = {

@@ -254,2 +263,3 @@ id: number;

export type CourseContent = CourseContentAliased;
export type CourseContentType = CourseContentTypeAliased;
export type CourseType = CourseTypeAliased;

@@ -256,0 +266,0 @@ export type Domain = DomainAliased;

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