mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2025-09-04 01:42:44 +00:00
[2/3] update openapi spec: generate code
This updates the openapi spec and invokes the code generator to update to the Jellyfin 10.10.6 API. A big motivation to do this was because some mandatory fields have been made obsolete and are no longer included in responses. Sailfin tries to deserialize these mandatory fields and fails deserializing. It was evident in the list of sessions to control. The failing was a bit too gracefully in my opinion, it did not even show that an error occurred, nor was it logged anywhere. It took some time to debug.
This commit is contained in:
parent
eeb9183909
commit
d685b48ec1
504 changed files with 62190 additions and 41202 deletions
|
@ -48,7 +48,9 @@ namespace DTO {
|
|||
|
||||
class ExternalIdInfo {
|
||||
public:
|
||||
ExternalIdInfo(
|
||||
ExternalIdInfo(
|
||||
QString name,
|
||||
QString key,
|
||||
ExternalIdMediaType type
|
||||
);
|
||||
|
||||
|
@ -72,8 +74,6 @@ public:
|
|||
* @brief Gets or sets the display name of the external id provider (IE: IMDB, MusicBrainz, etc).
|
||||
*/
|
||||
void setName(QString newName);
|
||||
bool nameNull() const;
|
||||
void setNameNull();
|
||||
|
||||
/**
|
||||
* @brief Gets or sets the unique key for this id. This key should be unique across all providers.
|
||||
|
@ -83,8 +83,6 @@ public:
|
|||
* @brief Gets or sets the unique key for this id. This key should be unique across all providers.
|
||||
*/
|
||||
void setKey(QString newKey);
|
||||
bool keyNull() const;
|
||||
void setKeyNull();
|
||||
|
||||
|
||||
ExternalIdMediaType type() const;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue