@jellyfin/sdk 0.0.0-unstable.202303301750 → 0.8.0
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/lib/generated-client/api/audio-api.d.ts +8 -8
- package/lib/generated-client/api/audio-api.js +6 -6
- package/lib/generated-client/api/dynamic-hls-api.d.ts +4 -4
- package/lib/generated-client/api/dynamic-hls-api.js +3 -3
- package/lib/generated-client/api/image-api.d.ts +336 -84
- package/lib/generated-client/api/image-api.js +336 -168
- package/lib/generated-client/api/image-by-name-api.js +71 -2
- package/lib/generated-client/api/items-api.d.ts +36 -36
- package/lib/generated-client/api/items-api.js +27 -27
- package/lib/generated-client/api/notifications-api.js +79 -2
- package/lib/generated-client/api/quick-connect-api.d.ts +37 -46
- package/lib/generated-client/api/quick-connect-api.js +50 -56
- package/lib/generated-client/api/search-api.d.ts +38 -38
- package/lib/generated-client/api/search-api.js +18 -18
- package/lib/generated-client/api/trailers-api.d.ts +20 -20
- package/lib/generated-client/api/trailers-api.js +15 -15
- package/lib/generated-client/api/user-api.d.ts +12 -7
- package/lib/generated-client/api/user-api.js +12 -10
- package/lib/generated-client/api/user-library-api.d.ts +0 -56
- package/lib/generated-client/api/user-library-api.js +0 -71
- package/lib/generated-client/api.d.ts +2 -0
- package/lib/generated-client/index.js +4 -3
- package/lib/generated-client/models/architecture.d.ts +0 -3
- package/lib/generated-client/models/architecture.js +1 -4
- package/lib/generated-client/models/authenticate-user-by-name.d.ts +7 -0
- package/lib/generated-client/models/base-item-dto.d.ts +3 -9
- package/lib/generated-client/models/base-item-person.d.ts +3 -4
- package/lib/generated-client/models/container-profile.d.ts +1 -1
- package/lib/generated-client/models/create-user-by-name.d.ts +1 -1
- package/lib/generated-client/models/encoding-options.d.ts +36 -49
- package/lib/generated-client/models/index.d.ts +10 -6
- package/lib/generated-client/models/index.js +2 -3
- package/lib/generated-client/models/library-options.d.ts +0 -6
- package/lib/generated-client/models/live-tv-options.d.ts +0 -12
- package/lib/generated-client/models/media-stream.d.ts +0 -12
- package/lib/generated-client/models/network-configuration.d.ts +1 -1
- package/lib/generated-client/models/{image-resolution.js → notification-level.js} +6 -12
- package/lib/generated-client/models/parental-rating.d.ts +1 -1
- package/lib/generated-client/models/public-system-info.d.ts +0 -1
- package/lib/generated-client/models/remove-from-playlist-request-dto.d.ts +1 -1
- package/lib/generated-client/models/search-hint.d.ts +15 -17
- package/lib/generated-client/models/{down-mix-stereo-algorithms.js → send-to-user-type.js} +6 -6
- package/lib/generated-client/models/series-status.d.ts +1 -2
- package/lib/generated-client/models/series-status.js +2 -3
- package/lib/generated-client/models/server-configuration.d.ts +0 -19
- package/lib/generated-client/models/system-info.d.ts +0 -3
- package/lib/generated-client/models/tuner-host-info.d.ts +0 -6
- package/lib/generated-client/models/user-policy.d.ts +0 -12
- package/lib/versions.d.ts +1 -1
- package/lib/versions.js +1 -1
- package/package.json +1 -1
- package/lib/generated-client/models/down-mix-stereo-algorithms.d.ts +0 -21
- package/lib/generated-client/models/image-resolution.d.ts +0 -27
- package/lib/generated-client/models/lyric-line.d.ts +0 -29
- package/lib/generated-client/models/lyric-metadata.d.ts +0 -71
- package/lib/generated-client/models/lyric-response.d.ts +0 -31
- package/lib/generated-client/models/person-kind.d.ts +0 -36
- package/lib/generated-client/models/person-kind.js +0 -39
|
@@ -15,11 +15,11 @@ const UserApiAxiosParamCreator = function (configuration) {
|
|
|
15
15
|
* @summary Authenticates a user.
|
|
16
16
|
* @param {string} userId The user id.
|
|
17
17
|
* @param {string} pw The password as plain text.
|
|
18
|
+
* @param {string} [password] The password sha1-hash.
|
|
18
19
|
* @param {*} [options] Override http request option.
|
|
19
|
-
* @deprecated
|
|
20
20
|
* @throws {RequiredError}
|
|
21
21
|
*/
|
|
22
|
-
authenticateUser: (userId, pw, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
22
|
+
authenticateUser: (userId, pw, password, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
23
23
|
// verify required parameter 'userId' is not null or undefined
|
|
24
24
|
assertParamExists('authenticateUser', 'userId', userId);
|
|
25
25
|
// verify required parameter 'pw' is not null or undefined
|
|
@@ -38,6 +38,9 @@ const UserApiAxiosParamCreator = function (configuration) {
|
|
|
38
38
|
if (pw !== undefined) {
|
|
39
39
|
localVarQueryParameter['pw'] = pw;
|
|
40
40
|
}
|
|
41
|
+
if (password !== undefined) {
|
|
42
|
+
localVarQueryParameter['password'] = password;
|
|
43
|
+
}
|
|
41
44
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
42
45
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
43
46
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -541,13 +544,13 @@ const UserApiFp = function (configuration) {
|
|
|
541
544
|
* @summary Authenticates a user.
|
|
542
545
|
* @param {string} userId The user id.
|
|
543
546
|
* @param {string} pw The password as plain text.
|
|
547
|
+
* @param {string} [password] The password sha1-hash.
|
|
544
548
|
* @param {*} [options] Override http request option.
|
|
545
|
-
* @deprecated
|
|
546
549
|
* @throws {RequiredError}
|
|
547
550
|
*/
|
|
548
|
-
authenticateUser(userId, pw, options) {
|
|
551
|
+
authenticateUser(userId, pw, password, options) {
|
|
549
552
|
return __awaiter(this, void 0, void 0, function* () {
|
|
550
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.authenticateUser(userId, pw, options);
|
|
553
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.authenticateUser(userId, pw, password, options);
|
|
551
554
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
552
555
|
});
|
|
553
556
|
},
|
|
@@ -764,12 +767,12 @@ const UserApiFactory = function (configuration, basePath, axios) {
|
|
|
764
767
|
* @summary Authenticates a user.
|
|
765
768
|
* @param {string} userId The user id.
|
|
766
769
|
* @param {string} pw The password as plain text.
|
|
770
|
+
* @param {string} [password] The password sha1-hash.
|
|
767
771
|
* @param {*} [options] Override http request option.
|
|
768
|
-
* @deprecated
|
|
769
772
|
* @throws {RequiredError}
|
|
770
773
|
*/
|
|
771
|
-
authenticateUser(userId, pw, options) {
|
|
772
|
-
return localVarFp.authenticateUser(userId, pw, options).then((request) => request(axios, basePath));
|
|
774
|
+
authenticateUser(userId, pw, password, options) {
|
|
775
|
+
return localVarFp.authenticateUser(userId, pw, password, options).then((request) => request(axios, basePath));
|
|
773
776
|
},
|
|
774
777
|
/**
|
|
775
778
|
*
|
|
@@ -939,12 +942,11 @@ class UserApi extends BaseAPI {
|
|
|
939
942
|
* @summary Authenticates a user.
|
|
940
943
|
* @param {UserApiAuthenticateUserRequest} requestParameters Request parameters.
|
|
941
944
|
* @param {*} [options] Override http request option.
|
|
942
|
-
* @deprecated
|
|
943
945
|
* @throws {RequiredError}
|
|
944
946
|
* @memberof UserApi
|
|
945
947
|
*/
|
|
946
948
|
authenticateUser(requestParameters, options) {
|
|
947
|
-
return UserApiFp(this.configuration).authenticateUser(requestParameters.userId, requestParameters.pw, options).then((request) => request(this.axios, this.basePath));
|
|
949
|
+
return UserApiFp(this.configuration).authenticateUser(requestParameters.userId, requestParameters.pw, requestParameters.password, options).then((request) => request(this.axios, this.basePath));
|
|
948
950
|
}
|
|
949
951
|
/**
|
|
950
952
|
*
|
|
@@ -16,7 +16,6 @@ import { BaseItemDtoQueryResult } from '../models';
|
|
|
16
16
|
import { BaseItemKind } from '../models';
|
|
17
17
|
import { ImageType } from '../models';
|
|
18
18
|
import { ItemFields } from '../models';
|
|
19
|
-
import { LyricResponse } from '../models';
|
|
20
19
|
import { UserItemDataDto } from '../models';
|
|
21
20
|
/**
|
|
22
21
|
* UserLibraryApi - axios parameter creator
|
|
@@ -77,15 +76,6 @@ export declare const UserLibraryApiAxiosParamCreator: (configuration?: Configura
|
|
|
77
76
|
* @throws {RequiredError}
|
|
78
77
|
*/
|
|
79
78
|
getLocalTrailers: (userId: string, itemId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @summary Gets an item\'s lyrics.
|
|
83
|
-
* @param {string} userId User id.
|
|
84
|
-
* @param {string} itemId Item id.
|
|
85
|
-
* @param {*} [options] Override http request option.
|
|
86
|
-
* @throws {RequiredError}
|
|
87
|
-
*/
|
|
88
|
-
getLyrics: (userId: string, itemId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
89
79
|
/**
|
|
90
80
|
*
|
|
91
81
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -191,15 +181,6 @@ export declare const UserLibraryApiFp: (configuration?: Configuration) => {
|
|
|
191
181
|
* @throws {RequiredError}
|
|
192
182
|
*/
|
|
193
183
|
getLocalTrailers(userId: string, itemId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BaseItemDto>>>;
|
|
194
|
-
/**
|
|
195
|
-
*
|
|
196
|
-
* @summary Gets an item\'s lyrics.
|
|
197
|
-
* @param {string} userId User id.
|
|
198
|
-
* @param {string} itemId Item id.
|
|
199
|
-
* @param {*} [options] Override http request option.
|
|
200
|
-
* @throws {RequiredError}
|
|
201
|
-
*/
|
|
202
|
-
getLyrics(userId: string, itemId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LyricResponse>>;
|
|
203
184
|
/**
|
|
204
185
|
*
|
|
205
186
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -305,15 +286,6 @@ export declare const UserLibraryApiFactory: (configuration?: Configuration, base
|
|
|
305
286
|
* @throws {RequiredError}
|
|
306
287
|
*/
|
|
307
288
|
getLocalTrailers(userId: string, itemId: string, options?: any): AxiosPromise<Array<BaseItemDto>>;
|
|
308
|
-
/**
|
|
309
|
-
*
|
|
310
|
-
* @summary Gets an item\'s lyrics.
|
|
311
|
-
* @param {string} userId User id.
|
|
312
|
-
* @param {string} itemId Item id.
|
|
313
|
-
* @param {*} [options] Override http request option.
|
|
314
|
-
* @throws {RequiredError}
|
|
315
|
-
*/
|
|
316
|
-
getLyrics(userId: string, itemId: string, options?: any): AxiosPromise<LyricResponse>;
|
|
317
289
|
/**
|
|
318
290
|
*
|
|
319
291
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -509,25 +481,6 @@ export interface UserLibraryApiGetLocalTrailersRequest {
|
|
|
509
481
|
*/
|
|
510
482
|
readonly itemId: string;
|
|
511
483
|
}
|
|
512
|
-
/**
|
|
513
|
-
* Request parameters for getLyrics operation in UserLibraryApi.
|
|
514
|
-
* @export
|
|
515
|
-
* @interface UserLibraryApiGetLyricsRequest
|
|
516
|
-
*/
|
|
517
|
-
export interface UserLibraryApiGetLyricsRequest {
|
|
518
|
-
/**
|
|
519
|
-
* User id.
|
|
520
|
-
* @type {string}
|
|
521
|
-
* @memberof UserLibraryApiGetLyrics
|
|
522
|
-
*/
|
|
523
|
-
readonly userId: string;
|
|
524
|
-
/**
|
|
525
|
-
* Item id.
|
|
526
|
-
* @type {string}
|
|
527
|
-
* @memberof UserLibraryApiGetLyrics
|
|
528
|
-
*/
|
|
529
|
-
readonly itemId: string;
|
|
530
|
-
}
|
|
531
484
|
/**
|
|
532
485
|
* Request parameters for getRootFolder operation in UserLibraryApi.
|
|
533
486
|
* @export
|
|
@@ -675,15 +628,6 @@ export declare class UserLibraryApi extends BaseAPI {
|
|
|
675
628
|
* @memberof UserLibraryApi
|
|
676
629
|
*/
|
|
677
630
|
getLocalTrailers(requestParameters: UserLibraryApiGetLocalTrailersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseItemDto[], any>>;
|
|
678
|
-
/**
|
|
679
|
-
*
|
|
680
|
-
* @summary Gets an item\'s lyrics.
|
|
681
|
-
* @param {UserLibraryApiGetLyricsRequest} requestParameters Request parameters.
|
|
682
|
-
* @param {*} [options] Override http request option.
|
|
683
|
-
* @throws {RequiredError}
|
|
684
|
-
* @memberof UserLibraryApi
|
|
685
|
-
*/
|
|
686
|
-
getLyrics(requestParameters: UserLibraryApiGetLyricsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LyricResponse, any>>;
|
|
687
631
|
/**
|
|
688
632
|
*
|
|
689
633
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -221,41 +221,6 @@ const UserLibraryApiAxiosParamCreator = function (configuration) {
|
|
|
221
221
|
options: localVarRequestOptions,
|
|
222
222
|
};
|
|
223
223
|
}),
|
|
224
|
-
/**
|
|
225
|
-
*
|
|
226
|
-
* @summary Gets an item\'s lyrics.
|
|
227
|
-
* @param {string} userId User id.
|
|
228
|
-
* @param {string} itemId Item id.
|
|
229
|
-
* @param {*} [options] Override http request option.
|
|
230
|
-
* @throws {RequiredError}
|
|
231
|
-
*/
|
|
232
|
-
getLyrics: (userId, itemId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
233
|
-
// verify required parameter 'userId' is not null or undefined
|
|
234
|
-
assertParamExists('getLyrics', 'userId', userId);
|
|
235
|
-
// verify required parameter 'itemId' is not null or undefined
|
|
236
|
-
assertParamExists('getLyrics', 'itemId', itemId);
|
|
237
|
-
const localVarPath = `/Users/{userId}/Items/{itemId}/Lyrics`
|
|
238
|
-
.replace(`{${"userId"}}`, encodeURIComponent(String(userId)))
|
|
239
|
-
.replace(`{${"itemId"}}`, encodeURIComponent(String(itemId)));
|
|
240
|
-
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
241
|
-
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
242
|
-
let baseOptions;
|
|
243
|
-
if (configuration) {
|
|
244
|
-
baseOptions = configuration.baseOptions;
|
|
245
|
-
}
|
|
246
|
-
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
247
|
-
const localVarHeaderParameter = {};
|
|
248
|
-
const localVarQueryParameter = {};
|
|
249
|
-
// authentication CustomAuthentication required
|
|
250
|
-
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
251
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
252
|
-
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
253
|
-
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
254
|
-
return {
|
|
255
|
-
url: toPathString(localVarUrlObj),
|
|
256
|
-
options: localVarRequestOptions,
|
|
257
|
-
};
|
|
258
|
-
}),
|
|
259
224
|
/**
|
|
260
225
|
*
|
|
261
226
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -519,20 +484,6 @@ const UserLibraryApiFp = function (configuration) {
|
|
|
519
484
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
520
485
|
});
|
|
521
486
|
},
|
|
522
|
-
/**
|
|
523
|
-
*
|
|
524
|
-
* @summary Gets an item\'s lyrics.
|
|
525
|
-
* @param {string} userId User id.
|
|
526
|
-
* @param {string} itemId Item id.
|
|
527
|
-
* @param {*} [options] Override http request option.
|
|
528
|
-
* @throws {RequiredError}
|
|
529
|
-
*/
|
|
530
|
-
getLyrics(userId, itemId, options) {
|
|
531
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
532
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getLyrics(userId, itemId, options);
|
|
533
|
-
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
534
|
-
});
|
|
535
|
-
},
|
|
536
487
|
/**
|
|
537
488
|
*
|
|
538
489
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -676,17 +627,6 @@ const UserLibraryApiFactory = function (configuration, basePath, axios) {
|
|
|
676
627
|
getLocalTrailers(userId, itemId, options) {
|
|
677
628
|
return localVarFp.getLocalTrailers(userId, itemId, options).then((request) => request(axios, basePath));
|
|
678
629
|
},
|
|
679
|
-
/**
|
|
680
|
-
*
|
|
681
|
-
* @summary Gets an item\'s lyrics.
|
|
682
|
-
* @param {string} userId User id.
|
|
683
|
-
* @param {string} itemId Item id.
|
|
684
|
-
* @param {*} [options] Override http request option.
|
|
685
|
-
* @throws {RequiredError}
|
|
686
|
-
*/
|
|
687
|
-
getLyrics(userId, itemId, options) {
|
|
688
|
-
return localVarFp.getLyrics(userId, itemId, options).then((request) => request(axios, basePath));
|
|
689
|
-
},
|
|
690
630
|
/**
|
|
691
631
|
*
|
|
692
632
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -806,17 +746,6 @@ class UserLibraryApi extends BaseAPI {
|
|
|
806
746
|
getLocalTrailers(requestParameters, options) {
|
|
807
747
|
return UserLibraryApiFp(this.configuration).getLocalTrailers(requestParameters.userId, requestParameters.itemId, options).then((request) => request(this.axios, this.basePath));
|
|
808
748
|
}
|
|
809
|
-
/**
|
|
810
|
-
*
|
|
811
|
-
* @summary Gets an item\'s lyrics.
|
|
812
|
-
* @param {UserLibraryApiGetLyricsRequest} requestParameters Request parameters.
|
|
813
|
-
* @param {*} [options] Override http request option.
|
|
814
|
-
* @throws {RequiredError}
|
|
815
|
-
* @memberof UserLibraryApi
|
|
816
|
-
*/
|
|
817
|
-
getLyrics(requestParameters, options) {
|
|
818
|
-
return UserLibraryApiFp(this.configuration).getLyrics(requestParameters.userId, requestParameters.itemId, options).then((request) => request(this.axios, this.basePath));
|
|
819
|
-
}
|
|
820
749
|
/**
|
|
821
750
|
*
|
|
822
751
|
* @summary Gets the root folder from a user\'s library.
|
|
@@ -28,6 +28,7 @@ export * from './api/filter-api';
|
|
|
28
28
|
export * from './api/genres-api';
|
|
29
29
|
export * from './api/hls-segment-api';
|
|
30
30
|
export * from './api/image-api';
|
|
31
|
+
export * from './api/image-by-name-api';
|
|
31
32
|
export * from './api/instant-mix-api';
|
|
32
33
|
export * from './api/item-lookup-api';
|
|
33
34
|
export * from './api/item-refresh-api';
|
|
@@ -40,6 +41,7 @@ export * from './api/localization-api';
|
|
|
40
41
|
export * from './api/media-info-api';
|
|
41
42
|
export * from './api/movies-api';
|
|
42
43
|
export * from './api/music-genres-api';
|
|
44
|
+
export * from './api/notifications-api';
|
|
43
45
|
export * from './api/package-api';
|
|
44
46
|
export * from './api/persons-api';
|
|
45
47
|
export * from './api/playlists-api';
|
|
@@ -18,6 +18,7 @@ export { FilterApi, FilterApiAxiosParamCreator, FilterApiFactory, FilterApiFp }
|
|
|
18
18
|
export { GenresApi, GenresApiAxiosParamCreator, GenresApiFactory, GenresApiFp } from './api/genres-api.js';
|
|
19
19
|
export { HlsSegmentApi, HlsSegmentApiAxiosParamCreator, HlsSegmentApiFactory, HlsSegmentApiFp } from './api/hls-segment-api.js';
|
|
20
20
|
export { ImageApi, ImageApiAxiosParamCreator, ImageApiFactory, ImageApiFp } from './api/image-api.js';
|
|
21
|
+
export { ImageByNameApi, ImageByNameApiAxiosParamCreator, ImageByNameApiFactory, ImageByNameApiFp } from './api/image-by-name-api.js';
|
|
21
22
|
export { InstantMixApi, InstantMixApiAxiosParamCreator, InstantMixApiFactory, InstantMixApiFp } from './api/instant-mix-api.js';
|
|
22
23
|
export { ItemLookupApi, ItemLookupApiAxiosParamCreator, ItemLookupApiFactory, ItemLookupApiFp } from './api/item-lookup-api.js';
|
|
23
24
|
export { ItemRefreshApi, ItemRefreshApiAxiosParamCreator, ItemRefreshApiFactory, ItemRefreshApiFp } from './api/item-refresh-api.js';
|
|
@@ -30,6 +31,7 @@ export { LocalizationApi, LocalizationApiAxiosParamCreator, LocalizationApiFacto
|
|
|
30
31
|
export { MediaInfoApi, MediaInfoApiAxiosParamCreator, MediaInfoApiFactory, MediaInfoApiFp } from './api/media-info-api.js';
|
|
31
32
|
export { MoviesApi, MoviesApiAxiosParamCreator, MoviesApiFactory, MoviesApiFp } from './api/movies-api.js';
|
|
32
33
|
export { MusicGenresApi, MusicGenresApiAxiosParamCreator, MusicGenresApiFactory, MusicGenresApiFp } from './api/music-genres-api.js';
|
|
34
|
+
export { NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp } from './api/notifications-api.js';
|
|
33
35
|
export { PackageApi, PackageApiAxiosParamCreator, PackageApiFactory, PackageApiFp } from './api/package-api.js';
|
|
34
36
|
export { PersonsApi, PersonsApiAxiosParamCreator, PersonsApiFactory, PersonsApiFp } from './api/persons-api.js';
|
|
35
37
|
export { PlaylistsApi, PlaylistsApiAxiosParamCreator, PlaylistsApiFactory, PlaylistsApiFp } from './api/playlists-api.js';
|
|
@@ -70,7 +72,6 @@ export { DayOfWeek } from './models/day-of-week.js';
|
|
|
70
72
|
export { DayPattern } from './models/day-pattern.js';
|
|
71
73
|
export { DeviceProfileType } from './models/device-profile-type.js';
|
|
72
74
|
export { DlnaProfileType } from './models/dlna-profile-type.js';
|
|
73
|
-
export { DownMixStereoAlgorithms } from './models/down-mix-stereo-algorithms.js';
|
|
74
75
|
export { DynamicDayOfWeek } from './models/dynamic-day-of-week.js';
|
|
75
76
|
export { EmbeddedSubtitleOptions } from './models/embedded-subtitle-options.js';
|
|
76
77
|
export { EncodingContext } from './models/encoding-context.js';
|
|
@@ -88,7 +89,6 @@ export { HardwareEncodingType } from './models/hardware-encoding-type.js';
|
|
|
88
89
|
export { HeaderMatchType } from './models/header-match-type.js';
|
|
89
90
|
export { ImageFormat } from './models/image-format.js';
|
|
90
91
|
export { ImageOrientation } from './models/image-orientation.js';
|
|
91
|
-
export { ImageResolution } from './models/image-resolution.js';
|
|
92
92
|
export { ImageSavingConvention } from './models/image-saving-convention.js';
|
|
93
93
|
export { ImageType } from './models/image-type.js';
|
|
94
94
|
export { IsoType } from './models/iso-type.js';
|
|
@@ -103,7 +103,7 @@ export { MediaSourceType } from './models/media-source-type.js';
|
|
|
103
103
|
export { MediaStreamType } from './models/media-stream-type.js';
|
|
104
104
|
export { MetadataField } from './models/metadata-field.js';
|
|
105
105
|
export { MetadataRefreshMode } from './models/metadata-refresh-mode.js';
|
|
106
|
-
export {
|
|
106
|
+
export { NotificationLevel } from './models/notification-level.js';
|
|
107
107
|
export { PlayAccess } from './models/play-access.js';
|
|
108
108
|
export { PlayCommand } from './models/play-command.js';
|
|
109
109
|
export { PlayMethod } from './models/play-method.js';
|
|
@@ -119,6 +119,7 @@ export { RecordingStatus } from './models/recording-status.js';
|
|
|
119
119
|
export { RepeatMode } from './models/repeat-mode.js';
|
|
120
120
|
export { ScrollDirection } from './models/scroll-direction.js';
|
|
121
121
|
export { SendCommandType } from './models/send-command-type.js';
|
|
122
|
+
export { SendToUserType } from './models/send-to-user-type.js';
|
|
122
123
|
export { SeriesStatus } from './models/series-status.js';
|
|
123
124
|
export { SessionMessageType } from './models/session-message-type.js';
|
|
124
125
|
export { SortOrder } from './models/sort-order.js';
|
|
@@ -20,8 +20,5 @@ export declare const Architecture: {
|
|
|
20
20
|
readonly Arm64: "Arm64";
|
|
21
21
|
readonly Wasm: "Wasm";
|
|
22
22
|
readonly S390x: "S390x";
|
|
23
|
-
readonly LoongArch64: "LoongArch64";
|
|
24
|
-
readonly Armv6: "Armv6";
|
|
25
|
-
readonly Ppc64le: "Ppc64le";
|
|
26
23
|
};
|
|
27
24
|
export type Architecture = typeof Architecture[keyof typeof Architecture];
|
|
@@ -26,4 +26,11 @@ export interface AuthenticateUserByName {
|
|
|
26
26
|
* @memberof AuthenticateUserByName
|
|
27
27
|
*/
|
|
28
28
|
'Pw'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
* Gets or sets the sha1-hashed password.
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof AuthenticateUserByName
|
|
33
|
+
* @deprecated
|
|
34
|
+
*/
|
|
35
|
+
'Password'?: string | null;
|
|
29
36
|
}
|
|
@@ -124,12 +124,6 @@ export interface BaseItemDto {
|
|
|
124
124
|
* @memberof BaseItemDto
|
|
125
125
|
*/
|
|
126
126
|
'CanDownload'?: boolean | null;
|
|
127
|
-
/**
|
|
128
|
-
*
|
|
129
|
-
* @type {boolean}
|
|
130
|
-
* @memberof BaseItemDto
|
|
131
|
-
*/
|
|
132
|
-
'HasLyrics'?: boolean | null;
|
|
133
127
|
/**
|
|
134
128
|
*
|
|
135
129
|
* @type {boolean}
|
|
@@ -391,13 +385,13 @@ export interface BaseItemDto {
|
|
|
391
385
|
*/
|
|
392
386
|
'GenreItems'?: Array<NameGuidPair> | null;
|
|
393
387
|
/**
|
|
394
|
-
* Gets or sets
|
|
388
|
+
* Gets or sets wether the item has a logo, this will hold the Id of the Parent that has one.
|
|
395
389
|
* @type {string}
|
|
396
390
|
* @memberof BaseItemDto
|
|
397
391
|
*/
|
|
398
392
|
'ParentLogoItemId'?: string | null;
|
|
399
393
|
/**
|
|
400
|
-
* Gets or sets
|
|
394
|
+
* Gets or sets wether the item has any backdrops, this will hold the Id of the Parent that has one.
|
|
401
395
|
* @type {string}
|
|
402
396
|
* @memberof BaseItemDto
|
|
403
397
|
*/
|
|
@@ -609,7 +603,7 @@ export interface BaseItemDto {
|
|
|
609
603
|
*/
|
|
610
604
|
'ParentLogoImageTag'?: string | null;
|
|
611
605
|
/**
|
|
612
|
-
* Gets or sets
|
|
606
|
+
* Gets or sets wether the item has fan art, this will hold the Id of the Parent that has one.
|
|
613
607
|
* @type {string}
|
|
614
608
|
* @memberof BaseItemDto
|
|
615
609
|
*/
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
10
10
|
*/
|
|
11
11
|
import { BaseItemPersonImageBlurHashes } from './base-item-person-image-blur-hashes';
|
|
12
|
-
import { PersonKind } from './person-kind';
|
|
13
12
|
/**
|
|
14
13
|
* This is used by the api to get information about a Person within a BaseItem.
|
|
15
14
|
* @export
|
|
@@ -35,11 +34,11 @@ export interface BaseItemPerson {
|
|
|
35
34
|
*/
|
|
36
35
|
'Role'?: string | null;
|
|
37
36
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {
|
|
37
|
+
* Gets or sets the type.
|
|
38
|
+
* @type {string}
|
|
40
39
|
* @memberof BaseItemPerson
|
|
41
40
|
*/
|
|
42
|
-
'Type'?:
|
|
41
|
+
'Type'?: string | null;
|
|
43
42
|
/**
|
|
44
43
|
* Gets or sets the primary image tag.
|
|
45
44
|
* @type {string}
|