Commit d5e97a5
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
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
24 | 25 | | |
25 | 26 | | |
26 | 27 | | |
| |||
0 commit comments