Update OpenAPI to unstable
Some checks are pending
SDK Unstable Publish / publish (push) Waiting to run

This commit is contained in:
jellyfin-bot 2024-07-01 15:39:40 +00:00
parent 9c48e8f8bd
commit cc138ae7ea
5 changed files with 16 additions and 23 deletions

4
openapi.json vendored
View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b13b7c577eaf62d0190a2c2fd908751cd45fa38d1f3b2ff0d546642ae38e23a
size 862642
oid sha256:d63832542cbd7330dee0bd46d5f2bd04ec3ff74adfe9c79f3c1aa080d1329f93
size 862603

View File

@ -38,11 +38,10 @@ 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, regenerateTrickplay?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
refreshItem: async (itemId: string, metadataRefreshMode?: MetadataRefreshMode, imageRefreshMode?: MetadataRefreshMode, replaceAllMetadata?: boolean, replaceAllImages?: boolean, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'itemId' is not null or undefined
assertParamExists('refreshItem', 'itemId', itemId)
const localVarPath = `/Items/{itemId}/Refresh`
@ -77,10 +76,6 @@ export const ItemRefreshApiAxiosParamCreator = function (configuration?: Configu
localVarQueryParameter['replaceAllImages'] = replaceAllImages;
}
if (regenerateTrickplay !== undefined) {
localVarQueryParameter['regenerateTrickplay'] = regenerateTrickplay;
}
setSearchParams(localVarUrlObj, localVarQueryParameter);
@ -110,12 +105,11 @@ 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, regenerateTrickplay?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.refreshItem(itemId, metadataRefreshMode, imageRefreshMode, replaceAllMetadata, replaceAllImages, regenerateTrickplay, options);
async refreshItem(itemId: string, metadataRefreshMode?: MetadataRefreshMode, imageRefreshMode?: MetadataRefreshMode, replaceAllMetadata?: boolean, replaceAllImages?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.refreshItem(itemId, metadataRefreshMode, imageRefreshMode, replaceAllMetadata, replaceAllImages, 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);
@ -138,7 +132,7 @@ export const ItemRefreshApiFactory = function (configuration?: Configuration, ba
* @throws {RequiredError}
*/
refreshItem(requestParameters: ItemRefreshApiRefreshItemRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
return localVarFp.refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, requestParameters.regenerateTrickplay, options).then((request) => request(axios, basePath));
return localVarFp.refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, options).then((request) => request(axios, basePath));
},
};
};
@ -183,13 +177,6 @@ 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
}
/**
@ -208,7 +195,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, requestParameters.regenerateTrickplay, options).then((request) => request(this.axios, this.basePath));
return ItemRefreshApiFp(this.configuration).refreshItem(requestParameters.itemId, requestParameters.metadataRefreshMode, requestParameters.imageRefreshMode, requestParameters.replaceAllMetadata, requestParameters.replaceAllImages, options).then((request) => request(this.axios, this.basePath));
}
}

View File

@ -17,7 +17,7 @@
import type { DeviceInfo } from './device-info';
/**
*
* Query result container.
* @export
* @interface DeviceInfoQueryResult
*/
@ -27,7 +27,7 @@ export interface DeviceInfoQueryResult {
* @type {Array<DeviceInfo>}
* @memberof DeviceInfoQueryResult
*/
'Items'?: Array<DeviceInfo> | null;
'Items'?: Array<DeviceInfo>;
/**
* Gets or sets the total number of records available.
* @type {number}

View File

@ -49,6 +49,12 @@ export interface LibraryOptionsResultDto {
* @memberof LibraryOptionsResultDto
*/
'LyricFetchers'?: Array<LibraryOptionInfoDto>;
/**
* Gets or sets the list of MediaSegment Providers.
* @type {Array<LibraryOptionInfoDto>}
* @memberof LibraryOptionsResultDto
*/
'MediaSegmentProviders'?: Array<LibraryOptionInfoDto>;
/**
* Gets or sets the type options.
* @type {Array<LibraryTypeOptionsDto>}

View File

@ -5,7 +5,7 @@
*/
/** The current API version of the generated client. */
export const API_VERSION = '10.10.3';
export const API_VERSION = '10.11.0';
/** The minimum supported server version. */
export const MINIMUM_VERSION = '10.9.0';