@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
|
@@ -84,13 +84,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
84
84
|
* @param {number} [fillWidth] Width of box to fill.
|
|
85
85
|
* @param {number} [fillHeight] Height of box to fill.
|
|
86
86
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
87
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
87
88
|
* @param {number} [blur] Optional. Blur image.
|
|
88
89
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
89
90
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
90
91
|
* @param {*} [options] Override http request option.
|
|
91
92
|
* @throws {RequiredError}
|
|
92
93
|
*/
|
|
93
|
-
getArtistImage: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
94
|
+
getArtistImage: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
94
95
|
/**
|
|
95
96
|
*
|
|
96
97
|
* @summary Get genre image by name.
|
|
@@ -108,6 +109,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
108
109
|
* @param {number} [fillWidth] Width of box to fill.
|
|
109
110
|
* @param {number} [fillHeight] Height of box to fill.
|
|
110
111
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
112
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
111
113
|
* @param {number} [blur] Optional. Blur image.
|
|
112
114
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
113
115
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -115,7 +117,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
115
117
|
* @param {*} [options] Override http request option.
|
|
116
118
|
* @throws {RequiredError}
|
|
117
119
|
*/
|
|
118
|
-
getGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
120
|
+
getGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
119
121
|
/**
|
|
120
122
|
*
|
|
121
123
|
* @summary Get genre image by name.
|
|
@@ -134,13 +136,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
134
136
|
* @param {number} [fillWidth] Width of box to fill.
|
|
135
137
|
* @param {number} [fillHeight] Height of box to fill.
|
|
136
138
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
139
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
137
140
|
* @param {number} [blur] Optional. Blur image.
|
|
138
141
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
139
142
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
140
143
|
* @param {*} [options] Override http request option.
|
|
141
144
|
* @throws {RequiredError}
|
|
142
145
|
*/
|
|
143
|
-
getGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
146
|
+
getGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
144
147
|
/**
|
|
145
148
|
*
|
|
146
149
|
* @summary Gets the item\'s image.
|
|
@@ -156,6 +159,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
156
159
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
157
160
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
158
161
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
162
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
159
163
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
160
164
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
161
165
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -165,7 +169,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
165
169
|
* @param {*} [options] Override http request option.
|
|
166
170
|
* @throws {RequiredError}
|
|
167
171
|
*/
|
|
168
|
-
getItemImage: (itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
172
|
+
getItemImage: (itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
169
173
|
/**
|
|
170
174
|
*
|
|
171
175
|
* @summary Gets the item\'s image.
|
|
@@ -184,13 +188,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
184
188
|
* @param {number} [fillWidth] Width of box to fill.
|
|
185
189
|
* @param {number} [fillHeight] Height of box to fill.
|
|
186
190
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
191
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
187
192
|
* @param {number} [blur] Optional. Blur image.
|
|
188
193
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
189
194
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
190
195
|
* @param {*} [options] Override http request option.
|
|
191
196
|
* @throws {RequiredError}
|
|
192
197
|
*/
|
|
193
|
-
getItemImage2: (itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
198
|
+
getItemImage2: (itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
194
199
|
/**
|
|
195
200
|
*
|
|
196
201
|
* @summary Gets the item\'s image.
|
|
@@ -207,6 +212,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
207
212
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
208
213
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
209
214
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
215
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
210
216
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
211
217
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
212
218
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -215,7 +221,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
215
221
|
* @param {*} [options] Override http request option.
|
|
216
222
|
* @throws {RequiredError}
|
|
217
223
|
*/
|
|
218
|
-
getItemImageByIndex: (itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
224
|
+
getItemImageByIndex: (itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
219
225
|
/**
|
|
220
226
|
*
|
|
221
227
|
* @summary Get item image infos.
|
|
@@ -241,6 +247,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
241
247
|
* @param {number} [fillWidth] Width of box to fill.
|
|
242
248
|
* @param {number} [fillHeight] Height of box to fill.
|
|
243
249
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
250
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
244
251
|
* @param {number} [blur] Optional. Blur image.
|
|
245
252
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
246
253
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -248,7 +255,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
248
255
|
* @param {*} [options] Override http request option.
|
|
249
256
|
* @throws {RequiredError}
|
|
250
257
|
*/
|
|
251
|
-
getMusicGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
258
|
+
getMusicGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
252
259
|
/**
|
|
253
260
|
*
|
|
254
261
|
* @summary Get music genre image by name.
|
|
@@ -267,13 +274,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
267
274
|
* @param {number} [fillWidth] Width of box to fill.
|
|
268
275
|
* @param {number} [fillHeight] Height of box to fill.
|
|
269
276
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
277
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
270
278
|
* @param {number} [blur] Optional. Blur image.
|
|
271
279
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
272
280
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
273
281
|
* @param {*} [options] Override http request option.
|
|
274
282
|
* @throws {RequiredError}
|
|
275
283
|
*/
|
|
276
|
-
getMusicGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
284
|
+
getMusicGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
277
285
|
/**
|
|
278
286
|
*
|
|
279
287
|
* @summary Get person image by name.
|
|
@@ -291,6 +299,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
291
299
|
* @param {number} [fillWidth] Width of box to fill.
|
|
292
300
|
* @param {number} [fillHeight] Height of box to fill.
|
|
293
301
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
302
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
294
303
|
* @param {number} [blur] Optional. Blur image.
|
|
295
304
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
296
305
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -298,7 +307,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
298
307
|
* @param {*} [options] Override http request option.
|
|
299
308
|
* @throws {RequiredError}
|
|
300
309
|
*/
|
|
301
|
-
getPersonImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
310
|
+
getPersonImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
302
311
|
/**
|
|
303
312
|
*
|
|
304
313
|
* @summary Get person image by name.
|
|
@@ -317,13 +326,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
317
326
|
* @param {number} [fillWidth] Width of box to fill.
|
|
318
327
|
* @param {number} [fillHeight] Height of box to fill.
|
|
319
328
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
329
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
320
330
|
* @param {number} [blur] Optional. Blur image.
|
|
321
331
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
322
332
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
323
333
|
* @param {*} [options] Override http request option.
|
|
324
334
|
* @throws {RequiredError}
|
|
325
335
|
*/
|
|
326
|
-
getPersonImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
336
|
+
getPersonImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
327
337
|
/**
|
|
328
338
|
*
|
|
329
339
|
* @summary Generates or gets the splashscreen.
|
|
@@ -360,6 +370,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
360
370
|
* @param {number} [fillWidth] Width of box to fill.
|
|
361
371
|
* @param {number} [fillHeight] Height of box to fill.
|
|
362
372
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
373
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
363
374
|
* @param {number} [blur] Optional. Blur image.
|
|
364
375
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
365
376
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -367,7 +378,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
367
378
|
* @param {*} [options] Override http request option.
|
|
368
379
|
* @throws {RequiredError}
|
|
369
380
|
*/
|
|
370
|
-
getStudioImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
381
|
+
getStudioImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
371
382
|
/**
|
|
372
383
|
*
|
|
373
384
|
* @summary Get studio image by name.
|
|
@@ -386,13 +397,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
386
397
|
* @param {number} [fillWidth] Width of box to fill.
|
|
387
398
|
* @param {number} [fillHeight] Height of box to fill.
|
|
388
399
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
400
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
389
401
|
* @param {number} [blur] Optional. Blur image.
|
|
390
402
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
391
403
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
392
404
|
* @param {*} [options] Override http request option.
|
|
393
405
|
* @throws {RequiredError}
|
|
394
406
|
*/
|
|
395
|
-
getStudioImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
407
|
+
getStudioImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
396
408
|
/**
|
|
397
409
|
*
|
|
398
410
|
* @summary Get user profile image.
|
|
@@ -410,6 +422,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
410
422
|
* @param {number} [fillWidth] Width of box to fill.
|
|
411
423
|
* @param {number} [fillHeight] Height of box to fill.
|
|
412
424
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
425
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
413
426
|
* @param {number} [blur] Optional. Blur image.
|
|
414
427
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
415
428
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -417,7 +430,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
417
430
|
* @param {*} [options] Override http request option.
|
|
418
431
|
* @throws {RequiredError}
|
|
419
432
|
*/
|
|
420
|
-
getUserImage: (userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
433
|
+
getUserImage: (userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
421
434
|
/**
|
|
422
435
|
*
|
|
423
436
|
* @summary Get user profile image.
|
|
@@ -436,13 +449,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
436
449
|
* @param {number} [fillWidth] Width of box to fill.
|
|
437
450
|
* @param {number} [fillHeight] Height of box to fill.
|
|
438
451
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
452
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
439
453
|
* @param {number} [blur] Optional. Blur image.
|
|
440
454
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
441
455
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
442
456
|
* @param {*} [options] Override http request option.
|
|
443
457
|
* @throws {RequiredError}
|
|
444
458
|
*/
|
|
445
|
-
getUserImageByIndex: (userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
459
|
+
getUserImageByIndex: (userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
446
460
|
/**
|
|
447
461
|
*
|
|
448
462
|
* @summary Get artist image by name.
|
|
@@ -461,13 +475,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
461
475
|
* @param {number} [fillWidth] Width of box to fill.
|
|
462
476
|
* @param {number} [fillHeight] Height of box to fill.
|
|
463
477
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
478
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
464
479
|
* @param {number} [blur] Optional. Blur image.
|
|
465
480
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
466
481
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
467
482
|
* @param {*} [options] Override http request option.
|
|
468
483
|
* @throws {RequiredError}
|
|
469
484
|
*/
|
|
470
|
-
headArtistImage: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
485
|
+
headArtistImage: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
471
486
|
/**
|
|
472
487
|
*
|
|
473
488
|
* @summary Get genre image by name.
|
|
@@ -485,6 +500,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
485
500
|
* @param {number} [fillWidth] Width of box to fill.
|
|
486
501
|
* @param {number} [fillHeight] Height of box to fill.
|
|
487
502
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
503
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
488
504
|
* @param {number} [blur] Optional. Blur image.
|
|
489
505
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
490
506
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -492,7 +508,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
492
508
|
* @param {*} [options] Override http request option.
|
|
493
509
|
* @throws {RequiredError}
|
|
494
510
|
*/
|
|
495
|
-
headGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
511
|
+
headGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
496
512
|
/**
|
|
497
513
|
*
|
|
498
514
|
* @summary Get genre image by name.
|
|
@@ -511,13 +527,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
511
527
|
* @param {number} [fillWidth] Width of box to fill.
|
|
512
528
|
* @param {number} [fillHeight] Height of box to fill.
|
|
513
529
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
530
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
514
531
|
* @param {number} [blur] Optional. Blur image.
|
|
515
532
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
516
533
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
517
534
|
* @param {*} [options] Override http request option.
|
|
518
535
|
* @throws {RequiredError}
|
|
519
536
|
*/
|
|
520
|
-
headGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
537
|
+
headGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
521
538
|
/**
|
|
522
539
|
*
|
|
523
540
|
* @summary Gets the item\'s image.
|
|
@@ -533,6 +550,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
533
550
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
534
551
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
535
552
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
553
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
536
554
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
537
555
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
538
556
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -542,7 +560,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
542
560
|
* @param {*} [options] Override http request option.
|
|
543
561
|
* @throws {RequiredError}
|
|
544
562
|
*/
|
|
545
|
-
headItemImage: (itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
563
|
+
headItemImage: (itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
546
564
|
/**
|
|
547
565
|
*
|
|
548
566
|
* @summary Gets the item\'s image.
|
|
@@ -561,13 +579,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
561
579
|
* @param {number} [fillWidth] Width of box to fill.
|
|
562
580
|
* @param {number} [fillHeight] Height of box to fill.
|
|
563
581
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
582
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
564
583
|
* @param {number} [blur] Optional. Blur image.
|
|
565
584
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
566
585
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
567
586
|
* @param {*} [options] Override http request option.
|
|
568
587
|
* @throws {RequiredError}
|
|
569
588
|
*/
|
|
570
|
-
headItemImage2: (itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
589
|
+
headItemImage2: (itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
571
590
|
/**
|
|
572
591
|
*
|
|
573
592
|
* @summary Gets the item\'s image.
|
|
@@ -584,6 +603,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
584
603
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
585
604
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
586
605
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
606
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
587
607
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
588
608
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
589
609
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -592,7 +612,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
592
612
|
* @param {*} [options] Override http request option.
|
|
593
613
|
* @throws {RequiredError}
|
|
594
614
|
*/
|
|
595
|
-
headItemImageByIndex: (itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
615
|
+
headItemImageByIndex: (itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
596
616
|
/**
|
|
597
617
|
*
|
|
598
618
|
* @summary Get music genre image by name.
|
|
@@ -610,6 +630,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
610
630
|
* @param {number} [fillWidth] Width of box to fill.
|
|
611
631
|
* @param {number} [fillHeight] Height of box to fill.
|
|
612
632
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
633
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
613
634
|
* @param {number} [blur] Optional. Blur image.
|
|
614
635
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
615
636
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -617,7 +638,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
617
638
|
* @param {*} [options] Override http request option.
|
|
618
639
|
* @throws {RequiredError}
|
|
619
640
|
*/
|
|
620
|
-
headMusicGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
641
|
+
headMusicGenreImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
621
642
|
/**
|
|
622
643
|
*
|
|
623
644
|
* @summary Get music genre image by name.
|
|
@@ -636,13 +657,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
636
657
|
* @param {number} [fillWidth] Width of box to fill.
|
|
637
658
|
* @param {number} [fillHeight] Height of box to fill.
|
|
638
659
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
660
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
639
661
|
* @param {number} [blur] Optional. Blur image.
|
|
640
662
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
641
663
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
642
664
|
* @param {*} [options] Override http request option.
|
|
643
665
|
* @throws {RequiredError}
|
|
644
666
|
*/
|
|
645
|
-
headMusicGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
667
|
+
headMusicGenreImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
646
668
|
/**
|
|
647
669
|
*
|
|
648
670
|
* @summary Get person image by name.
|
|
@@ -660,6 +682,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
660
682
|
* @param {number} [fillWidth] Width of box to fill.
|
|
661
683
|
* @param {number} [fillHeight] Height of box to fill.
|
|
662
684
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
685
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
663
686
|
* @param {number} [blur] Optional. Blur image.
|
|
664
687
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
665
688
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -667,7 +690,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
667
690
|
* @param {*} [options] Override http request option.
|
|
668
691
|
* @throws {RequiredError}
|
|
669
692
|
*/
|
|
670
|
-
headPersonImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
693
|
+
headPersonImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
671
694
|
/**
|
|
672
695
|
*
|
|
673
696
|
* @summary Get person image by name.
|
|
@@ -686,13 +709,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
686
709
|
* @param {number} [fillWidth] Width of box to fill.
|
|
687
710
|
* @param {number} [fillHeight] Height of box to fill.
|
|
688
711
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
712
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
689
713
|
* @param {number} [blur] Optional. Blur image.
|
|
690
714
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
691
715
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
692
716
|
* @param {*} [options] Override http request option.
|
|
693
717
|
* @throws {RequiredError}
|
|
694
718
|
*/
|
|
695
|
-
headPersonImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
719
|
+
headPersonImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
696
720
|
/**
|
|
697
721
|
*
|
|
698
722
|
* @summary Get studio image by name.
|
|
@@ -710,6 +734,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
710
734
|
* @param {number} [fillWidth] Width of box to fill.
|
|
711
735
|
* @param {number} [fillHeight] Height of box to fill.
|
|
712
736
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
737
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
713
738
|
* @param {number} [blur] Optional. Blur image.
|
|
714
739
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
715
740
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -717,7 +742,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
717
742
|
* @param {*} [options] Override http request option.
|
|
718
743
|
* @throws {RequiredError}
|
|
719
744
|
*/
|
|
720
|
-
headStudioImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
745
|
+
headStudioImage: (name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
721
746
|
/**
|
|
722
747
|
*
|
|
723
748
|
* @summary Get studio image by name.
|
|
@@ -736,13 +761,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
736
761
|
* @param {number} [fillWidth] Width of box to fill.
|
|
737
762
|
* @param {number} [fillHeight] Height of box to fill.
|
|
738
763
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
764
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
739
765
|
* @param {number} [blur] Optional. Blur image.
|
|
740
766
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
741
767
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
742
768
|
* @param {*} [options] Override http request option.
|
|
743
769
|
* @throws {RequiredError}
|
|
744
770
|
*/
|
|
745
|
-
headStudioImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
771
|
+
headStudioImageByIndex: (name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
746
772
|
/**
|
|
747
773
|
*
|
|
748
774
|
* @summary Get user profile image.
|
|
@@ -760,6 +786,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
760
786
|
* @param {number} [fillWidth] Width of box to fill.
|
|
761
787
|
* @param {number} [fillHeight] Height of box to fill.
|
|
762
788
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
789
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
763
790
|
* @param {number} [blur] Optional. Blur image.
|
|
764
791
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
765
792
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -767,7 +794,7 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
767
794
|
* @param {*} [options] Override http request option.
|
|
768
795
|
* @throws {RequiredError}
|
|
769
796
|
*/
|
|
770
|
-
headUserImage: (userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
797
|
+
headUserImage: (userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
771
798
|
/**
|
|
772
799
|
*
|
|
773
800
|
* @summary Get user profile image.
|
|
@@ -786,13 +813,14 @@ export declare const ImageApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
786
813
|
* @param {number} [fillWidth] Width of box to fill.
|
|
787
814
|
* @param {number} [fillHeight] Height of box to fill.
|
|
788
815
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
816
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
789
817
|
* @param {number} [blur] Optional. Blur image.
|
|
790
818
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
791
819
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
792
820
|
* @param {*} [options] Override http request option.
|
|
793
821
|
* @throws {RequiredError}
|
|
794
822
|
*/
|
|
795
|
-
headUserImageByIndex: (userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
823
|
+
headUserImageByIndex: (userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
796
824
|
/**
|
|
797
825
|
*
|
|
798
826
|
* @summary Sets the user image.
|
|
@@ -926,13 +954,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
926
954
|
* @param {number} [fillWidth] Width of box to fill.
|
|
927
955
|
* @param {number} [fillHeight] Height of box to fill.
|
|
928
956
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
957
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
929
958
|
* @param {number} [blur] Optional. Blur image.
|
|
930
959
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
931
960
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
932
961
|
* @param {*} [options] Override http request option.
|
|
933
962
|
* @throws {RequiredError}
|
|
934
963
|
*/
|
|
935
|
-
getArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
964
|
+
getArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
936
965
|
/**
|
|
937
966
|
*
|
|
938
967
|
* @summary Get genre image by name.
|
|
@@ -950,6 +979,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
950
979
|
* @param {number} [fillWidth] Width of box to fill.
|
|
951
980
|
* @param {number} [fillHeight] Height of box to fill.
|
|
952
981
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
982
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
953
983
|
* @param {number} [blur] Optional. Blur image.
|
|
954
984
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
955
985
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -957,7 +987,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
957
987
|
* @param {*} [options] Override http request option.
|
|
958
988
|
* @throws {RequiredError}
|
|
959
989
|
*/
|
|
960
|
-
getGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
990
|
+
getGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
961
991
|
/**
|
|
962
992
|
*
|
|
963
993
|
* @summary Get genre image by name.
|
|
@@ -976,13 +1006,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
976
1006
|
* @param {number} [fillWidth] Width of box to fill.
|
|
977
1007
|
* @param {number} [fillHeight] Height of box to fill.
|
|
978
1008
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1009
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
979
1010
|
* @param {number} [blur] Optional. Blur image.
|
|
980
1011
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
981
1012
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
982
1013
|
* @param {*} [options] Override http request option.
|
|
983
1014
|
* @throws {RequiredError}
|
|
984
1015
|
*/
|
|
985
|
-
getGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1016
|
+
getGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
986
1017
|
/**
|
|
987
1018
|
*
|
|
988
1019
|
* @summary Gets the item\'s image.
|
|
@@ -998,6 +1029,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
998
1029
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
999
1030
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1000
1031
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
1032
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1001
1033
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
1002
1034
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
1003
1035
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -1007,7 +1039,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1007
1039
|
* @param {*} [options] Override http request option.
|
|
1008
1040
|
* @throws {RequiredError}
|
|
1009
1041
|
*/
|
|
1010
|
-
getItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1042
|
+
getItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1011
1043
|
/**
|
|
1012
1044
|
*
|
|
1013
1045
|
* @summary Gets the item\'s image.
|
|
@@ -1026,13 +1058,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1026
1058
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1027
1059
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1028
1060
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1061
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1029
1062
|
* @param {number} [blur] Optional. Blur image.
|
|
1030
1063
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1031
1064
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1032
1065
|
* @param {*} [options] Override http request option.
|
|
1033
1066
|
* @throws {RequiredError}
|
|
1034
1067
|
*/
|
|
1035
|
-
getItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1068
|
+
getItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1036
1069
|
/**
|
|
1037
1070
|
*
|
|
1038
1071
|
* @summary Gets the item\'s image.
|
|
@@ -1049,6 +1082,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1049
1082
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
1050
1083
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1051
1084
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
1085
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1052
1086
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
1053
1087
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
1054
1088
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -1057,7 +1091,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1057
1091
|
* @param {*} [options] Override http request option.
|
|
1058
1092
|
* @throws {RequiredError}
|
|
1059
1093
|
*/
|
|
1060
|
-
getItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1094
|
+
getItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1061
1095
|
/**
|
|
1062
1096
|
*
|
|
1063
1097
|
* @summary Get item image infos.
|
|
@@ -1083,6 +1117,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1083
1117
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1084
1118
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1085
1119
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1120
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1086
1121
|
* @param {number} [blur] Optional. Blur image.
|
|
1087
1122
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1088
1123
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1090,7 +1125,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1090
1125
|
* @param {*} [options] Override http request option.
|
|
1091
1126
|
* @throws {RequiredError}
|
|
1092
1127
|
*/
|
|
1093
|
-
getMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1128
|
+
getMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1094
1129
|
/**
|
|
1095
1130
|
*
|
|
1096
1131
|
* @summary Get music genre image by name.
|
|
@@ -1109,13 +1144,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1109
1144
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1110
1145
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1111
1146
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1147
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1112
1148
|
* @param {number} [blur] Optional. Blur image.
|
|
1113
1149
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1114
1150
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1115
1151
|
* @param {*} [options] Override http request option.
|
|
1116
1152
|
* @throws {RequiredError}
|
|
1117
1153
|
*/
|
|
1118
|
-
getMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1154
|
+
getMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1119
1155
|
/**
|
|
1120
1156
|
*
|
|
1121
1157
|
* @summary Get person image by name.
|
|
@@ -1133,6 +1169,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1133
1169
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1134
1170
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1135
1171
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1172
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1136
1173
|
* @param {number} [blur] Optional. Blur image.
|
|
1137
1174
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1138
1175
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1140,7 +1177,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1140
1177
|
* @param {*} [options] Override http request option.
|
|
1141
1178
|
* @throws {RequiredError}
|
|
1142
1179
|
*/
|
|
1143
|
-
getPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1180
|
+
getPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1144
1181
|
/**
|
|
1145
1182
|
*
|
|
1146
1183
|
* @summary Get person image by name.
|
|
@@ -1159,13 +1196,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1159
1196
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1160
1197
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1161
1198
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1199
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1162
1200
|
* @param {number} [blur] Optional. Blur image.
|
|
1163
1201
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1164
1202
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1165
1203
|
* @param {*} [options] Override http request option.
|
|
1166
1204
|
* @throws {RequiredError}
|
|
1167
1205
|
*/
|
|
1168
|
-
getPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1206
|
+
getPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1169
1207
|
/**
|
|
1170
1208
|
*
|
|
1171
1209
|
* @summary Generates or gets the splashscreen.
|
|
@@ -1202,6 +1240,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1202
1240
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1203
1241
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1204
1242
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1243
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1205
1244
|
* @param {number} [blur] Optional. Blur image.
|
|
1206
1245
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1207
1246
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1209,7 +1248,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1209
1248
|
* @param {*} [options] Override http request option.
|
|
1210
1249
|
* @throws {RequiredError}
|
|
1211
1250
|
*/
|
|
1212
|
-
getStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1251
|
+
getStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1213
1252
|
/**
|
|
1214
1253
|
*
|
|
1215
1254
|
* @summary Get studio image by name.
|
|
@@ -1228,13 +1267,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1228
1267
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1229
1268
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1230
1269
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1270
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1231
1271
|
* @param {number} [blur] Optional. Blur image.
|
|
1232
1272
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1233
1273
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1234
1274
|
* @param {*} [options] Override http request option.
|
|
1235
1275
|
* @throws {RequiredError}
|
|
1236
1276
|
*/
|
|
1237
|
-
getStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1277
|
+
getStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1238
1278
|
/**
|
|
1239
1279
|
*
|
|
1240
1280
|
* @summary Get user profile image.
|
|
@@ -1252,6 +1292,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1252
1292
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1253
1293
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1254
1294
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1295
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1255
1296
|
* @param {number} [blur] Optional. Blur image.
|
|
1256
1297
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1257
1298
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1259,7 +1300,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1259
1300
|
* @param {*} [options] Override http request option.
|
|
1260
1301
|
* @throws {RequiredError}
|
|
1261
1302
|
*/
|
|
1262
|
-
getUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1303
|
+
getUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1263
1304
|
/**
|
|
1264
1305
|
*
|
|
1265
1306
|
* @summary Get user profile image.
|
|
@@ -1278,13 +1319,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1278
1319
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1279
1320
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1280
1321
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1322
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1281
1323
|
* @param {number} [blur] Optional. Blur image.
|
|
1282
1324
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1283
1325
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1284
1326
|
* @param {*} [options] Override http request option.
|
|
1285
1327
|
* @throws {RequiredError}
|
|
1286
1328
|
*/
|
|
1287
|
-
getUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1329
|
+
getUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1288
1330
|
/**
|
|
1289
1331
|
*
|
|
1290
1332
|
* @summary Get artist image by name.
|
|
@@ -1303,13 +1345,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1303
1345
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1304
1346
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1305
1347
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1348
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1306
1349
|
* @param {number} [blur] Optional. Blur image.
|
|
1307
1350
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1308
1351
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1309
1352
|
* @param {*} [options] Override http request option.
|
|
1310
1353
|
* @throws {RequiredError}
|
|
1311
1354
|
*/
|
|
1312
|
-
headArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1355
|
+
headArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1313
1356
|
/**
|
|
1314
1357
|
*
|
|
1315
1358
|
* @summary Get genre image by name.
|
|
@@ -1327,6 +1370,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1327
1370
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1328
1371
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1329
1372
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1373
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1330
1374
|
* @param {number} [blur] Optional. Blur image.
|
|
1331
1375
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1332
1376
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1334,7 +1378,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1334
1378
|
* @param {*} [options] Override http request option.
|
|
1335
1379
|
* @throws {RequiredError}
|
|
1336
1380
|
*/
|
|
1337
|
-
headGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1381
|
+
headGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1338
1382
|
/**
|
|
1339
1383
|
*
|
|
1340
1384
|
* @summary Get genre image by name.
|
|
@@ -1353,13 +1397,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1353
1397
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1354
1398
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1355
1399
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1400
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1356
1401
|
* @param {number} [blur] Optional. Blur image.
|
|
1357
1402
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1358
1403
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1359
1404
|
* @param {*} [options] Override http request option.
|
|
1360
1405
|
* @throws {RequiredError}
|
|
1361
1406
|
*/
|
|
1362
|
-
headGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1407
|
+
headGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1363
1408
|
/**
|
|
1364
1409
|
*
|
|
1365
1410
|
* @summary Gets the item\'s image.
|
|
@@ -1375,6 +1420,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1375
1420
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
1376
1421
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1377
1422
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
1423
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1378
1424
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
1379
1425
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
1380
1426
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -1384,7 +1430,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1384
1430
|
* @param {*} [options] Override http request option.
|
|
1385
1431
|
* @throws {RequiredError}
|
|
1386
1432
|
*/
|
|
1387
|
-
headItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1433
|
+
headItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1388
1434
|
/**
|
|
1389
1435
|
*
|
|
1390
1436
|
* @summary Gets the item\'s image.
|
|
@@ -1403,13 +1449,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1403
1449
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1404
1450
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1405
1451
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1452
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1406
1453
|
* @param {number} [blur] Optional. Blur image.
|
|
1407
1454
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1408
1455
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1409
1456
|
* @param {*} [options] Override http request option.
|
|
1410
1457
|
* @throws {RequiredError}
|
|
1411
1458
|
*/
|
|
1412
|
-
headItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1459
|
+
headItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1413
1460
|
/**
|
|
1414
1461
|
*
|
|
1415
1462
|
* @summary Gets the item\'s image.
|
|
@@ -1426,6 +1473,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1426
1473
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
1427
1474
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1428
1475
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
1476
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1429
1477
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
1430
1478
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
1431
1479
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -1434,7 +1482,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1434
1482
|
* @param {*} [options] Override http request option.
|
|
1435
1483
|
* @throws {RequiredError}
|
|
1436
1484
|
*/
|
|
1437
|
-
headItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1485
|
+
headItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1438
1486
|
/**
|
|
1439
1487
|
*
|
|
1440
1488
|
* @summary Get music genre image by name.
|
|
@@ -1452,6 +1500,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1452
1500
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1453
1501
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1454
1502
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1503
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1455
1504
|
* @param {number} [blur] Optional. Blur image.
|
|
1456
1505
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1457
1506
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1459,7 +1508,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1459
1508
|
* @param {*} [options] Override http request option.
|
|
1460
1509
|
* @throws {RequiredError}
|
|
1461
1510
|
*/
|
|
1462
|
-
headMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1511
|
+
headMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1463
1512
|
/**
|
|
1464
1513
|
*
|
|
1465
1514
|
* @summary Get music genre image by name.
|
|
@@ -1478,13 +1527,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1478
1527
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1479
1528
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1480
1529
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1530
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1481
1531
|
* @param {number} [blur] Optional. Blur image.
|
|
1482
1532
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1483
1533
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1484
1534
|
* @param {*} [options] Override http request option.
|
|
1485
1535
|
* @throws {RequiredError}
|
|
1486
1536
|
*/
|
|
1487
|
-
headMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1537
|
+
headMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1488
1538
|
/**
|
|
1489
1539
|
*
|
|
1490
1540
|
* @summary Get person image by name.
|
|
@@ -1502,6 +1552,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1502
1552
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1503
1553
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1504
1554
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1555
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1505
1556
|
* @param {number} [blur] Optional. Blur image.
|
|
1506
1557
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1507
1558
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1509,7 +1560,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1509
1560
|
* @param {*} [options] Override http request option.
|
|
1510
1561
|
* @throws {RequiredError}
|
|
1511
1562
|
*/
|
|
1512
|
-
headPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1563
|
+
headPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1513
1564
|
/**
|
|
1514
1565
|
*
|
|
1515
1566
|
* @summary Get person image by name.
|
|
@@ -1528,13 +1579,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1528
1579
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1529
1580
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1530
1581
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1582
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1531
1583
|
* @param {number} [blur] Optional. Blur image.
|
|
1532
1584
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1533
1585
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1534
1586
|
* @param {*} [options] Override http request option.
|
|
1535
1587
|
* @throws {RequiredError}
|
|
1536
1588
|
*/
|
|
1537
|
-
headPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1589
|
+
headPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1538
1590
|
/**
|
|
1539
1591
|
*
|
|
1540
1592
|
* @summary Get studio image by name.
|
|
@@ -1552,6 +1604,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1552
1604
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1553
1605
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1554
1606
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1607
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1555
1608
|
* @param {number} [blur] Optional. Blur image.
|
|
1556
1609
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1557
1610
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1559,7 +1612,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1559
1612
|
* @param {*} [options] Override http request option.
|
|
1560
1613
|
* @throws {RequiredError}
|
|
1561
1614
|
*/
|
|
1562
|
-
headStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1615
|
+
headStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1563
1616
|
/**
|
|
1564
1617
|
*
|
|
1565
1618
|
* @summary Get studio image by name.
|
|
@@ -1578,13 +1631,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1578
1631
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1579
1632
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1580
1633
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1634
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1581
1635
|
* @param {number} [blur] Optional. Blur image.
|
|
1582
1636
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1583
1637
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1584
1638
|
* @param {*} [options] Override http request option.
|
|
1585
1639
|
* @throws {RequiredError}
|
|
1586
1640
|
*/
|
|
1587
|
-
headStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1641
|
+
headStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1588
1642
|
/**
|
|
1589
1643
|
*
|
|
1590
1644
|
* @summary Get user profile image.
|
|
@@ -1602,6 +1656,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1602
1656
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1603
1657
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1604
1658
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1659
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1605
1660
|
* @param {number} [blur] Optional. Blur image.
|
|
1606
1661
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1607
1662
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1609,7 +1664,7 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1609
1664
|
* @param {*} [options] Override http request option.
|
|
1610
1665
|
* @throws {RequiredError}
|
|
1611
1666
|
*/
|
|
1612
|
-
headUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1667
|
+
headUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1613
1668
|
/**
|
|
1614
1669
|
*
|
|
1615
1670
|
* @summary Get user profile image.
|
|
@@ -1628,13 +1683,14 @@ export declare const ImageApiFp: (configuration?: Configuration) => {
|
|
|
1628
1683
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1629
1684
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1630
1685
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1686
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1631
1687
|
* @param {number} [blur] Optional. Blur image.
|
|
1632
1688
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1633
1689
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1634
1690
|
* @param {*} [options] Override http request option.
|
|
1635
1691
|
* @throws {RequiredError}
|
|
1636
1692
|
*/
|
|
1637
|
-
headUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1693
|
+
headUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
1638
1694
|
/**
|
|
1639
1695
|
*
|
|
1640
1696
|
* @summary Sets the user image.
|
|
@@ -1768,13 +1824,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1768
1824
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1769
1825
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1770
1826
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1827
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1771
1828
|
* @param {number} [blur] Optional. Blur image.
|
|
1772
1829
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1773
1830
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1774
1831
|
* @param {*} [options] Override http request option.
|
|
1775
1832
|
* @throws {RequiredError}
|
|
1776
1833
|
*/
|
|
1777
|
-
getArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1834
|
+
getArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1778
1835
|
/**
|
|
1779
1836
|
*
|
|
1780
1837
|
* @summary Get genre image by name.
|
|
@@ -1792,6 +1849,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1792
1849
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1793
1850
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1794
1851
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1852
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1795
1853
|
* @param {number} [blur] Optional. Blur image.
|
|
1796
1854
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1797
1855
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1799,7 +1857,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1799
1857
|
* @param {*} [options] Override http request option.
|
|
1800
1858
|
* @throws {RequiredError}
|
|
1801
1859
|
*/
|
|
1802
|
-
getGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1860
|
+
getGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1803
1861
|
/**
|
|
1804
1862
|
*
|
|
1805
1863
|
* @summary Get genre image by name.
|
|
@@ -1818,13 +1876,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1818
1876
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1819
1877
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1820
1878
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1879
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1821
1880
|
* @param {number} [blur] Optional. Blur image.
|
|
1822
1881
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1823
1882
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1824
1883
|
* @param {*} [options] Override http request option.
|
|
1825
1884
|
* @throws {RequiredError}
|
|
1826
1885
|
*/
|
|
1827
|
-
getGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1886
|
+
getGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1828
1887
|
/**
|
|
1829
1888
|
*
|
|
1830
1889
|
* @summary Gets the item\'s image.
|
|
@@ -1840,6 +1899,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1840
1899
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
1841
1900
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1842
1901
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
1902
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1843
1903
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
1844
1904
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
1845
1905
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -1849,7 +1909,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1849
1909
|
* @param {*} [options] Override http request option.
|
|
1850
1910
|
* @throws {RequiredError}
|
|
1851
1911
|
*/
|
|
1852
|
-
getItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1912
|
+
getItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1853
1913
|
/**
|
|
1854
1914
|
*
|
|
1855
1915
|
* @summary Gets the item\'s image.
|
|
@@ -1868,13 +1928,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1868
1928
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1869
1929
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1870
1930
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1931
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1871
1932
|
* @param {number} [blur] Optional. Blur image.
|
|
1872
1933
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1873
1934
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1874
1935
|
* @param {*} [options] Override http request option.
|
|
1875
1936
|
* @throws {RequiredError}
|
|
1876
1937
|
*/
|
|
1877
|
-
getItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1938
|
+
getItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1878
1939
|
/**
|
|
1879
1940
|
*
|
|
1880
1941
|
* @summary Gets the item\'s image.
|
|
@@ -1891,6 +1952,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1891
1952
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
1892
1953
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1893
1954
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
1955
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1894
1956
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
1895
1957
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
1896
1958
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -1899,7 +1961,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1899
1961
|
* @param {*} [options] Override http request option.
|
|
1900
1962
|
* @throws {RequiredError}
|
|
1901
1963
|
*/
|
|
1902
|
-
getItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1964
|
+
getItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1903
1965
|
/**
|
|
1904
1966
|
*
|
|
1905
1967
|
* @summary Get item image infos.
|
|
@@ -1925,6 +1987,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1925
1987
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1926
1988
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1927
1989
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
1990
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1928
1991
|
* @param {number} [blur] Optional. Blur image.
|
|
1929
1992
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1930
1993
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1932,7 +1995,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1932
1995
|
* @param {*} [options] Override http request option.
|
|
1933
1996
|
* @throws {RequiredError}
|
|
1934
1997
|
*/
|
|
1935
|
-
getMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1998
|
+
getMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1936
1999
|
/**
|
|
1937
2000
|
*
|
|
1938
2001
|
* @summary Get music genre image by name.
|
|
@@ -1951,13 +2014,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1951
2014
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1952
2015
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1953
2016
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2017
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1954
2018
|
* @param {number} [blur] Optional. Blur image.
|
|
1955
2019
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1956
2020
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
1957
2021
|
* @param {*} [options] Override http request option.
|
|
1958
2022
|
* @throws {RequiredError}
|
|
1959
2023
|
*/
|
|
1960
|
-
getMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2024
|
+
getMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
1961
2025
|
/**
|
|
1962
2026
|
*
|
|
1963
2027
|
* @summary Get person image by name.
|
|
@@ -1975,6 +2039,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1975
2039
|
* @param {number} [fillWidth] Width of box to fill.
|
|
1976
2040
|
* @param {number} [fillHeight] Height of box to fill.
|
|
1977
2041
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2042
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
1978
2043
|
* @param {number} [blur] Optional. Blur image.
|
|
1979
2044
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
1980
2045
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -1982,7 +2047,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
1982
2047
|
* @param {*} [options] Override http request option.
|
|
1983
2048
|
* @throws {RequiredError}
|
|
1984
2049
|
*/
|
|
1985
|
-
getPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2050
|
+
getPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
1986
2051
|
/**
|
|
1987
2052
|
*
|
|
1988
2053
|
* @summary Get person image by name.
|
|
@@ -2001,13 +2066,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2001
2066
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2002
2067
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2003
2068
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2069
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2004
2070
|
* @param {number} [blur] Optional. Blur image.
|
|
2005
2071
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2006
2072
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2007
2073
|
* @param {*} [options] Override http request option.
|
|
2008
2074
|
* @throws {RequiredError}
|
|
2009
2075
|
*/
|
|
2010
|
-
getPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2076
|
+
getPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2011
2077
|
/**
|
|
2012
2078
|
*
|
|
2013
2079
|
* @summary Generates or gets the splashscreen.
|
|
@@ -2044,6 +2110,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2044
2110
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2045
2111
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2046
2112
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2113
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2047
2114
|
* @param {number} [blur] Optional. Blur image.
|
|
2048
2115
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2049
2116
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2051,7 +2118,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2051
2118
|
* @param {*} [options] Override http request option.
|
|
2052
2119
|
* @throws {RequiredError}
|
|
2053
2120
|
*/
|
|
2054
|
-
getStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2121
|
+
getStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2055
2122
|
/**
|
|
2056
2123
|
*
|
|
2057
2124
|
* @summary Get studio image by name.
|
|
@@ -2070,13 +2137,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2070
2137
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2071
2138
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2072
2139
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2140
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2073
2141
|
* @param {number} [blur] Optional. Blur image.
|
|
2074
2142
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2075
2143
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2076
2144
|
* @param {*} [options] Override http request option.
|
|
2077
2145
|
* @throws {RequiredError}
|
|
2078
2146
|
*/
|
|
2079
|
-
getStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2147
|
+
getStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2080
2148
|
/**
|
|
2081
2149
|
*
|
|
2082
2150
|
* @summary Get user profile image.
|
|
@@ -2094,6 +2162,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2094
2162
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2095
2163
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2096
2164
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2165
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2097
2166
|
* @param {number} [blur] Optional. Blur image.
|
|
2098
2167
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2099
2168
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2101,7 +2170,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2101
2170
|
* @param {*} [options] Override http request option.
|
|
2102
2171
|
* @throws {RequiredError}
|
|
2103
2172
|
*/
|
|
2104
|
-
getUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2173
|
+
getUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2105
2174
|
/**
|
|
2106
2175
|
*
|
|
2107
2176
|
* @summary Get user profile image.
|
|
@@ -2120,13 +2189,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2120
2189
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2121
2190
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2122
2191
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2192
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2123
2193
|
* @param {number} [blur] Optional. Blur image.
|
|
2124
2194
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2125
2195
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2126
2196
|
* @param {*} [options] Override http request option.
|
|
2127
2197
|
* @throws {RequiredError}
|
|
2128
2198
|
*/
|
|
2129
|
-
getUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2199
|
+
getUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2130
2200
|
/**
|
|
2131
2201
|
*
|
|
2132
2202
|
* @summary Get artist image by name.
|
|
@@ -2145,13 +2215,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2145
2215
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2146
2216
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2147
2217
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2218
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2148
2219
|
* @param {number} [blur] Optional. Blur image.
|
|
2149
2220
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2150
2221
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2151
2222
|
* @param {*} [options] Override http request option.
|
|
2152
2223
|
* @throws {RequiredError}
|
|
2153
2224
|
*/
|
|
2154
|
-
headArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2225
|
+
headArtistImage(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2155
2226
|
/**
|
|
2156
2227
|
*
|
|
2157
2228
|
* @summary Get genre image by name.
|
|
@@ -2169,6 +2240,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2169
2240
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2170
2241
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2171
2242
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2243
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2172
2244
|
* @param {number} [blur] Optional. Blur image.
|
|
2173
2245
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2174
2246
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2176,7 +2248,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2176
2248
|
* @param {*} [options] Override http request option.
|
|
2177
2249
|
* @throws {RequiredError}
|
|
2178
2250
|
*/
|
|
2179
|
-
headGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2251
|
+
headGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2180
2252
|
/**
|
|
2181
2253
|
*
|
|
2182
2254
|
* @summary Get genre image by name.
|
|
@@ -2195,13 +2267,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2195
2267
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2196
2268
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2197
2269
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2270
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2198
2271
|
* @param {number} [blur] Optional. Blur image.
|
|
2199
2272
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2200
2273
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2201
2274
|
* @param {*} [options] Override http request option.
|
|
2202
2275
|
* @throws {RequiredError}
|
|
2203
2276
|
*/
|
|
2204
|
-
headGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2277
|
+
headGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2205
2278
|
/**
|
|
2206
2279
|
*
|
|
2207
2280
|
* @summary Gets the item\'s image.
|
|
@@ -2217,6 +2290,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2217
2290
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
2218
2291
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2219
2292
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
2293
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2220
2294
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
2221
2295
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
2222
2296
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -2226,7 +2300,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2226
2300
|
* @param {*} [options] Override http request option.
|
|
2227
2301
|
* @throws {RequiredError}
|
|
2228
2302
|
*/
|
|
2229
|
-
headItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2303
|
+
headItemImage(itemId: string, imageType: ImageType, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2230
2304
|
/**
|
|
2231
2305
|
*
|
|
2232
2306
|
* @summary Gets the item\'s image.
|
|
@@ -2245,13 +2319,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2245
2319
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2246
2320
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2247
2321
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2322
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2248
2323
|
* @param {number} [blur] Optional. Blur image.
|
|
2249
2324
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2250
2325
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2251
2326
|
* @param {*} [options] Override http request option.
|
|
2252
2327
|
* @throws {RequiredError}
|
|
2253
2328
|
*/
|
|
2254
|
-
headItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2329
|
+
headItemImage2(itemId: string, imageType: ImageType, maxWidth: number, maxHeight: number, tag: string, format: ImageFormat, percentPlayed: number, unplayedCount: number, imageIndex: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2255
2330
|
/**
|
|
2256
2331
|
*
|
|
2257
2332
|
* @summary Gets the item\'s image.
|
|
@@ -2268,6 +2343,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2268
2343
|
* @param {string} [tag] Optional. Supply the cache tag from the item object to receive strong caching headers.
|
|
2269
2344
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2270
2345
|
* @param {ImageFormat} [format] Optional. The MediaBrowser.Model.Drawing.ImageFormat of the returned image.
|
|
2346
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2271
2347
|
* @param {number} [percentPlayed] Optional. Percent to render for the percent played overlay.
|
|
2272
2348
|
* @param {number} [unplayedCount] Optional. Unplayed count overlay to render.
|
|
2273
2349
|
* @param {number} [blur] Optional. Blur image.
|
|
@@ -2276,7 +2352,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2276
2352
|
* @param {*} [options] Override http request option.
|
|
2277
2353
|
* @throws {RequiredError}
|
|
2278
2354
|
*/
|
|
2279
|
-
headItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2355
|
+
headItemImageByIndex(itemId: string, imageType: ImageType, imageIndex: number, maxWidth?: number, maxHeight?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, tag?: string, cropWhitespace?: boolean, format?: ImageFormat, addPlayedIndicator?: boolean, percentPlayed?: number, unplayedCount?: number, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2280
2356
|
/**
|
|
2281
2357
|
*
|
|
2282
2358
|
* @summary Get music genre image by name.
|
|
@@ -2294,6 +2370,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2294
2370
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2295
2371
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2296
2372
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2373
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2297
2374
|
* @param {number} [blur] Optional. Blur image.
|
|
2298
2375
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2299
2376
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2301,7 +2378,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2301
2378
|
* @param {*} [options] Override http request option.
|
|
2302
2379
|
* @throws {RequiredError}
|
|
2303
2380
|
*/
|
|
2304
|
-
headMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2381
|
+
headMusicGenreImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2305
2382
|
/**
|
|
2306
2383
|
*
|
|
2307
2384
|
* @summary Get music genre image by name.
|
|
@@ -2320,13 +2397,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2320
2397
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2321
2398
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2322
2399
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2400
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2323
2401
|
* @param {number} [blur] Optional. Blur image.
|
|
2324
2402
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2325
2403
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2326
2404
|
* @param {*} [options] Override http request option.
|
|
2327
2405
|
* @throws {RequiredError}
|
|
2328
2406
|
*/
|
|
2329
|
-
headMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2407
|
+
headMusicGenreImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2330
2408
|
/**
|
|
2331
2409
|
*
|
|
2332
2410
|
* @summary Get person image by name.
|
|
@@ -2344,6 +2422,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2344
2422
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2345
2423
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2346
2424
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2425
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2347
2426
|
* @param {number} [blur] Optional. Blur image.
|
|
2348
2427
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2349
2428
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2351,7 +2430,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2351
2430
|
* @param {*} [options] Override http request option.
|
|
2352
2431
|
* @throws {RequiredError}
|
|
2353
2432
|
*/
|
|
2354
|
-
headPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2433
|
+
headPersonImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2355
2434
|
/**
|
|
2356
2435
|
*
|
|
2357
2436
|
* @summary Get person image by name.
|
|
@@ -2370,13 +2449,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2370
2449
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2371
2450
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2372
2451
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2452
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2373
2453
|
* @param {number} [blur] Optional. Blur image.
|
|
2374
2454
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2375
2455
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2376
2456
|
* @param {*} [options] Override http request option.
|
|
2377
2457
|
* @throws {RequiredError}
|
|
2378
2458
|
*/
|
|
2379
|
-
headPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2459
|
+
headPersonImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2380
2460
|
/**
|
|
2381
2461
|
*
|
|
2382
2462
|
* @summary Get studio image by name.
|
|
@@ -2394,6 +2474,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2394
2474
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2395
2475
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2396
2476
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2477
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2397
2478
|
* @param {number} [blur] Optional. Blur image.
|
|
2398
2479
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2399
2480
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2401,7 +2482,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2401
2482
|
* @param {*} [options] Override http request option.
|
|
2402
2483
|
* @throws {RequiredError}
|
|
2403
2484
|
*/
|
|
2404
|
-
headStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2485
|
+
headStudioImage(name: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2405
2486
|
/**
|
|
2406
2487
|
*
|
|
2407
2488
|
* @summary Get studio image by name.
|
|
@@ -2420,13 +2501,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2420
2501
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2421
2502
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2422
2503
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2504
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2423
2505
|
* @param {number} [blur] Optional. Blur image.
|
|
2424
2506
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2425
2507
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2426
2508
|
* @param {*} [options] Override http request option.
|
|
2427
2509
|
* @throws {RequiredError}
|
|
2428
2510
|
*/
|
|
2429
|
-
headStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2511
|
+
headStudioImageByIndex(name: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2430
2512
|
/**
|
|
2431
2513
|
*
|
|
2432
2514
|
* @summary Get user profile image.
|
|
@@ -2444,6 +2526,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2444
2526
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2445
2527
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2446
2528
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2529
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2447
2530
|
* @param {number} [blur] Optional. Blur image.
|
|
2448
2531
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2449
2532
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
@@ -2451,7 +2534,7 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2451
2534
|
* @param {*} [options] Override http request option.
|
|
2452
2535
|
* @throws {RequiredError}
|
|
2453
2536
|
*/
|
|
2454
|
-
headUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2537
|
+
headUserImage(userId: string, imageType: ImageType, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, imageIndex?: number, options?: any): AxiosPromise<any>;
|
|
2455
2538
|
/**
|
|
2456
2539
|
*
|
|
2457
2540
|
* @summary Get user profile image.
|
|
@@ -2470,13 +2553,14 @@ export declare const ImageApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2470
2553
|
* @param {number} [fillWidth] Width of box to fill.
|
|
2471
2554
|
* @param {number} [fillHeight] Height of box to fill.
|
|
2472
2555
|
* @param {boolean} [cropWhitespace] Optional. Specify if whitespace should be cropped out of the image. True/False. If unspecified, whitespace will be cropped from logos and clear art.
|
|
2556
|
+
* @param {boolean} [addPlayedIndicator] Optional. Add a played indicator.
|
|
2473
2557
|
* @param {number} [blur] Optional. Blur image.
|
|
2474
2558
|
* @param {string} [backgroundColor] Optional. Apply a background color for transparent images.
|
|
2475
2559
|
* @param {string} [foregroundLayer] Optional. Apply a foreground layer on top of the image.
|
|
2476
2560
|
* @param {*} [options] Override http request option.
|
|
2477
2561
|
* @throws {RequiredError}
|
|
2478
2562
|
*/
|
|
2479
|
-
headUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2563
|
+
headUserImageByIndex(userId: string, imageType: ImageType, imageIndex: number, tag?: string, format?: ImageFormat, maxWidth?: number, maxHeight?: number, percentPlayed?: number, unplayedCount?: number, width?: number, height?: number, quality?: number, fillWidth?: number, fillHeight?: number, cropWhitespace?: boolean, addPlayedIndicator?: boolean, blur?: number, backgroundColor?: string, foregroundLayer?: string, options?: any): AxiosPromise<any>;
|
|
2480
2564
|
/**
|
|
2481
2565
|
*
|
|
2482
2566
|
* @summary Sets the user image.
|
|
@@ -2736,6 +2820,12 @@ export interface ImageApiGetArtistImageRequest {
|
|
|
2736
2820
|
* @memberof ImageApiGetArtistImage
|
|
2737
2821
|
*/
|
|
2738
2822
|
readonly cropWhitespace?: boolean;
|
|
2823
|
+
/**
|
|
2824
|
+
* Optional. Add a played indicator.
|
|
2825
|
+
* @type {boolean}
|
|
2826
|
+
* @memberof ImageApiGetArtistImage
|
|
2827
|
+
*/
|
|
2828
|
+
readonly addPlayedIndicator?: boolean;
|
|
2739
2829
|
/**
|
|
2740
2830
|
* Optional. Blur image.
|
|
2741
2831
|
* @type {number}
|
|
@@ -2845,6 +2935,12 @@ export interface ImageApiGetGenreImageRequest {
|
|
|
2845
2935
|
* @memberof ImageApiGetGenreImage
|
|
2846
2936
|
*/
|
|
2847
2937
|
readonly cropWhitespace?: boolean;
|
|
2938
|
+
/**
|
|
2939
|
+
* Optional. Add a played indicator.
|
|
2940
|
+
* @type {boolean}
|
|
2941
|
+
* @memberof ImageApiGetGenreImage
|
|
2942
|
+
*/
|
|
2943
|
+
readonly addPlayedIndicator?: boolean;
|
|
2848
2944
|
/**
|
|
2849
2945
|
* Optional. Blur image.
|
|
2850
2946
|
* @type {number}
|
|
@@ -2966,6 +3062,12 @@ export interface ImageApiGetGenreImageByIndexRequest {
|
|
|
2966
3062
|
* @memberof ImageApiGetGenreImageByIndex
|
|
2967
3063
|
*/
|
|
2968
3064
|
readonly cropWhitespace?: boolean;
|
|
3065
|
+
/**
|
|
3066
|
+
* Optional. Add a played indicator.
|
|
3067
|
+
* @type {boolean}
|
|
3068
|
+
* @memberof ImageApiGetGenreImageByIndex
|
|
3069
|
+
*/
|
|
3070
|
+
readonly addPlayedIndicator?: boolean;
|
|
2969
3071
|
/**
|
|
2970
3072
|
* Optional. Blur image.
|
|
2971
3073
|
* @type {number}
|
|
@@ -3063,6 +3165,12 @@ export interface ImageApiGetItemImageRequest {
|
|
|
3063
3165
|
* @memberof ImageApiGetItemImage
|
|
3064
3166
|
*/
|
|
3065
3167
|
readonly format?: ImageFormat;
|
|
3168
|
+
/**
|
|
3169
|
+
* Optional. Add a played indicator.
|
|
3170
|
+
* @type {boolean}
|
|
3171
|
+
* @memberof ImageApiGetItemImage
|
|
3172
|
+
*/
|
|
3173
|
+
readonly addPlayedIndicator?: boolean;
|
|
3066
3174
|
/**
|
|
3067
3175
|
* Optional. Percent to render for the percent played overlay.
|
|
3068
3176
|
* @type {number}
|
|
@@ -3196,6 +3304,12 @@ export interface ImageApiGetItemImage2Request {
|
|
|
3196
3304
|
* @memberof ImageApiGetItemImage2
|
|
3197
3305
|
*/
|
|
3198
3306
|
readonly cropWhitespace?: boolean;
|
|
3307
|
+
/**
|
|
3308
|
+
* Optional. Add a played indicator.
|
|
3309
|
+
* @type {boolean}
|
|
3310
|
+
* @memberof ImageApiGetItemImage2
|
|
3311
|
+
*/
|
|
3312
|
+
readonly addPlayedIndicator?: boolean;
|
|
3199
3313
|
/**
|
|
3200
3314
|
* Optional. Blur image.
|
|
3201
3315
|
* @type {number}
|
|
@@ -3299,6 +3413,12 @@ export interface ImageApiGetItemImageByIndexRequest {
|
|
|
3299
3413
|
* @memberof ImageApiGetItemImageByIndex
|
|
3300
3414
|
*/
|
|
3301
3415
|
readonly format?: ImageFormat;
|
|
3416
|
+
/**
|
|
3417
|
+
* Optional. Add a played indicator.
|
|
3418
|
+
* @type {boolean}
|
|
3419
|
+
* @memberof ImageApiGetItemImageByIndex
|
|
3420
|
+
*/
|
|
3421
|
+
readonly addPlayedIndicator?: boolean;
|
|
3302
3422
|
/**
|
|
3303
3423
|
* Optional. Percent to render for the percent played overlay.
|
|
3304
3424
|
* @type {number}
|
|
@@ -3433,6 +3553,12 @@ export interface ImageApiGetMusicGenreImageRequest {
|
|
|
3433
3553
|
* @memberof ImageApiGetMusicGenreImage
|
|
3434
3554
|
*/
|
|
3435
3555
|
readonly cropWhitespace?: boolean;
|
|
3556
|
+
/**
|
|
3557
|
+
* Optional. Add a played indicator.
|
|
3558
|
+
* @type {boolean}
|
|
3559
|
+
* @memberof ImageApiGetMusicGenreImage
|
|
3560
|
+
*/
|
|
3561
|
+
readonly addPlayedIndicator?: boolean;
|
|
3436
3562
|
/**
|
|
3437
3563
|
* Optional. Blur image.
|
|
3438
3564
|
* @type {number}
|
|
@@ -3554,6 +3680,12 @@ export interface ImageApiGetMusicGenreImageByIndexRequest {
|
|
|
3554
3680
|
* @memberof ImageApiGetMusicGenreImageByIndex
|
|
3555
3681
|
*/
|
|
3556
3682
|
readonly cropWhitespace?: boolean;
|
|
3683
|
+
/**
|
|
3684
|
+
* Optional. Add a played indicator.
|
|
3685
|
+
* @type {boolean}
|
|
3686
|
+
* @memberof ImageApiGetMusicGenreImageByIndex
|
|
3687
|
+
*/
|
|
3688
|
+
readonly addPlayedIndicator?: boolean;
|
|
3557
3689
|
/**
|
|
3558
3690
|
* Optional. Blur image.
|
|
3559
3691
|
* @type {number}
|
|
@@ -3663,6 +3795,12 @@ export interface ImageApiGetPersonImageRequest {
|
|
|
3663
3795
|
* @memberof ImageApiGetPersonImage
|
|
3664
3796
|
*/
|
|
3665
3797
|
readonly cropWhitespace?: boolean;
|
|
3798
|
+
/**
|
|
3799
|
+
* Optional. Add a played indicator.
|
|
3800
|
+
* @type {boolean}
|
|
3801
|
+
* @memberof ImageApiGetPersonImage
|
|
3802
|
+
*/
|
|
3803
|
+
readonly addPlayedIndicator?: boolean;
|
|
3666
3804
|
/**
|
|
3667
3805
|
* Optional. Blur image.
|
|
3668
3806
|
* @type {number}
|
|
@@ -3784,6 +3922,12 @@ export interface ImageApiGetPersonImageByIndexRequest {
|
|
|
3784
3922
|
* @memberof ImageApiGetPersonImageByIndex
|
|
3785
3923
|
*/
|
|
3786
3924
|
readonly cropWhitespace?: boolean;
|
|
3925
|
+
/**
|
|
3926
|
+
* Optional. Add a played indicator.
|
|
3927
|
+
* @type {boolean}
|
|
3928
|
+
* @memberof ImageApiGetPersonImageByIndex
|
|
3929
|
+
*/
|
|
3930
|
+
readonly addPlayedIndicator?: boolean;
|
|
3787
3931
|
/**
|
|
3788
3932
|
* Optional. Blur image.
|
|
3789
3933
|
* @type {number}
|
|
@@ -3972,6 +4116,12 @@ export interface ImageApiGetStudioImageRequest {
|
|
|
3972
4116
|
* @memberof ImageApiGetStudioImage
|
|
3973
4117
|
*/
|
|
3974
4118
|
readonly cropWhitespace?: boolean;
|
|
4119
|
+
/**
|
|
4120
|
+
* Optional. Add a played indicator.
|
|
4121
|
+
* @type {boolean}
|
|
4122
|
+
* @memberof ImageApiGetStudioImage
|
|
4123
|
+
*/
|
|
4124
|
+
readonly addPlayedIndicator?: boolean;
|
|
3975
4125
|
/**
|
|
3976
4126
|
* Optional. Blur image.
|
|
3977
4127
|
* @type {number}
|
|
@@ -4093,6 +4243,12 @@ export interface ImageApiGetStudioImageByIndexRequest {
|
|
|
4093
4243
|
* @memberof ImageApiGetStudioImageByIndex
|
|
4094
4244
|
*/
|
|
4095
4245
|
readonly cropWhitespace?: boolean;
|
|
4246
|
+
/**
|
|
4247
|
+
* Optional. Add a played indicator.
|
|
4248
|
+
* @type {boolean}
|
|
4249
|
+
* @memberof ImageApiGetStudioImageByIndex
|
|
4250
|
+
*/
|
|
4251
|
+
readonly addPlayedIndicator?: boolean;
|
|
4096
4252
|
/**
|
|
4097
4253
|
* Optional. Blur image.
|
|
4098
4254
|
* @type {number}
|
|
@@ -4202,6 +4358,12 @@ export interface ImageApiGetUserImageRequest {
|
|
|
4202
4358
|
* @memberof ImageApiGetUserImage
|
|
4203
4359
|
*/
|
|
4204
4360
|
readonly cropWhitespace?: boolean;
|
|
4361
|
+
/**
|
|
4362
|
+
* Optional. Add a played indicator.
|
|
4363
|
+
* @type {boolean}
|
|
4364
|
+
* @memberof ImageApiGetUserImage
|
|
4365
|
+
*/
|
|
4366
|
+
readonly addPlayedIndicator?: boolean;
|
|
4205
4367
|
/**
|
|
4206
4368
|
* Optional. Blur image.
|
|
4207
4369
|
* @type {number}
|
|
@@ -4323,6 +4485,12 @@ export interface ImageApiGetUserImageByIndexRequest {
|
|
|
4323
4485
|
* @memberof ImageApiGetUserImageByIndex
|
|
4324
4486
|
*/
|
|
4325
4487
|
readonly cropWhitespace?: boolean;
|
|
4488
|
+
/**
|
|
4489
|
+
* Optional. Add a played indicator.
|
|
4490
|
+
* @type {boolean}
|
|
4491
|
+
* @memberof ImageApiGetUserImageByIndex
|
|
4492
|
+
*/
|
|
4493
|
+
readonly addPlayedIndicator?: boolean;
|
|
4326
4494
|
/**
|
|
4327
4495
|
* Optional. Blur image.
|
|
4328
4496
|
* @type {number}
|
|
@@ -4438,6 +4606,12 @@ export interface ImageApiHeadArtistImageRequest {
|
|
|
4438
4606
|
* @memberof ImageApiHeadArtistImage
|
|
4439
4607
|
*/
|
|
4440
4608
|
readonly cropWhitespace?: boolean;
|
|
4609
|
+
/**
|
|
4610
|
+
* Optional. Add a played indicator.
|
|
4611
|
+
* @type {boolean}
|
|
4612
|
+
* @memberof ImageApiHeadArtistImage
|
|
4613
|
+
*/
|
|
4614
|
+
readonly addPlayedIndicator?: boolean;
|
|
4441
4615
|
/**
|
|
4442
4616
|
* Optional. Blur image.
|
|
4443
4617
|
* @type {number}
|
|
@@ -4547,6 +4721,12 @@ export interface ImageApiHeadGenreImageRequest {
|
|
|
4547
4721
|
* @memberof ImageApiHeadGenreImage
|
|
4548
4722
|
*/
|
|
4549
4723
|
readonly cropWhitespace?: boolean;
|
|
4724
|
+
/**
|
|
4725
|
+
* Optional. Add a played indicator.
|
|
4726
|
+
* @type {boolean}
|
|
4727
|
+
* @memberof ImageApiHeadGenreImage
|
|
4728
|
+
*/
|
|
4729
|
+
readonly addPlayedIndicator?: boolean;
|
|
4550
4730
|
/**
|
|
4551
4731
|
* Optional. Blur image.
|
|
4552
4732
|
* @type {number}
|
|
@@ -4668,6 +4848,12 @@ export interface ImageApiHeadGenreImageByIndexRequest {
|
|
|
4668
4848
|
* @memberof ImageApiHeadGenreImageByIndex
|
|
4669
4849
|
*/
|
|
4670
4850
|
readonly cropWhitespace?: boolean;
|
|
4851
|
+
/**
|
|
4852
|
+
* Optional. Add a played indicator.
|
|
4853
|
+
* @type {boolean}
|
|
4854
|
+
* @memberof ImageApiHeadGenreImageByIndex
|
|
4855
|
+
*/
|
|
4856
|
+
readonly addPlayedIndicator?: boolean;
|
|
4671
4857
|
/**
|
|
4672
4858
|
* Optional. Blur image.
|
|
4673
4859
|
* @type {number}
|
|
@@ -4765,6 +4951,12 @@ export interface ImageApiHeadItemImageRequest {
|
|
|
4765
4951
|
* @memberof ImageApiHeadItemImage
|
|
4766
4952
|
*/
|
|
4767
4953
|
readonly format?: ImageFormat;
|
|
4954
|
+
/**
|
|
4955
|
+
* Optional. Add a played indicator.
|
|
4956
|
+
* @type {boolean}
|
|
4957
|
+
* @memberof ImageApiHeadItemImage
|
|
4958
|
+
*/
|
|
4959
|
+
readonly addPlayedIndicator?: boolean;
|
|
4768
4960
|
/**
|
|
4769
4961
|
* Optional. Percent to render for the percent played overlay.
|
|
4770
4962
|
* @type {number}
|
|
@@ -4898,6 +5090,12 @@ export interface ImageApiHeadItemImage2Request {
|
|
|
4898
5090
|
* @memberof ImageApiHeadItemImage2
|
|
4899
5091
|
*/
|
|
4900
5092
|
readonly cropWhitespace?: boolean;
|
|
5093
|
+
/**
|
|
5094
|
+
* Optional. Add a played indicator.
|
|
5095
|
+
* @type {boolean}
|
|
5096
|
+
* @memberof ImageApiHeadItemImage2
|
|
5097
|
+
*/
|
|
5098
|
+
readonly addPlayedIndicator?: boolean;
|
|
4901
5099
|
/**
|
|
4902
5100
|
* Optional. Blur image.
|
|
4903
5101
|
* @type {number}
|
|
@@ -5001,6 +5199,12 @@ export interface ImageApiHeadItemImageByIndexRequest {
|
|
|
5001
5199
|
* @memberof ImageApiHeadItemImageByIndex
|
|
5002
5200
|
*/
|
|
5003
5201
|
readonly format?: ImageFormat;
|
|
5202
|
+
/**
|
|
5203
|
+
* Optional. Add a played indicator.
|
|
5204
|
+
* @type {boolean}
|
|
5205
|
+
* @memberof ImageApiHeadItemImageByIndex
|
|
5206
|
+
*/
|
|
5207
|
+
readonly addPlayedIndicator?: boolean;
|
|
5004
5208
|
/**
|
|
5005
5209
|
* Optional. Percent to render for the percent played overlay.
|
|
5006
5210
|
* @type {number}
|
|
@@ -5122,6 +5326,12 @@ export interface ImageApiHeadMusicGenreImageRequest {
|
|
|
5122
5326
|
* @memberof ImageApiHeadMusicGenreImage
|
|
5123
5327
|
*/
|
|
5124
5328
|
readonly cropWhitespace?: boolean;
|
|
5329
|
+
/**
|
|
5330
|
+
* Optional. Add a played indicator.
|
|
5331
|
+
* @type {boolean}
|
|
5332
|
+
* @memberof ImageApiHeadMusicGenreImage
|
|
5333
|
+
*/
|
|
5334
|
+
readonly addPlayedIndicator?: boolean;
|
|
5125
5335
|
/**
|
|
5126
5336
|
* Optional. Blur image.
|
|
5127
5337
|
* @type {number}
|
|
@@ -5243,6 +5453,12 @@ export interface ImageApiHeadMusicGenreImageByIndexRequest {
|
|
|
5243
5453
|
* @memberof ImageApiHeadMusicGenreImageByIndex
|
|
5244
5454
|
*/
|
|
5245
5455
|
readonly cropWhitespace?: boolean;
|
|
5456
|
+
/**
|
|
5457
|
+
* Optional. Add a played indicator.
|
|
5458
|
+
* @type {boolean}
|
|
5459
|
+
* @memberof ImageApiHeadMusicGenreImageByIndex
|
|
5460
|
+
*/
|
|
5461
|
+
readonly addPlayedIndicator?: boolean;
|
|
5246
5462
|
/**
|
|
5247
5463
|
* Optional. Blur image.
|
|
5248
5464
|
* @type {number}
|
|
@@ -5352,6 +5568,12 @@ export interface ImageApiHeadPersonImageRequest {
|
|
|
5352
5568
|
* @memberof ImageApiHeadPersonImage
|
|
5353
5569
|
*/
|
|
5354
5570
|
readonly cropWhitespace?: boolean;
|
|
5571
|
+
/**
|
|
5572
|
+
* Optional. Add a played indicator.
|
|
5573
|
+
* @type {boolean}
|
|
5574
|
+
* @memberof ImageApiHeadPersonImage
|
|
5575
|
+
*/
|
|
5576
|
+
readonly addPlayedIndicator?: boolean;
|
|
5355
5577
|
/**
|
|
5356
5578
|
* Optional. Blur image.
|
|
5357
5579
|
* @type {number}
|
|
@@ -5473,6 +5695,12 @@ export interface ImageApiHeadPersonImageByIndexRequest {
|
|
|
5473
5695
|
* @memberof ImageApiHeadPersonImageByIndex
|
|
5474
5696
|
*/
|
|
5475
5697
|
readonly cropWhitespace?: boolean;
|
|
5698
|
+
/**
|
|
5699
|
+
* Optional. Add a played indicator.
|
|
5700
|
+
* @type {boolean}
|
|
5701
|
+
* @memberof ImageApiHeadPersonImageByIndex
|
|
5702
|
+
*/
|
|
5703
|
+
readonly addPlayedIndicator?: boolean;
|
|
5476
5704
|
/**
|
|
5477
5705
|
* Optional. Blur image.
|
|
5478
5706
|
* @type {number}
|
|
@@ -5582,6 +5810,12 @@ export interface ImageApiHeadStudioImageRequest {
|
|
|
5582
5810
|
* @memberof ImageApiHeadStudioImage
|
|
5583
5811
|
*/
|
|
5584
5812
|
readonly cropWhitespace?: boolean;
|
|
5813
|
+
/**
|
|
5814
|
+
* Optional. Add a played indicator.
|
|
5815
|
+
* @type {boolean}
|
|
5816
|
+
* @memberof ImageApiHeadStudioImage
|
|
5817
|
+
*/
|
|
5818
|
+
readonly addPlayedIndicator?: boolean;
|
|
5585
5819
|
/**
|
|
5586
5820
|
* Optional. Blur image.
|
|
5587
5821
|
* @type {number}
|
|
@@ -5703,6 +5937,12 @@ export interface ImageApiHeadStudioImageByIndexRequest {
|
|
|
5703
5937
|
* @memberof ImageApiHeadStudioImageByIndex
|
|
5704
5938
|
*/
|
|
5705
5939
|
readonly cropWhitespace?: boolean;
|
|
5940
|
+
/**
|
|
5941
|
+
* Optional. Add a played indicator.
|
|
5942
|
+
* @type {boolean}
|
|
5943
|
+
* @memberof ImageApiHeadStudioImageByIndex
|
|
5944
|
+
*/
|
|
5945
|
+
readonly addPlayedIndicator?: boolean;
|
|
5706
5946
|
/**
|
|
5707
5947
|
* Optional. Blur image.
|
|
5708
5948
|
* @type {number}
|
|
@@ -5812,6 +6052,12 @@ export interface ImageApiHeadUserImageRequest {
|
|
|
5812
6052
|
* @memberof ImageApiHeadUserImage
|
|
5813
6053
|
*/
|
|
5814
6054
|
readonly cropWhitespace?: boolean;
|
|
6055
|
+
/**
|
|
6056
|
+
* Optional. Add a played indicator.
|
|
6057
|
+
* @type {boolean}
|
|
6058
|
+
* @memberof ImageApiHeadUserImage
|
|
6059
|
+
*/
|
|
6060
|
+
readonly addPlayedIndicator?: boolean;
|
|
5815
6061
|
/**
|
|
5816
6062
|
* Optional. Blur image.
|
|
5817
6063
|
* @type {number}
|
|
@@ -5933,6 +6179,12 @@ export interface ImageApiHeadUserImageByIndexRequest {
|
|
|
5933
6179
|
* @memberof ImageApiHeadUserImageByIndex
|
|
5934
6180
|
*/
|
|
5935
6181
|
readonly cropWhitespace?: boolean;
|
|
6182
|
+
/**
|
|
6183
|
+
* Optional. Add a played indicator.
|
|
6184
|
+
* @type {boolean}
|
|
6185
|
+
* @memberof ImageApiHeadUserImageByIndex
|
|
6186
|
+
*/
|
|
6187
|
+
readonly addPlayedIndicator?: boolean;
|
|
5936
6188
|
/**
|
|
5937
6189
|
* Optional. Blur image.
|
|
5938
6190
|
* @type {number}
|