substack-feed-api 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -94,14 +94,14 @@ export function getPosts(channels: RawFeedChannel[]): SubstackItem[];
|
|
|
94
94
|
// Goodreads RSS Feed Parser
|
|
95
95
|
|
|
96
96
|
// Goodreads Public Types
|
|
97
|
-
export
|
|
98
|
-
title: string
|
|
99
|
-
link: string
|
|
100
|
-
book_image_url: string
|
|
101
|
-
author_name: string
|
|
102
|
-
book_description: string
|
|
97
|
+
export type GoodreadsItem = {
|
|
98
|
+
title: string;
|
|
99
|
+
link: string;
|
|
100
|
+
book_image_url: string;
|
|
101
|
+
author_name: string;
|
|
102
|
+
book_description: string;
|
|
103
103
|
[key: string]: unknown;
|
|
104
|
-
}
|
|
104
|
+
};
|
|
105
105
|
|
|
106
106
|
// Goodreads Public API
|
|
107
107
|
export const getGoodreadsFeed: (
|