@ctrl/qbittorrent 4.0.1 → 4.0.2
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/dist/src/types.d.ts +8 -8
- package/dist/src/types.js +8 -8
- package/package.json +9 -9
package/dist/src/types.d.ts
CHANGED
@@ -424,21 +424,21 @@ export declare enum TorrentTrackerStatus {
|
|
424
424
|
*/
|
425
425
|
Disabled = 0,
|
426
426
|
/**
|
427
|
-
* Tracker has been contacted
|
427
|
+
* Tracker has not been contacted yet
|
428
428
|
*/
|
429
|
-
|
429
|
+
Waiting = 1,
|
430
430
|
/**
|
431
|
-
* Tracker
|
431
|
+
* Tracker has been contacted and is working
|
432
432
|
*/
|
433
|
-
|
433
|
+
Working = 2,
|
434
434
|
/**
|
435
|
-
* Tracker
|
435
|
+
* Tracker is updating
|
436
436
|
*/
|
437
|
-
|
437
|
+
Updating = 3,
|
438
438
|
/**
|
439
|
-
* Tracker has
|
439
|
+
* Tracker has been contacted, but it is not working (or doesn't send proper replies)
|
440
440
|
*/
|
441
|
-
|
441
|
+
Errored = 4
|
442
442
|
}
|
443
443
|
export interface WebSeed {
|
444
444
|
/**
|
package/dist/src/types.js
CHANGED
@@ -85,21 +85,21 @@ export var TorrentTrackerStatus;
|
|
85
85
|
*/
|
86
86
|
TorrentTrackerStatus[TorrentTrackerStatus["Disabled"] = 0] = "Disabled";
|
87
87
|
/**
|
88
|
-
* Tracker has been contacted
|
88
|
+
* Tracker has not been contacted yet
|
89
89
|
*/
|
90
|
-
TorrentTrackerStatus[TorrentTrackerStatus["
|
90
|
+
TorrentTrackerStatus[TorrentTrackerStatus["Waiting"] = 1] = "Waiting";
|
91
91
|
/**
|
92
|
-
* Tracker
|
92
|
+
* Tracker has been contacted and is working
|
93
93
|
*/
|
94
|
-
TorrentTrackerStatus[TorrentTrackerStatus["
|
94
|
+
TorrentTrackerStatus[TorrentTrackerStatus["Working"] = 2] = "Working";
|
95
95
|
/**
|
96
|
-
* Tracker
|
96
|
+
* Tracker is updating
|
97
97
|
*/
|
98
|
-
TorrentTrackerStatus[TorrentTrackerStatus["
|
98
|
+
TorrentTrackerStatus[TorrentTrackerStatus["Updating"] = 3] = "Updating";
|
99
99
|
/**
|
100
|
-
* Tracker has
|
100
|
+
* Tracker has been contacted, but it is not working (or doesn't send proper replies)
|
101
101
|
*/
|
102
|
-
TorrentTrackerStatus[TorrentTrackerStatus["
|
102
|
+
TorrentTrackerStatus[TorrentTrackerStatus["Errored"] = 4] = "Errored";
|
103
103
|
})(TorrentTrackerStatus = TorrentTrackerStatus || (TorrentTrackerStatus = {}));
|
104
104
|
export var TorrentFilePriority;
|
105
105
|
(function (TorrentFilePriority) {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ctrl/qbittorrent",
|
3
|
-
"version": "4.0.
|
3
|
+
"version": "4.0.2",
|
4
4
|
"description": "TypeScript api wrapper for qbittorrent using got",
|
5
5
|
"author": "Scott Cooper <scttcper@gmail.com>",
|
6
6
|
"license": "MIT",
|
@@ -33,22 +33,22 @@
|
|
33
33
|
"dependencies": {
|
34
34
|
"@ctrl/magnet-link": "^3.1.1",
|
35
35
|
"@ctrl/shared-torrent": "^4.1.1",
|
36
|
-
"@ctrl/torrent-file": "^2.0.
|
37
|
-
"@ctrl/url-join": "^2.0.
|
38
|
-
"formdata-node": "^4.3.
|
36
|
+
"@ctrl/torrent-file": "^2.0.2",
|
37
|
+
"@ctrl/url-join": "^2.0.2",
|
38
|
+
"formdata-node": "^4.3.3",
|
39
39
|
"got": "^12.1.0",
|
40
40
|
"tough-cookie": "^4.0.0"
|
41
41
|
},
|
42
42
|
"devDependencies": {
|
43
|
-
"@ctrl/eslint-config": "3.4.
|
43
|
+
"@ctrl/eslint-config": "3.4.6",
|
44
44
|
"@sindresorhus/tsconfig": "3.0.1",
|
45
|
-
"@types/node": "
|
45
|
+
"@types/node": "18.0.0",
|
46
46
|
"@types/tough-cookie": "4.0.2",
|
47
47
|
"c8": "7.11.3",
|
48
48
|
"p-wait-for": "4.1.0",
|
49
|
-
"typedoc": "0.
|
50
|
-
"typescript": "4.7.
|
51
|
-
"vitest": "0.
|
49
|
+
"typedoc": "0.23.2",
|
50
|
+
"typescript": "4.7.4",
|
51
|
+
"vitest": "0.16.0"
|
52
52
|
},
|
53
53
|
"release": {
|
54
54
|
"branches": [
|