@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
|
@@ -8,75 +8,62 @@
|
|
|
8
8
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
9
9
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
10
10
|
*/
|
|
11
|
-
import { DownMixStereoAlgorithms } from './down-mix-stereo-algorithms';
|
|
12
11
|
/**
|
|
13
|
-
*
|
|
12
|
+
*
|
|
14
13
|
* @export
|
|
15
14
|
* @interface EncodingOptions
|
|
16
15
|
*/
|
|
17
16
|
export interface EncodingOptions {
|
|
18
17
|
/**
|
|
19
|
-
*
|
|
18
|
+
*
|
|
20
19
|
* @type {number}
|
|
21
20
|
* @memberof EncodingOptions
|
|
22
21
|
*/
|
|
23
22
|
'EncodingThreadCount'?: number;
|
|
24
23
|
/**
|
|
25
|
-
*
|
|
24
|
+
*
|
|
26
25
|
* @type {string}
|
|
27
26
|
* @memberof EncodingOptions
|
|
28
27
|
*/
|
|
29
28
|
'TranscodingTempPath'?: string | null;
|
|
30
29
|
/**
|
|
31
|
-
*
|
|
30
|
+
*
|
|
32
31
|
* @type {string}
|
|
33
32
|
* @memberof EncodingOptions
|
|
34
33
|
*/
|
|
35
34
|
'FallbackFontPath'?: string | null;
|
|
36
35
|
/**
|
|
37
|
-
*
|
|
36
|
+
*
|
|
38
37
|
* @type {boolean}
|
|
39
38
|
* @memberof EncodingOptions
|
|
40
39
|
*/
|
|
41
40
|
'EnableFallbackFont'?: boolean;
|
|
42
41
|
/**
|
|
43
|
-
*
|
|
44
|
-
* @type {boolean}
|
|
45
|
-
* @memberof EncodingOptions
|
|
46
|
-
*/
|
|
47
|
-
'EnableAudioVbr'?: boolean;
|
|
48
|
-
/**
|
|
49
|
-
* Gets or sets the audio boost applied when downmixing audio.
|
|
42
|
+
*
|
|
50
43
|
* @type {number}
|
|
51
44
|
* @memberof EncodingOptions
|
|
52
45
|
*/
|
|
53
46
|
'DownMixAudioBoost'?: number;
|
|
54
47
|
/**
|
|
55
48
|
*
|
|
56
|
-
* @type {DownMixStereoAlgorithms}
|
|
57
|
-
* @memberof EncodingOptions
|
|
58
|
-
*/
|
|
59
|
-
'DownMixStereoAlgorithm'?: DownMixStereoAlgorithms;
|
|
60
|
-
/**
|
|
61
|
-
* Gets or sets the maximum size of the muxing queue.
|
|
62
49
|
* @type {number}
|
|
63
50
|
* @memberof EncodingOptions
|
|
64
51
|
*/
|
|
65
52
|
'MaxMuxingQueueSize'?: number;
|
|
66
53
|
/**
|
|
67
|
-
*
|
|
54
|
+
*
|
|
68
55
|
* @type {boolean}
|
|
69
56
|
* @memberof EncodingOptions
|
|
70
57
|
*/
|
|
71
58
|
'EnableThrottling'?: boolean;
|
|
72
59
|
/**
|
|
73
|
-
*
|
|
60
|
+
*
|
|
74
61
|
* @type {number}
|
|
75
62
|
* @memberof EncodingOptions
|
|
76
63
|
*/
|
|
77
64
|
'ThrottleDelaySeconds'?: number;
|
|
78
65
|
/**
|
|
79
|
-
*
|
|
66
|
+
*
|
|
80
67
|
* @type {string}
|
|
81
68
|
* @memberof EncodingOptions
|
|
82
69
|
*/
|
|
@@ -94,163 +81,163 @@ export interface EncodingOptions {
|
|
|
94
81
|
*/
|
|
95
82
|
'EncoderAppPathDisplay'?: string | null;
|
|
96
83
|
/**
|
|
97
|
-
*
|
|
84
|
+
*
|
|
98
85
|
* @type {string}
|
|
99
86
|
* @memberof EncodingOptions
|
|
100
87
|
*/
|
|
101
88
|
'VaapiDevice'?: string | null;
|
|
102
89
|
/**
|
|
103
|
-
*
|
|
90
|
+
*
|
|
104
91
|
* @type {boolean}
|
|
105
92
|
* @memberof EncodingOptions
|
|
106
93
|
*/
|
|
107
94
|
'EnableTonemapping'?: boolean;
|
|
108
95
|
/**
|
|
109
|
-
*
|
|
96
|
+
*
|
|
110
97
|
* @type {boolean}
|
|
111
98
|
* @memberof EncodingOptions
|
|
112
99
|
*/
|
|
113
100
|
'EnableVppTonemapping'?: boolean;
|
|
114
101
|
/**
|
|
115
|
-
*
|
|
102
|
+
*
|
|
116
103
|
* @type {string}
|
|
117
104
|
* @memberof EncodingOptions
|
|
118
105
|
*/
|
|
119
106
|
'TonemappingAlgorithm'?: string | null;
|
|
120
107
|
/**
|
|
121
|
-
*
|
|
108
|
+
*
|
|
122
109
|
* @type {string}
|
|
123
110
|
* @memberof EncodingOptions
|
|
124
111
|
*/
|
|
125
112
|
'TonemappingRange'?: string | null;
|
|
126
113
|
/**
|
|
127
|
-
*
|
|
114
|
+
*
|
|
128
115
|
* @type {number}
|
|
129
116
|
* @memberof EncodingOptions
|
|
130
117
|
*/
|
|
131
118
|
'TonemappingDesat'?: number;
|
|
132
119
|
/**
|
|
133
|
-
*
|
|
120
|
+
*
|
|
134
121
|
* @type {number}
|
|
135
122
|
* @memberof EncodingOptions
|
|
136
123
|
*/
|
|
137
124
|
'TonemappingThreshold'?: number;
|
|
138
125
|
/**
|
|
139
|
-
*
|
|
126
|
+
*
|
|
140
127
|
* @type {number}
|
|
141
128
|
* @memberof EncodingOptions
|
|
142
129
|
*/
|
|
143
130
|
'TonemappingPeak'?: number;
|
|
144
131
|
/**
|
|
145
|
-
*
|
|
132
|
+
*
|
|
146
133
|
* @type {number}
|
|
147
134
|
* @memberof EncodingOptions
|
|
148
135
|
*/
|
|
149
136
|
'TonemappingParam'?: number;
|
|
150
137
|
/**
|
|
151
|
-
*
|
|
138
|
+
*
|
|
152
139
|
* @type {number}
|
|
153
140
|
* @memberof EncodingOptions
|
|
154
141
|
*/
|
|
155
142
|
'VppTonemappingBrightness'?: number;
|
|
156
143
|
/**
|
|
157
|
-
*
|
|
144
|
+
*
|
|
158
145
|
* @type {number}
|
|
159
146
|
* @memberof EncodingOptions
|
|
160
147
|
*/
|
|
161
148
|
'VppTonemappingContrast'?: number;
|
|
162
149
|
/**
|
|
163
|
-
*
|
|
150
|
+
*
|
|
164
151
|
* @type {number}
|
|
165
152
|
* @memberof EncodingOptions
|
|
166
153
|
*/
|
|
167
154
|
'H264Crf'?: number;
|
|
168
155
|
/**
|
|
169
|
-
*
|
|
156
|
+
*
|
|
170
157
|
* @type {number}
|
|
171
158
|
* @memberof EncodingOptions
|
|
172
159
|
*/
|
|
173
160
|
'H265Crf'?: number;
|
|
174
161
|
/**
|
|
175
|
-
*
|
|
162
|
+
*
|
|
176
163
|
* @type {string}
|
|
177
164
|
* @memberof EncodingOptions
|
|
178
165
|
*/
|
|
179
166
|
'EncoderPreset'?: string | null;
|
|
180
167
|
/**
|
|
181
|
-
*
|
|
168
|
+
*
|
|
182
169
|
* @type {boolean}
|
|
183
170
|
* @memberof EncodingOptions
|
|
184
171
|
*/
|
|
185
172
|
'DeinterlaceDoubleRate'?: boolean;
|
|
186
173
|
/**
|
|
187
|
-
*
|
|
174
|
+
*
|
|
188
175
|
* @type {string}
|
|
189
176
|
* @memberof EncodingOptions
|
|
190
177
|
*/
|
|
191
178
|
'DeinterlaceMethod'?: string | null;
|
|
192
179
|
/**
|
|
193
|
-
*
|
|
180
|
+
*
|
|
194
181
|
* @type {boolean}
|
|
195
182
|
* @memberof EncodingOptions
|
|
196
183
|
*/
|
|
197
184
|
'EnableDecodingColorDepth10Hevc'?: boolean;
|
|
198
185
|
/**
|
|
199
|
-
*
|
|
186
|
+
*
|
|
200
187
|
* @type {boolean}
|
|
201
188
|
* @memberof EncodingOptions
|
|
202
189
|
*/
|
|
203
190
|
'EnableDecodingColorDepth10Vp9'?: boolean;
|
|
204
191
|
/**
|
|
205
|
-
*
|
|
192
|
+
*
|
|
206
193
|
* @type {boolean}
|
|
207
194
|
* @memberof EncodingOptions
|
|
208
195
|
*/
|
|
209
196
|
'EnableEnhancedNvdecDecoder'?: boolean;
|
|
210
197
|
/**
|
|
211
|
-
*
|
|
198
|
+
*
|
|
212
199
|
* @type {boolean}
|
|
213
200
|
* @memberof EncodingOptions
|
|
214
201
|
*/
|
|
215
202
|
'PreferSystemNativeHwDecoder'?: boolean;
|
|
216
203
|
/**
|
|
217
|
-
*
|
|
204
|
+
*
|
|
218
205
|
* @type {boolean}
|
|
219
206
|
* @memberof EncodingOptions
|
|
220
207
|
*/
|
|
221
208
|
'EnableIntelLowPowerH264HwEncoder'?: boolean;
|
|
222
209
|
/**
|
|
223
|
-
*
|
|
210
|
+
*
|
|
224
211
|
* @type {boolean}
|
|
225
212
|
* @memberof EncodingOptions
|
|
226
213
|
*/
|
|
227
214
|
'EnableIntelLowPowerHevcHwEncoder'?: boolean;
|
|
228
215
|
/**
|
|
229
|
-
*
|
|
216
|
+
*
|
|
230
217
|
* @type {boolean}
|
|
231
218
|
* @memberof EncodingOptions
|
|
232
219
|
*/
|
|
233
220
|
'EnableHardwareEncoding'?: boolean;
|
|
234
221
|
/**
|
|
235
|
-
*
|
|
222
|
+
*
|
|
236
223
|
* @type {boolean}
|
|
237
224
|
* @memberof EncodingOptions
|
|
238
225
|
*/
|
|
239
226
|
'AllowHevcEncoding'?: boolean;
|
|
240
227
|
/**
|
|
241
|
-
*
|
|
228
|
+
*
|
|
242
229
|
* @type {boolean}
|
|
243
230
|
* @memberof EncodingOptions
|
|
244
231
|
*/
|
|
245
232
|
'EnableSubtitleExtraction'?: boolean;
|
|
246
233
|
/**
|
|
247
|
-
*
|
|
234
|
+
*
|
|
248
235
|
* @type {Array<string>}
|
|
249
236
|
* @memberof EncodingOptions
|
|
250
237
|
*/
|
|
251
238
|
'HardwareDecodingCodecs'?: Array<string> | null;
|
|
252
239
|
/**
|
|
253
|
-
*
|
|
240
|
+
*
|
|
254
241
|
* @type {Array<string>}
|
|
255
242
|
* @memberof EncodingOptions
|
|
256
243
|
*/
|
|
@@ -2,6 +2,7 @@ export * from './access-schedule';
|
|
|
2
2
|
export * from './activity-log-entry';
|
|
3
3
|
export * from './activity-log-entry-query-result';
|
|
4
4
|
export * from './add-virtual-folder-dto';
|
|
5
|
+
export * from './admin-notification-dto';
|
|
5
6
|
export * from './album-info';
|
|
6
7
|
export * from './album-info-remote-search-query';
|
|
7
8
|
export * from './all-theme-media-result';
|
|
@@ -62,7 +63,6 @@ export * from './direct-play-profile';
|
|
|
62
63
|
export * from './display-preferences-dto';
|
|
63
64
|
export * from './dlna-options';
|
|
64
65
|
export * from './dlna-profile-type';
|
|
65
|
-
export * from './down-mix-stereo-algorithms';
|
|
66
66
|
export * from './dynamic-day-of-week';
|
|
67
67
|
export * from './embedded-subtitle-options';
|
|
68
68
|
export * from './encoding-context';
|
|
@@ -94,12 +94,12 @@ export * from './header-match-type';
|
|
|
94
94
|
export * from './http-header-info';
|
|
95
95
|
export * from './iplugin';
|
|
96
96
|
export * from './ignore-wait-request-dto';
|
|
97
|
+
export * from './image-by-name-info';
|
|
97
98
|
export * from './image-format';
|
|
98
99
|
export * from './image-info';
|
|
99
100
|
export * from './image-option';
|
|
100
101
|
export * from './image-orientation';
|
|
101
102
|
export * from './image-provider-info';
|
|
102
|
-
export * from './image-resolution';
|
|
103
103
|
export * from './image-saving-convention';
|
|
104
104
|
export * from './image-type';
|
|
105
105
|
export * from './installation-info';
|
|
@@ -124,9 +124,6 @@ export * from './localization-option';
|
|
|
124
124
|
export * from './location-type';
|
|
125
125
|
export * from './log-file';
|
|
126
126
|
export * from './log-level';
|
|
127
|
-
export * from './lyric-line';
|
|
128
|
-
export * from './lyric-metadata';
|
|
129
|
-
export * from './lyric-response';
|
|
130
127
|
export * from './media-attachment';
|
|
131
128
|
export * from './media-encoder-path-dto';
|
|
132
129
|
export * from './media-path-dto';
|
|
@@ -156,12 +153,18 @@ export * from './name-value-pair';
|
|
|
156
153
|
export * from './network-configuration';
|
|
157
154
|
export * from './new-group-request-dto';
|
|
158
155
|
export * from './next-item-request-dto';
|
|
156
|
+
export * from './notification-dto';
|
|
157
|
+
export * from './notification-level';
|
|
158
|
+
export * from './notification-option';
|
|
159
|
+
export * from './notification-options';
|
|
160
|
+
export * from './notification-result-dto';
|
|
161
|
+
export * from './notification-type-info';
|
|
162
|
+
export * from './notifications-summary-dto';
|
|
159
163
|
export * from './object-group-update';
|
|
160
164
|
export * from './open-live-stream-dto';
|
|
161
165
|
export * from './package-info';
|
|
162
166
|
export * from './parental-rating';
|
|
163
167
|
export * from './path-substitution';
|
|
164
|
-
export * from './person-kind';
|
|
165
168
|
export * from './person-lookup-info';
|
|
166
169
|
export * from './person-lookup-info-remote-search-query';
|
|
167
170
|
export * from './pin-redeem-result';
|
|
@@ -215,6 +218,7 @@ export * from './search-hint-result';
|
|
|
215
218
|
export * from './seek-request-dto';
|
|
216
219
|
export * from './send-command';
|
|
217
220
|
export * from './send-command-type';
|
|
221
|
+
export * from './send-to-user-type';
|
|
218
222
|
export * from './series-info';
|
|
219
223
|
export * from './series-info-remote-search-query';
|
|
220
224
|
export * from './series-status';
|
|
@@ -10,7 +10,6 @@ export { DayOfWeek } from './day-of-week.js';
|
|
|
10
10
|
export { DayPattern } from './day-pattern.js';
|
|
11
11
|
export { DeviceProfileType } from './device-profile-type.js';
|
|
12
12
|
export { DlnaProfileType } from './dlna-profile-type.js';
|
|
13
|
-
export { DownMixStereoAlgorithms } from './down-mix-stereo-algorithms.js';
|
|
14
13
|
export { DynamicDayOfWeek } from './dynamic-day-of-week.js';
|
|
15
14
|
export { EmbeddedSubtitleOptions } from './embedded-subtitle-options.js';
|
|
16
15
|
export { EncodingContext } from './encoding-context.js';
|
|
@@ -28,7 +27,6 @@ export { HardwareEncodingType } from './hardware-encoding-type.js';
|
|
|
28
27
|
export { HeaderMatchType } from './header-match-type.js';
|
|
29
28
|
export { ImageFormat } from './image-format.js';
|
|
30
29
|
export { ImageOrientation } from './image-orientation.js';
|
|
31
|
-
export { ImageResolution } from './image-resolution.js';
|
|
32
30
|
export { ImageSavingConvention } from './image-saving-convention.js';
|
|
33
31
|
export { ImageType } from './image-type.js';
|
|
34
32
|
export { IsoType } from './iso-type.js';
|
|
@@ -43,7 +41,7 @@ export { MediaSourceType } from './media-source-type.js';
|
|
|
43
41
|
export { MediaStreamType } from './media-stream-type.js';
|
|
44
42
|
export { MetadataField } from './metadata-field.js';
|
|
45
43
|
export { MetadataRefreshMode } from './metadata-refresh-mode.js';
|
|
46
|
-
export {
|
|
44
|
+
export { NotificationLevel } from './notification-level.js';
|
|
47
45
|
export { PlayAccess } from './play-access.js';
|
|
48
46
|
export { PlayCommand } from './play-command.js';
|
|
49
47
|
export { PlayMethod } from './play-method.js';
|
|
@@ -59,6 +57,7 @@ export { RecordingStatus } from './recording-status.js';
|
|
|
59
57
|
export { RepeatMode } from './repeat-mode.js';
|
|
60
58
|
export { ScrollDirection } from './scroll-direction.js';
|
|
61
59
|
export { SendCommandType } from './send-command-type.js';
|
|
60
|
+
export { SendToUserType } from './send-to-user-type.js';
|
|
62
61
|
export { SeriesStatus } from './series-status.js';
|
|
63
62
|
export { SessionMessageType } from './session-message-type.js';
|
|
64
63
|
export { SortOrder } from './sort-order.js';
|
|
@@ -72,12 +72,6 @@ export interface LibraryOptions {
|
|
|
72
72
|
* @memberof LibraryOptions
|
|
73
73
|
*/
|
|
74
74
|
'EnableEmbeddedTitles'?: boolean;
|
|
75
|
-
/**
|
|
76
|
-
*
|
|
77
|
-
* @type {boolean}
|
|
78
|
-
* @memberof LibraryOptions
|
|
79
|
-
*/
|
|
80
|
-
'EnableEmbeddedExtrasTitles'?: boolean;
|
|
81
75
|
/**
|
|
82
76
|
*
|
|
83
77
|
* @type {boolean}
|
|
@@ -94,16 +94,4 @@ export interface LiveTvOptions {
|
|
|
94
94
|
* @memberof LiveTvOptions
|
|
95
95
|
*/
|
|
96
96
|
'RecordingPostProcessorArguments'?: string | null;
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
* @type {boolean}
|
|
100
|
-
* @memberof LiveTvOptions
|
|
101
|
-
*/
|
|
102
|
-
'SaveRecordingNFO'?: boolean;
|
|
103
|
-
/**
|
|
104
|
-
*
|
|
105
|
-
* @type {boolean}
|
|
106
|
-
* @memberof LiveTvOptions
|
|
107
|
-
*/
|
|
108
|
-
'SaveRecordingImages'?: boolean;
|
|
109
97
|
}
|
|
@@ -172,12 +172,6 @@ export interface MediaStream {
|
|
|
172
172
|
* @memberof MediaStream
|
|
173
173
|
*/
|
|
174
174
|
'LocalizedExternal'?: string | null;
|
|
175
|
-
/**
|
|
176
|
-
*
|
|
177
|
-
* @type {string}
|
|
178
|
-
* @memberof MediaStream
|
|
179
|
-
*/
|
|
180
|
-
'LocalizedHearingImpaired'?: string | null;
|
|
181
175
|
/**
|
|
182
176
|
*
|
|
183
177
|
* @type {string}
|
|
@@ -256,12 +250,6 @@ export interface MediaStream {
|
|
|
256
250
|
* @memberof MediaStream
|
|
257
251
|
*/
|
|
258
252
|
'IsForced'?: boolean;
|
|
259
|
-
/**
|
|
260
|
-
* Gets or sets a value indicating whether this instance is for the hearing impaired.
|
|
261
|
-
* @type {boolean}
|
|
262
|
-
* @memberof MediaStream
|
|
263
|
-
*/
|
|
264
|
-
'IsHearingImpaired'?: boolean;
|
|
265
253
|
/**
|
|
266
254
|
* Gets or sets the height.
|
|
267
255
|
* @type {number}
|
|
@@ -171,7 +171,7 @@ export interface NetworkConfiguration {
|
|
|
171
171
|
*/
|
|
172
172
|
'AutoDiscovery'?: boolean;
|
|
173
173
|
/**
|
|
174
|
-
* Gets or sets the filter for remote IP connectivity. Used in
|
|
174
|
+
* Gets or sets the filter for remote IP connectivity. Used in conjuntion with <seealso cref=\"P:Jellyfin.Networking.Configuration.NetworkConfiguration.IsRemoteIPFilterBlacklist\" />.
|
|
175
175
|
* @type {Array<string>}
|
|
176
176
|
* @memberof NetworkConfiguration
|
|
177
177
|
*/
|
|
@@ -11,20 +11,14 @@
|
|
|
11
11
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
*
|
|
15
15
|
* @export
|
|
16
16
|
* @enum {string}
|
|
17
17
|
*/
|
|
18
|
-
const
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
P360: 'P360',
|
|
23
|
-
P480: 'P480',
|
|
24
|
-
P720: 'P720',
|
|
25
|
-
P1080: 'P1080',
|
|
26
|
-
P1440: 'P1440',
|
|
27
|
-
P2160: 'P2160'
|
|
18
|
+
const NotificationLevel = {
|
|
19
|
+
Normal: 'Normal',
|
|
20
|
+
Warning: 'Warning',
|
|
21
|
+
Error: 'Error'
|
|
28
22
|
};
|
|
29
23
|
|
|
30
|
-
export {
|
|
24
|
+
export { NotificationLevel };
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
*/
|
|
16
16
|
export interface RemoveFromPlaylistRequestDto {
|
|
17
17
|
/**
|
|
18
|
-
* Gets or sets the playlist identifiers
|
|
18
|
+
* Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist.
|
|
19
19
|
* @type {Array<string>}
|
|
20
20
|
* @memberof RemoveFromPlaylistRequestDto
|
|
21
21
|
*/
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
9
9
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
10
10
|
*/
|
|
11
|
-
import { BaseItemKind } from './base-item-kind';
|
|
12
11
|
/**
|
|
13
12
|
* Class SearchHintResult.
|
|
14
13
|
* @export
|
|
@@ -19,11 +18,10 @@ export interface SearchHint {
|
|
|
19
18
|
* Gets or sets the item id.
|
|
20
19
|
* @type {string}
|
|
21
20
|
* @memberof SearchHint
|
|
22
|
-
* @deprecated
|
|
23
21
|
*/
|
|
24
22
|
'ItemId'?: string;
|
|
25
23
|
/**
|
|
26
|
-
*
|
|
24
|
+
*
|
|
27
25
|
* @type {string}
|
|
28
26
|
* @memberof SearchHint
|
|
29
27
|
*/
|
|
@@ -33,13 +31,13 @@ export interface SearchHint {
|
|
|
33
31
|
* @type {string}
|
|
34
32
|
* @memberof SearchHint
|
|
35
33
|
*/
|
|
36
|
-
'Name'?: string;
|
|
34
|
+
'Name'?: string | null;
|
|
37
35
|
/**
|
|
38
36
|
* Gets or sets the matched term.
|
|
39
37
|
* @type {string}
|
|
40
38
|
* @memberof SearchHint
|
|
41
39
|
*/
|
|
42
|
-
'MatchedTerm'?: string;
|
|
40
|
+
'MatchedTerm'?: string | null;
|
|
43
41
|
/**
|
|
44
42
|
* Gets or sets the index number.
|
|
45
43
|
* @type {number}
|
|
@@ -89,13 +87,13 @@ export interface SearchHint {
|
|
|
89
87
|
*/
|
|
90
88
|
'BackdropImageItemId'?: string | null;
|
|
91
89
|
/**
|
|
92
|
-
*
|
|
93
|
-
* @type {
|
|
90
|
+
* Gets or sets the type.
|
|
91
|
+
* @type {string}
|
|
94
92
|
* @memberof SearchHint
|
|
95
93
|
*/
|
|
96
|
-
'Type'?:
|
|
94
|
+
'Type'?: string | null;
|
|
97
95
|
/**
|
|
98
|
-
*
|
|
96
|
+
*
|
|
99
97
|
* @type {boolean}
|
|
100
98
|
* @memberof SearchHint
|
|
101
99
|
*/
|
|
@@ -111,15 +109,15 @@ export interface SearchHint {
|
|
|
111
109
|
* @type {string}
|
|
112
110
|
* @memberof SearchHint
|
|
113
111
|
*/
|
|
114
|
-
'MediaType'?: string;
|
|
112
|
+
'MediaType'?: string | null;
|
|
115
113
|
/**
|
|
116
|
-
*
|
|
114
|
+
*
|
|
117
115
|
* @type {string}
|
|
118
116
|
* @memberof SearchHint
|
|
119
117
|
*/
|
|
120
118
|
'StartDate'?: string | null;
|
|
121
119
|
/**
|
|
122
|
-
*
|
|
120
|
+
*
|
|
123
121
|
* @type {string}
|
|
124
122
|
* @memberof SearchHint
|
|
125
123
|
*/
|
|
@@ -131,7 +129,7 @@ export interface SearchHint {
|
|
|
131
129
|
*/
|
|
132
130
|
'Series'?: string | null;
|
|
133
131
|
/**
|
|
134
|
-
*
|
|
132
|
+
*
|
|
135
133
|
* @type {string}
|
|
136
134
|
* @memberof SearchHint
|
|
137
135
|
*/
|
|
@@ -143,11 +141,11 @@ export interface SearchHint {
|
|
|
143
141
|
*/
|
|
144
142
|
'Album'?: string | null;
|
|
145
143
|
/**
|
|
146
|
-
*
|
|
144
|
+
*
|
|
147
145
|
* @type {string}
|
|
148
146
|
* @memberof SearchHint
|
|
149
147
|
*/
|
|
150
|
-
'AlbumId'?: string
|
|
148
|
+
'AlbumId'?: string;
|
|
151
149
|
/**
|
|
152
150
|
* Gets or sets the album artist.
|
|
153
151
|
* @type {string}
|
|
@@ -159,7 +157,7 @@ export interface SearchHint {
|
|
|
159
157
|
* @type {Array<string>}
|
|
160
158
|
* @memberof SearchHint
|
|
161
159
|
*/
|
|
162
|
-
'Artists'?: Array<string
|
|
160
|
+
'Artists'?: Array<string> | null;
|
|
163
161
|
/**
|
|
164
162
|
* Gets or sets the song count.
|
|
165
163
|
* @type {number}
|
|
@@ -177,7 +175,7 @@ export interface SearchHint {
|
|
|
177
175
|
* @type {string}
|
|
178
176
|
* @memberof SearchHint
|
|
179
177
|
*/
|
|
180
|
-
'ChannelId'?: string
|
|
178
|
+
'ChannelId'?: string;
|
|
181
179
|
/**
|
|
182
180
|
* Gets or sets the name of the channel.
|
|
183
181
|
* @type {string}
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
*
|
|
15
15
|
* @export
|
|
16
16
|
* @enum {string}
|
|
17
17
|
*/
|
|
18
|
-
const
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
const SendToUserType = {
|
|
19
|
+
All: 'All',
|
|
20
|
+
Admins: 'Admins',
|
|
21
|
+
Custom: 'Custom'
|
|
22
22
|
};
|
|
23
23
|
|
|
24
|
-
export {
|
|
24
|
+
export { SendToUserType };
|
|
@@ -9,13 +9,12 @@
|
|
|
9
9
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
10
10
|
*/
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Enum SeriesStatus.
|
|
13
13
|
* @export
|
|
14
14
|
* @enum {string}
|
|
15
15
|
*/
|
|
16
16
|
export declare const SeriesStatus: {
|
|
17
17
|
readonly Continuing: "Continuing";
|
|
18
18
|
readonly Ended: "Ended";
|
|
19
|
-
readonly Unreleased: "Unreleased";
|
|
20
19
|
};
|
|
21
20
|
export type SeriesStatus = typeof SeriesStatus[keyof typeof SeriesStatus];
|
|
@@ -11,14 +11,13 @@
|
|
|
11
11
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
12
12
|
*/
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Enum SeriesStatus.
|
|
15
15
|
* @export
|
|
16
16
|
* @enum {string}
|
|
17
17
|
*/
|
|
18
18
|
const SeriesStatus = {
|
|
19
19
|
Continuing: 'Continuing',
|
|
20
|
-
Ended: 'Ended'
|
|
21
|
-
Unreleased: 'Unreleased'
|
|
20
|
+
Ended: 'Ended'
|
|
22
21
|
};
|
|
23
22
|
|
|
24
23
|
export { SeriesStatus };
|