@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
51 lines (50 loc) • 1.84 kB
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*
* Jellyfin API
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/**
* These represent sort orders.
* @export
* @enum {string}
*/
export declare const ItemSortBy: {
readonly Default: "Default";
readonly AiredEpisodeOrder: "AiredEpisodeOrder";
readonly Album: "Album";
readonly AlbumArtist: "AlbumArtist";
readonly Artist: "Artist";
readonly DateCreated: "DateCreated";
readonly OfficialRating: "OfficialRating";
readonly DatePlayed: "DatePlayed";
readonly PremiereDate: "PremiereDate";
readonly StartDate: "StartDate";
readonly SortName: "SortName";
readonly Name: "Name";
readonly Random: "Random";
readonly Runtime: "Runtime";
readonly CommunityRating: "CommunityRating";
readonly ProductionYear: "ProductionYear";
readonly PlayCount: "PlayCount";
readonly CriticRating: "CriticRating";
readonly IsFolder: "IsFolder";
readonly IsUnplayed: "IsUnplayed";
readonly IsPlayed: "IsPlayed";
readonly SeriesSortName: "SeriesSortName";
readonly VideoBitRate: "VideoBitRate";
readonly AirTime: "AirTime";
readonly Studio: "Studio";
readonly IsFavoriteOrLiked: "IsFavoriteOrLiked";
readonly DateLastContentAdded: "DateLastContentAdded";
readonly SeriesDatePlayed: "SeriesDatePlayed";
readonly ParentIndexNumber: "ParentIndexNumber";
readonly IndexNumber: "IndexNumber";
readonly SimilarityScore: "SimilarityScore";
readonly SearchScore: "SearchScore";
};
export type ItemSortBy = typeof ItemSortBy[keyof typeof ItemSortBy];