From a8118a0074241ed10f54baafaeb3fd7f052e5c12 Mon Sep 17 00:00:00 2001 From: jellyfin-bot Date: Sat, 16 Nov 2024 21:30:38 +0000 Subject: [PATCH] Update generated sources to 10.10.2 --- openapi.json | 4 ++-- src/generated-client/api/item-refresh-api.ts | 23 +++++++++++++++----- src/versions.ts | 2 +- 3 files changed, 21 insertions(+), 8 deletions(-) diff --git a/openapi.json b/openapi.json index 1e0dafaf..17d0ad3b 100644 --- a/openapi.json +++ b/openapi.json @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:80e5691dae69bf5369963b92a3cadeef7c349c7fa89d2fc6b461e409026f7622 -size 862436 +oid sha256:6c9a6321ae707c61cc4bb07b1c918390c0f02568d7a2d2e96ab94bb1d214c2d7 +size 862642 diff --git a/src/generated-client/api/item-refresh-api.ts b/src/generated-client/api/item-refresh-api.ts index 7146133d..4e85744d 100644 --- a/src/generated-client/api/item-refresh-api.ts +++ b/src/generated-client/api/item-refresh-api.ts @@ -38,10 +38,11 @@ export const ItemRefreshApiAxiosParamCreator = function (configuration?: Configu * @param {MetadataRefreshMode} [imageRefreshMode] (Optional) Specifies the image refresh mode. * @param {boolean} [replaceAllMetadata] (Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh. * @param {boolean} [replaceAllImages] (Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh. + * @param {boolean} [regenerateTrickplay] (Optional) Determines if trickplay images should be replaced. Only applicable if mode is FullRefresh. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - refreshItem: async (itemId: string, metadataRefreshMode?: MetadataRefreshMode, imageRefreshMode?: MetadataRefreshMode, replaceAllMetadata?: boolean, replaceAllImages?: boolean, options: RawAxiosRequestConfig = {}): Promise => { + refreshItem: async (itemId: string, metadataRefreshMode?: MetadataRefreshMode, imageRefreshMode?: MetadataRefreshMode, replaceAllMetadata?: boolean, replaceAllImages?: boolean, regenerateTrickplay?: boolean, options: RawAxiosRequestConfig = {}): Promise => { // verify required parameter 'itemId' is not null or undefined assertParamExists('refreshItem', 'itemId', itemId) const localVarPath = `/Items/{itemId}/Refresh` @@ -76,6 +77,10 @@ export const ItemRefreshApiAxiosParamCreator = function (configuration?: Configu localVarQueryParameter['replaceAllImages'] = replaceAllImages; } + if (regenerateTrickplay !== undefined) { + localVarQueryParameter['regenerateTrickplay'] = regenerateTrickplay; + } + setSearchParams(localVarUrlObj, localVarQueryParameter); @@ -105,11 +110,12 @@ export const ItemRefreshApiFp = function(configuration?: Configuration) { * @param {MetadataRefreshMode} [imageRefreshMode] (Optional) Specifies the image refresh mode. * @param {boolean} [replaceAllMetadata] (Optional) Determines if metadata should be replaced. Only applicable if mode is FullRefresh. * @param {boolean} [replaceAllImages] (Optional) Determines if images should be replaced. Only applicable if mode is FullRefresh. + * @param {boolean} [regenerateTrickplay] (Optional) Determines if trickplay images should be replaced. Only applicable if mode is FullRefresh. * @param {*} [options] Override http request option. * @throws {RequiredError} */ - async refreshItem(itemId: string, metadataRefreshMode?: MetadataRefreshMode, imageRefreshMode?: MetadataRefreshMode, replaceAllMetadata?: boolean, replaceAllImages?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.refreshItem(itemId, metadataRefreshMode, imageRefreshMode, replaceAllMetadata, replaceAllImages, options); + async refreshItem(itemId: string, metadataRefreshMode?: MetadataRefreshMode, imageRefreshMode?: MetadataRefreshMode, replaceAllMetadata?: boolean, replaceAllImages?: boolean, regenerateTrickplay?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.refreshItem(itemId, metadataRefreshMode, imageRefreshMode, replaceAllMetadata, replaceAllImages, regenerateTrickplay, options); const localVarOperationServerIndex = configuration?.serverIndex ?? 0; const localVarOperationServerBasePath = operationServerMap['ItemRefreshApi.refreshItem']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); @@ -132,7 +138,7 @@ export const ItemRefreshApiFactory = function (configuration?: Configuration, ba * @throws {RequiredError} */ refreshItem(requestParameters: ItemRefreshApiRefreshItemRequest, options?: RawAxiosRequestConfig): AxiosPromise { - return localVarFp.refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, options).then((request) => request(axios, basePath)); + return localVarFp.refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, requestParameters.regenerateTrickplay, options).then((request) => request(axios, basePath)); }, }; }; @@ -177,6 +183,13 @@ export interface ItemRefreshApiRefreshItemRequest { * @memberof ItemRefreshApiRefreshItem */ readonly replaceAllImages?: boolean + + /** + * (Optional) Determines if trickplay images should be replaced. Only applicable if mode is FullRefresh. + * @type {boolean} + * @memberof ItemRefreshApiRefreshItem + */ + readonly regenerateTrickplay?: boolean } /** @@ -195,7 +208,7 @@ export class ItemRefreshApi extends BaseAPI { * @memberof ItemRefreshApi */ public refreshItem(requestParameters: ItemRefreshApiRefreshItemRequest, options?: RawAxiosRequestConfig) { - return ItemRefreshApiFp(this.configuration).refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, options).then((request) => request(this.axios, this.basePath)); + return ItemRefreshApiFp(this.configuration).refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, requestParameters.regenerateTrickplay, options).then((request) => request(this.axios, this.basePath)); } } diff --git a/src/versions.ts b/src/versions.ts index 1de76f55..1b1ee1fc 100644 --- a/src/versions.ts +++ b/src/versions.ts @@ -5,7 +5,7 @@ */ /** The current API version of the generated client. */ -export const API_VERSION = '10.10.1'; +export const API_VERSION = '10.10.2'; /** The minimum supported server version. */ export const MINIMUM_VERSION = '10.9.0';