@jellyfin/sdk 0.0.0-unstable.202511260502 → 0.0.0-unstable.202511280502
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.
|
@@ -50,21 +50,23 @@ export interface UserDto {
|
|
|
50
50
|
* Gets or sets a value indicating whether this instance has password.
|
|
51
51
|
* @type {boolean}
|
|
52
52
|
* @memberof UserDto
|
|
53
|
+
* @deprecated
|
|
53
54
|
*/
|
|
54
|
-
'HasPassword'?: boolean;
|
|
55
|
+
'HasPassword'?: boolean | null;
|
|
55
56
|
/**
|
|
56
57
|
* Gets or sets a value indicating whether this instance has configured password.
|
|
57
58
|
* @type {boolean}
|
|
58
59
|
* @memberof UserDto
|
|
60
|
+
* @deprecated
|
|
59
61
|
*/
|
|
60
|
-
'HasConfiguredPassword'?: boolean;
|
|
62
|
+
'HasConfiguredPassword'?: boolean | null;
|
|
61
63
|
/**
|
|
62
64
|
* Gets or sets a value indicating whether this instance has configured easy password.
|
|
63
65
|
* @type {boolean}
|
|
64
66
|
* @memberof UserDto
|
|
65
67
|
* @deprecated
|
|
66
68
|
*/
|
|
67
|
-
'HasConfiguredEasyPassword'?: boolean;
|
|
69
|
+
'HasConfiguredEasyPassword'?: boolean | null;
|
|
68
70
|
/**
|
|
69
71
|
* Gets or sets whether async login is enabled or not.
|
|
70
72
|
* @type {boolean}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jellyfin/sdk",
|
|
3
|
-
"version": "0.0.0-unstable.
|
|
3
|
+
"version": "0.0.0-unstable.202511280502+commit.f450da3c95fe558bf51496cd21962fb48c1ce2f9",
|
|
4
4
|
"description": "A TypeScript SDK for Jellyfin.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"jellyfin"
|