Skip to content

Commit 66bdbbe

Browse files
authored
Merge pull request #928 from jellyfin/openapi-update-0
2 parents a12e2c2 + cf18488 commit 66bdbbe

File tree

6 files changed

+79
-8
lines changed

6 files changed

+79
-8
lines changed

openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:b4d512dcbb967e1f6f5dbfed769d1d00c5ae5abfe82781b73df1966c79fc274d
3-
size 1015856
2+
oid sha256:52563bf142ccefad78d20fe49f2d047ec58b3ce59296ea08a81653c5260b5c48
3+
size 1016187

src/generated-client/.openapi-generator/FILES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ models/transcode-seek-info.ts
394394
models/transcoding-info.ts
395395
models/transcoding-profile.ts
396396
models/transport-stream-timestamp.ts
397-
models/trickplay-info.ts
397+
models/trickplay-info-dto.ts
398398
models/trickplay-options.ts
399399
models/trickplay-scan-behavior.ts
400400
models/tuner-channel-mapping.ts

src/generated-client/models/base-item-dto.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ import type { PlayAccess } from './play-access';
7474
import type { ProgramAudio } from './program-audio';
7575
// May contain unused imports in some cases
7676
// @ts-ignore
77-
import type { TrickplayInfo } from './trickplay-info';
77+
import type { TrickplayInfoDto } from './trickplay-info-dto';
7878
// May contain unused imports in some cases
7979
// @ts-ignore
8080
import type { UserItemDataDto } from './user-item-data-dto';
@@ -717,10 +717,10 @@ export interface BaseItemDto {
717717
'Chapters'?: Array<ChapterInfo> | null;
718718
/**
719719
* Gets or sets the trickplay manifest.
720-
* @type {{ [key: string]: { [key: string]: TrickplayInfo; }; }}
720+
* @type {{ [key: string]: { [key: string]: TrickplayInfoDto; }; }}
721721
* @memberof BaseItemDto
722722
*/
723-
'Trickplay'?: { [key: string]: { [key: string]: TrickplayInfo; }; } | null;
723+
'Trickplay'?: { [key: string]: { [key: string]: TrickplayInfoDto; }; } | null;
724724
/**
725725
*
726726
* @type {LocationType}

src/generated-client/models/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ export * from './transcode-seek-info';
324324
export * from './transcoding-info';
325325
export * from './transcoding-profile';
326326
export * from './transport-stream-timestamp';
327-
export * from './trickplay-info';
327+
export * from './trickplay-info-dto';
328328
export * from './trickplay-options';
329329
export * from './trickplay-scan-behavior';
330330
export * from './tuner-channel-mapping';

src/generated-client/models/lyric-line-cue.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,17 @@
2020
*/
2121
export interface LyricLineCue {
2222
/**
23-
* Gets the character index of the lyric.
23+
* Gets the start character index of the cue.
2424
* @type {number}
2525
* @memberof LyricLineCue
2626
*/
2727
'Position'?: number;
28+
/**
29+
* Gets the end character index of the cue.
30+
* @type {number}
31+
* @memberof LyricLineCue
32+
*/
33+
'EndPosition'?: number;
2834
/**
2935
* Gets the timestamp the lyric is synced to in ticks.
3036
* @type {number}
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
/* tslint:disable */
2+
/* eslint-disable */
3+
/**
4+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5+
* Do not edit the class manually.
6+
*
7+
* Jellyfin API
8+
*
9+
* This Source Code Form is subject to the terms of the Mozilla Public
10+
* License, v. 2.0. If a copy of the MPL was not distributed with this
11+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
12+
*/
13+
14+
15+
16+
/**
17+
* The trickplay api model.
18+
* @export
19+
* @interface TrickplayInfoDto
20+
*/
21+
export interface TrickplayInfoDto {
22+
/**
23+
* Gets the width of an individual thumbnail.
24+
* @type {number}
25+
* @memberof TrickplayInfoDto
26+
*/
27+
'Width'?: number;
28+
/**
29+
* Gets the height of an individual thumbnail.
30+
* @type {number}
31+
* @memberof TrickplayInfoDto
32+
*/
33+
'Height'?: number;
34+
/**
35+
* Gets the amount of thumbnails per row.
36+
* @type {number}
37+
* @memberof TrickplayInfoDto
38+
*/
39+
'TileWidth'?: number;
40+
/**
41+
* Gets the amount of thumbnails per column.
42+
* @type {number}
43+
* @memberof TrickplayInfoDto
44+
*/
45+
'TileHeight'?: number;
46+
/**
47+
* Gets the total amount of non-black thumbnails.
48+
* @type {number}
49+
* @memberof TrickplayInfoDto
50+
*/
51+
'ThumbnailCount'?: number;
52+
/**
53+
* Gets the interval in milliseconds between each trickplay thumbnail.
54+
* @type {number}
55+
* @memberof TrickplayInfoDto
56+
*/
57+
'Interval'?: number;
58+
/**
59+
* Gets the peak bandwidth usage in bits per second.
60+
* @type {number}
61+
* @memberof TrickplayInfoDto
62+
*/
63+
'Bandwidth'?: number;
64+
}
65+

0 commit comments

Comments
 (0)