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

@alline/model

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alline/model - npm Package Compare versions

Comparing version 1.0.2 to 1.1.0

lib/ajv.d.ts

7

CHANGELOG.md

@@ -0,1 +1,8 @@

# [1.1.0](https://gitlab.com/alline/model/compare/v1.0.2...v1.1.0) (2020-05-07)
### Features
* add validation ([36520f1](https://gitlab.com/alline/model/commit/36520f19b68bde0aa421c9b1907a2e21edd0eac3))
## [1.0.2](https://gitlab.com/alline/model/compare/v1.0.1...v1.0.2) (2020-05-06)

@@ -2,0 +9,0 @@

63

lib/index.d.ts

@@ -1,61 +0,2 @@

export interface Actor {
name: string;
role: string;
photo?: string;
}
export interface Album {
sortTitle: string;
aired?: string;
collections: string[];
genres: string[];
summary?: string;
}
export interface Artist {
sortTitle: string;
genres: string[];
collections: string[];
summary?: string;
similar: string[];
}
export interface Episode {
title: string[];
aired?: string;
contentRating: string;
summary?: string;
directors: string[];
writers: string[];
rating?: number;
}
export interface Movie {
title: string;
sortTitle: string;
originalTitle: string[];
contentRating: string;
tagline: string[];
studio: string[];
aired?: string;
summary?: string;
rating?: number;
genres: string[];
collections: string[];
actors: Actor[];
directors: string[];
writers: string[];
}
export interface Show {
title: string;
sortTitle: string;
originalTitle: string[];
contentRating: string;
tagline: string[];
studio: string[];
aired?: string;
summary?: string;
rating?: number;
genres: string[];
collections: string[];
actors: Actor[];
seasonSummary: {
[key: number]: string;
};
}
export * from "./model";
export * from "./validate";
"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
__export(require("./validate"));
//# sourceMappingURL=index.js.map
{
"name": "@alline/model",
"version": "1.0.2",
"version": "1.1.0",
"description": "Data model for Alline.",

@@ -34,2 +34,3 @@ "main": "./lib/index.js",

"@semantic-release/gitlab": "^6.0.4",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.4",

@@ -41,3 +42,8 @@ "eslint": "^6.8.0",

"typescript": "^3.8.3"
},
"dependencies": {
"ajv": "^6.12.2",
"lodash": "^4.17.15",
"uri-js": "^4.2.2"
}
}

Sorry, the diff of this file is not supported yet

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