75 lines
2.7 KiB
TypeScript
75 lines
2.7 KiB
TypeScript
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* Jellyfin API
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 10.8.9
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
import * as runtime from '../runtime';
|
|
import type {
|
|
ProblemDetails,
|
|
} from '../models';
|
|
import {
|
|
ProblemDetailsFromJSON,
|
|
ProblemDetailsToJSON,
|
|
} from '../models';
|
|
|
|
export interface GetAttachmentRequest {
|
|
videoId: string;
|
|
mediaSourceId: string;
|
|
index: number;
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
export class VideoAttachmentsApi extends runtime.BaseAPI {
|
|
|
|
/**
|
|
* Get video attachment.
|
|
*/
|
|
async getAttachmentRaw(requestParameters: GetAttachmentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Blob>> {
|
|
if (requestParameters.videoId === null || requestParameters.videoId === undefined) {
|
|
throw new runtime.RequiredError('videoId','Required parameter requestParameters.videoId was null or undefined when calling getAttachment.');
|
|
}
|
|
|
|
if (requestParameters.mediaSourceId === null || requestParameters.mediaSourceId === undefined) {
|
|
throw new runtime.RequiredError('mediaSourceId','Required parameter requestParameters.mediaSourceId was null or undefined when calling getAttachment.');
|
|
}
|
|
|
|
if (requestParameters.index === null || requestParameters.index === undefined) {
|
|
throw new runtime.RequiredError('index','Required parameter requestParameters.index was null or undefined when calling getAttachment.');
|
|
}
|
|
|
|
const queryParameters: any = {};
|
|
|
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
|
|
const response = await this.request({
|
|
path: `/Videos/{videoId}/{mediaSourceId}/Attachments/{index}`.replace(`{${"videoId"}}`, encodeURIComponent(String(requestParameters.videoId))).replace(`{${"mediaSourceId"}}`, encodeURIComponent(String(requestParameters.mediaSourceId))).replace(`{${"index"}}`, encodeURIComponent(String(requestParameters.index))),
|
|
method: 'GET',
|
|
headers: headerParameters,
|
|
query: queryParameters,
|
|
}, initOverrides);
|
|
|
|
return new runtime.BlobApiResponse(response);
|
|
}
|
|
|
|
/**
|
|
* Get video attachment.
|
|
*/
|
|
async getAttachment(requestParameters: GetAttachmentRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Blob> {
|
|
const response = await this.getAttachmentRaw(requestParameters, initOverrides);
|
|
return await response.value();
|
|
}
|
|
|
|
}
|