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.
Files changed (2) hide show
  1. package/index.d.ts +7 -7
  2. 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 interface GoodreadsItem {
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: (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substack-feed-api",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",