Skip to content

Commit d5e97a5

Browse files
committed
feat: add canonical_info_hash_group to TorrentResponse
```typescript export type TorrentResponse = { torrent_id: number uploader: string info_hash: string title: string description: string | null category: Category upload_date: string file_size: number seeders: number leechers: number files: Array<TorrentFile> trackers: Array<string> magnet_link: string tags: Array<TorrentTag> name: string comment: string | null creation_date: number | null; created_by: string | null; encoding: string | null; canonical_info_hash_group: Array<string>; } ```
1 parent 946bd72 commit d5e97a5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/types/torrent.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export type TorrentResponse = {
2121
creation_date: number | null;
2222
created_by: string | null;
2323
encoding: string | null;
24+
canonical_info_hash_group: Array<string>;
2425
}
2526

2627
export type TorrentListing = {

0 commit comments

Comments
 (0)