@alline/model
Advanced tools
Comparing version
@@ -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 @@ |
@@ -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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
43002
180.86%26
271.43%833
1222.22%3
Infinity%11
10%1
Infinity%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added