@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.
Files changed (58) hide show
  1. package/lib/generated-client/api/audio-api.d.ts +8 -8
  2. package/lib/generated-client/api/audio-api.js +6 -6
  3. package/lib/generated-client/api/dynamic-hls-api.d.ts +4 -4
  4. package/lib/generated-client/api/dynamic-hls-api.js +3 -3
  5. package/lib/generated-client/api/image-api.d.ts +336 -84
  6. package/lib/generated-client/api/image-api.js +336 -168
  7. package/lib/generated-client/api/image-by-name-api.js +71 -2
  8. package/lib/generated-client/api/items-api.d.ts +36 -36
  9. package/lib/generated-client/api/items-api.js +27 -27
  10. package/lib/generated-client/api/notifications-api.js +79 -2
  11. package/lib/generated-client/api/quick-connect-api.d.ts +37 -46
  12. package/lib/generated-client/api/quick-connect-api.js +50 -56
  13. package/lib/generated-client/api/search-api.d.ts +38 -38
  14. package/lib/generated-client/api/search-api.js +18 -18
  15. package/lib/generated-client/api/trailers-api.d.ts +20 -20
  16. package/lib/generated-client/api/trailers-api.js +15 -15
  17. package/lib/generated-client/api/user-api.d.ts +12 -7
  18. package/lib/generated-client/api/user-api.js +12 -10
  19. package/lib/generated-client/api/user-library-api.d.ts +0 -56
  20. package/lib/generated-client/api/user-library-api.js +0 -71
  21. package/lib/generated-client/api.d.ts +2 -0
  22. package/lib/generated-client/index.js +4 -3
  23. package/lib/generated-client/models/architecture.d.ts +0 -3
  24. package/lib/generated-client/models/architecture.js +1 -4
  25. package/lib/generated-client/models/authenticate-user-by-name.d.ts +7 -0
  26. package/lib/generated-client/models/base-item-dto.d.ts +3 -9
  27. package/lib/generated-client/models/base-item-person.d.ts +3 -4
  28. package/lib/generated-client/models/container-profile.d.ts +1 -1
  29. package/lib/generated-client/models/create-user-by-name.d.ts +1 -1
  30. package/lib/generated-client/models/encoding-options.d.ts +36 -49
  31. package/lib/generated-client/models/index.d.ts +10 -6
  32. package/lib/generated-client/models/index.js +2 -3
  33. package/lib/generated-client/models/library-options.d.ts +0 -6
  34. package/lib/generated-client/models/live-tv-options.d.ts +0 -12
  35. package/lib/generated-client/models/media-stream.d.ts +0 -12
  36. package/lib/generated-client/models/network-configuration.d.ts +1 -1
  37. package/lib/generated-client/models/{image-resolution.js → notification-level.js} +6 -12
  38. package/lib/generated-client/models/parental-rating.d.ts +1 -1
  39. package/lib/generated-client/models/public-system-info.d.ts +0 -1
  40. package/lib/generated-client/models/remove-from-playlist-request-dto.d.ts +1 -1
  41. package/lib/generated-client/models/search-hint.d.ts +15 -17
  42. package/lib/generated-client/models/{down-mix-stereo-algorithms.js → send-to-user-type.js} +6 -6
  43. package/lib/generated-client/models/series-status.d.ts +1 -2
  44. package/lib/generated-client/models/series-status.js +2 -3
  45. package/lib/generated-client/models/server-configuration.d.ts +0 -19
  46. package/lib/generated-client/models/system-info.d.ts +0 -3
  47. package/lib/generated-client/models/tuner-host-info.d.ts +0 -6
  48. package/lib/generated-client/models/user-policy.d.ts +0 -12
  49. package/lib/versions.d.ts +1 -1
  50. package/lib/versions.js +1 -1
  51. package/package.json +1 -1
  52. package/lib/generated-client/models/down-mix-stereo-algorithms.d.ts +0 -21
  53. package/lib/generated-client/models/image-resolution.d.ts +0 -27
  54. package/lib/generated-client/models/lyric-line.d.ts +0 -29
  55. package/lib/generated-client/models/lyric-metadata.d.ts +0 -71
  56. package/lib/generated-client/models/lyric-response.d.ts +0 -31
  57. package/lib/generated-client/models/person-kind.d.ts +0 -36
  58. 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
- * Class EncodingOptions.
12
+ *
14
13
  * @export
15
14
  * @interface EncodingOptions
16
15
  */
17
16
  export interface EncodingOptions {
18
17
  /**
19
- * Gets or sets the thread count used for encoding.
18
+ *
20
19
  * @type {number}
21
20
  * @memberof EncodingOptions
22
21
  */
23
22
  'EncodingThreadCount'?: number;
24
23
  /**
25
- * Gets or sets the temporary transcoding path.
24
+ *
26
25
  * @type {string}
27
26
  * @memberof EncodingOptions
28
27
  */
29
28
  'TranscodingTempPath'?: string | null;
30
29
  /**
31
- * Gets or sets the path to the fallback font.
30
+ *
32
31
  * @type {string}
33
32
  * @memberof EncodingOptions
34
33
  */
35
34
  'FallbackFontPath'?: string | null;
36
35
  /**
37
- * Gets or sets a value indicating whether to use the fallback font.
36
+ *
38
37
  * @type {boolean}
39
38
  * @memberof EncodingOptions
40
39
  */
41
40
  'EnableFallbackFont'?: boolean;
42
41
  /**
43
- * Gets or sets a value indicating whether audio VBR is enabled.
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
- * Gets or sets a value indicating whether throttling is enabled.
54
+ *
68
55
  * @type {boolean}
69
56
  * @memberof EncodingOptions
70
57
  */
71
58
  'EnableThrottling'?: boolean;
72
59
  /**
73
- * Gets or sets the delay after which throttling happens.
60
+ *
74
61
  * @type {number}
75
62
  * @memberof EncodingOptions
76
63
  */
77
64
  'ThrottleDelaySeconds'?: number;
78
65
  /**
79
- * Gets or sets the hardware acceleration type.
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
- * Gets or sets the VA-API device.
84
+ *
98
85
  * @type {string}
99
86
  * @memberof EncodingOptions
100
87
  */
101
88
  'VaapiDevice'?: string | null;
102
89
  /**
103
- * Gets or sets a value indicating whether tonemapping is enabled.
90
+ *
104
91
  * @type {boolean}
105
92
  * @memberof EncodingOptions
106
93
  */
107
94
  'EnableTonemapping'?: boolean;
108
95
  /**
109
- * Gets or sets a value indicating whether VPP tonemapping is enabled.
96
+ *
110
97
  * @type {boolean}
111
98
  * @memberof EncodingOptions
112
99
  */
113
100
  'EnableVppTonemapping'?: boolean;
114
101
  /**
115
- * Gets or sets the tone-mapping algorithm.
102
+ *
116
103
  * @type {string}
117
104
  * @memberof EncodingOptions
118
105
  */
119
106
  'TonemappingAlgorithm'?: string | null;
120
107
  /**
121
- * Gets or sets the tone-mapping range.
108
+ *
122
109
  * @type {string}
123
110
  * @memberof EncodingOptions
124
111
  */
125
112
  'TonemappingRange'?: string | null;
126
113
  /**
127
- * Gets or sets the tone-mapping desaturation.
114
+ *
128
115
  * @type {number}
129
116
  * @memberof EncodingOptions
130
117
  */
131
118
  'TonemappingDesat'?: number;
132
119
  /**
133
- * Gets or sets the tone-mapping threshold.
120
+ *
134
121
  * @type {number}
135
122
  * @memberof EncodingOptions
136
123
  */
137
124
  'TonemappingThreshold'?: number;
138
125
  /**
139
- * Gets or sets the tone-mapping peak.
126
+ *
140
127
  * @type {number}
141
128
  * @memberof EncodingOptions
142
129
  */
143
130
  'TonemappingPeak'?: number;
144
131
  /**
145
- * Gets or sets the tone-mapping parameters.
132
+ *
146
133
  * @type {number}
147
134
  * @memberof EncodingOptions
148
135
  */
149
136
  'TonemappingParam'?: number;
150
137
  /**
151
- * Gets or sets the VPP tone-mapping brightness.
138
+ *
152
139
  * @type {number}
153
140
  * @memberof EncodingOptions
154
141
  */
155
142
  'VppTonemappingBrightness'?: number;
156
143
  /**
157
- * Gets or sets the VPP tone-mapping contrast.
144
+ *
158
145
  * @type {number}
159
146
  * @memberof EncodingOptions
160
147
  */
161
148
  'VppTonemappingContrast'?: number;
162
149
  /**
163
- * Gets or sets the H264 CRF.
150
+ *
164
151
  * @type {number}
165
152
  * @memberof EncodingOptions
166
153
  */
167
154
  'H264Crf'?: number;
168
155
  /**
169
- * Gets or sets the H265 CRF.
156
+ *
170
157
  * @type {number}
171
158
  * @memberof EncodingOptions
172
159
  */
173
160
  'H265Crf'?: number;
174
161
  /**
175
- * Gets or sets the encoder preset.
162
+ *
176
163
  * @type {string}
177
164
  * @memberof EncodingOptions
178
165
  */
179
166
  'EncoderPreset'?: string | null;
180
167
  /**
181
- * Gets or sets a value indicating whether the framerate is doubled when deinterlacing.
168
+ *
182
169
  * @type {boolean}
183
170
  * @memberof EncodingOptions
184
171
  */
185
172
  'DeinterlaceDoubleRate'?: boolean;
186
173
  /**
187
- * Gets or sets the deinterlace method.
174
+ *
188
175
  * @type {string}
189
176
  * @memberof EncodingOptions
190
177
  */
191
178
  'DeinterlaceMethod'?: string | null;
192
179
  /**
193
- * Gets or sets a value indicating whether 10bit HEVC decoding is enabled.
180
+ *
194
181
  * @type {boolean}
195
182
  * @memberof EncodingOptions
196
183
  */
197
184
  'EnableDecodingColorDepth10Hevc'?: boolean;
198
185
  /**
199
- * Gets or sets a value indicating whether 10bit VP9 decoding is enabled.
186
+ *
200
187
  * @type {boolean}
201
188
  * @memberof EncodingOptions
202
189
  */
203
190
  'EnableDecodingColorDepth10Vp9'?: boolean;
204
191
  /**
205
- * Gets or sets a value indicating whether the enhanced NVDEC is enabled.
192
+ *
206
193
  * @type {boolean}
207
194
  * @memberof EncodingOptions
208
195
  */
209
196
  'EnableEnhancedNvdecDecoder'?: boolean;
210
197
  /**
211
- * Gets or sets a value indicating whether the system native hardware decoder should be used.
198
+ *
212
199
  * @type {boolean}
213
200
  * @memberof EncodingOptions
214
201
  */
215
202
  'PreferSystemNativeHwDecoder'?: boolean;
216
203
  /**
217
- * Gets or sets a value indicating whether the Intel H264 low-power hardware encoder should be used.
204
+ *
218
205
  * @type {boolean}
219
206
  * @memberof EncodingOptions
220
207
  */
221
208
  'EnableIntelLowPowerH264HwEncoder'?: boolean;
222
209
  /**
223
- * Gets or sets a value indicating whether the Intel HEVC low-power hardware encoder should be used.
210
+ *
224
211
  * @type {boolean}
225
212
  * @memberof EncodingOptions
226
213
  */
227
214
  'EnableIntelLowPowerHevcHwEncoder'?: boolean;
228
215
  /**
229
- * Gets or sets a value indicating whether hardware encoding is enabled.
216
+ *
230
217
  * @type {boolean}
231
218
  * @memberof EncodingOptions
232
219
  */
233
220
  'EnableHardwareEncoding'?: boolean;
234
221
  /**
235
- * Gets or sets a value indicating whether HEVC encoding is enabled.
222
+ *
236
223
  * @type {boolean}
237
224
  * @memberof EncodingOptions
238
225
  */
239
226
  'AllowHevcEncoding'?: boolean;
240
227
  /**
241
- * Gets or sets a value indicating whether subtitle extraction is enabled.
228
+ *
242
229
  * @type {boolean}
243
230
  * @memberof EncodingOptions
244
231
  */
245
232
  'EnableSubtitleExtraction'?: boolean;
246
233
  /**
247
- * Gets or sets the codecs hardware encoding is used for.
234
+ *
248
235
  * @type {Array<string>}
249
236
  * @memberof EncodingOptions
250
237
  */
251
238
  'HardwareDecodingCodecs'?: Array<string> | null;
252
239
  /**
253
- * Gets or sets the file extensions on-demand metadata based keyframe extraction is enabled for.
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 { PersonKind } from './person-kind.js';
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 conjunction with <seealso cref=\"P:Jellyfin.Networking.Configuration.NetworkConfiguration.IsRemoteIPFilterBlacklist\" />.
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
- * Enum ImageResolution.
14
+ *
15
15
  * @export
16
16
  * @enum {string}
17
17
  */
18
- const ImageResolution = {
19
- MatchSource: 'MatchSource',
20
- P144: 'P144',
21
- P240: 'P240',
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 { ImageResolution };
24
+ export { NotificationLevel };
@@ -25,5 +25,5 @@ export interface ParentalRating {
25
25
  * @type {number}
26
26
  * @memberof ParentalRating
27
27
  */
28
- 'Value'?: number | null;
28
+ 'Value'?: number;
29
29
  }
@@ -42,7 +42,6 @@ export interface PublicSystemInfo {
42
42
  * Gets or sets the operating system.
43
43
  * @type {string}
44
44
  * @memberof PublicSystemInfo
45
- * @deprecated
46
45
  */
47
46
  'OperatingSystem'?: string | null;
48
47
  /**
@@ -15,7 +15,7 @@
15
15
  */
16
16
  export interface RemoveFromPlaylistRequestDto {
17
17
  /**
18
- * Gets or sets the playlist identifiers of the items. Ignored when clearing the playlist.
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
- * Gets or sets the item id.
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 {BaseItemKind}
90
+ * Gets or sets the type.
91
+ * @type {string}
94
92
  * @memberof SearchHint
95
93
  */
96
- 'Type'?: BaseItemKind;
94
+ 'Type'?: string | null;
97
95
  /**
98
- * Gets or sets a value indicating whether this instance is folder.
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
- * Gets or sets the start date.
114
+ *
117
115
  * @type {string}
118
116
  * @memberof SearchHint
119
117
  */
120
118
  'StartDate'?: string | null;
121
119
  /**
122
- * Gets or sets the end date.
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
- * Gets or sets the status.
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
- * Gets or sets the album id.
144
+ *
147
145
  * @type {string}
148
146
  * @memberof SearchHint
149
147
  */
150
- 'AlbumId'?: string | null;
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 | null;
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
- * An enum representing an algorithm to downmix 6ch+ to stereo. Algorithms sourced from https://superuser.com/questions/852400/properly-downmix-5-1-to-stereo-using-ffmpeg/1410620#1410620.
14
+ *
15
15
  * @export
16
16
  * @enum {string}
17
17
  */
18
- const DownMixStereoAlgorithms = {
19
- None: 'None',
20
- Dave750: 'Dave750',
21
- NightmodeDialogue: 'NightmodeDialogue'
18
+ const SendToUserType = {
19
+ All: 'All',
20
+ Admins: 'Admins',
21
+ Custom: 'Custom'
22
22
  };
23
23
 
24
- export { DownMixStereoAlgorithms };
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
- * The status of a series.
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
- * The status of a series.
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 };