@u-blox/custom-feed
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "@u-blox/custom-feed", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Feed is a RSS, Atom and JSON feed generator for Node.js, making content syndication simple and intuitive!", | ||
@@ -55,2 +55,2 @@ "homepage": "https://github.com/afar-ublox/custom-feed", | ||
} | ||
} | ||
} |
@@ -47,4 +47,4 @@ import { Feed } from "./feed"; | ||
feed.items = items; | ||
console.log(feed); | ||
return JSON.stringify(feed, null, 4); | ||
}; |
export interface Item { | ||
title: string; | ||
id?: string; | ||
link: string; | ||
date: Date; | ||
description?: string; | ||
content?: string; | ||
category?: Category[]; | ||
guid?: string; | ||
image?: string | Enclosure; | ||
audio?: string | Enclosure; | ||
video?: string | Enclosure; | ||
enclosure?: Enclosure; | ||
author?: Author[]; | ||
contributor?: Author[]; | ||
published?: Date; | ||
copyright?: string; | ||
extensions?: Extension[]; | ||
[key: string]: any; | ||
[key: string]: any | [any]; | ||
} | ||
@@ -28,0 +4,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
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
0
292840
6217