all-debrid-api 1.3.2 → 1.3.3

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.
@@ -192,6 +192,13 @@ class AllDebridClient {
192
192
  }
193
193
  })
194
194
  },
195
+ files: (id) => {
196
+ return this._get('/v4/magnet/files', {
197
+ params: {
198
+ id: [id]
199
+ }
200
+ })
201
+ },
195
202
  delete: (id) => {
196
203
  return this._get('/v4/magnet/delete', {
197
204
  params: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "all-debrid-api",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Node AllDebrid API wrapper",
5
5
  "main": "index.js",
6
6
  "directories": {