1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-08 18:52:45 +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:
Chris Josten 2025-03-13 02:39:07 +01:00
parent eeb9183909
commit d685b48ec1
504 changed files with 62190 additions and 41202 deletions

View file

@ -48,7 +48,14 @@ namespace DTO {
class CultureDto {
public: CultureDto();
public:
CultureDto(
QString name,
QString displayName,
QString twoLetterISOLanguageName,
QStringList threeLetterISOLanguageNames
);
CultureDto(const CultureDto &other);
/**
@ -62,44 +69,38 @@ public: CultureDto();
// Properties
/**
* @brief Gets or sets the name.
* @brief Gets the name.
*/
QString name() const;
/**
* @brief Gets or sets the name.
* @brief Gets the name.
*/
void setName(QString newName);
bool nameNull() const;
void setNameNull();
/**
* @brief Gets or sets the display name.
* @brief Gets the display name.
*/
QString displayName() const;
/**
* @brief Gets or sets the display name.
* @brief Gets the display name.
*/
void setDisplayName(QString newDisplayName);
bool displayNameNull() const;
void setDisplayNameNull();
/**
* @brief Gets or sets the name of the two letter ISO language.
* @brief Gets the name of the two letter ISO language.
*/
QString twoLetterISOLanguageName() const;
/**
* @brief Gets or sets the name of the two letter ISO language.
* @brief Gets the name of the two letter ISO language.
*/
void setTwoLetterISOLanguageName(QString newTwoLetterISOLanguageName);
bool twoLetterISOLanguageNameNull() const;
void setTwoLetterISOLanguageNameNull();
/**
* @brief Gets or sets the name of the three letter ISO language.
* @brief Gets the name of the three letter ISO language.
*/
QString threeLetterISOLanguageName() const;
/**
* @brief Gets or sets the name of the three letter ISO language.
* @brief Gets the name of the three letter ISO language.
*/
void setThreeLetterISOLanguageName(QString newThreeLetterISOLanguageName);
bool threeLetterISOLanguageNameNull() const;
@ -109,8 +110,6 @@ public: CultureDto();
QStringList threeLetterISOLanguageNames() const;
void setThreeLetterISOLanguageNames(QStringList newThreeLetterISOLanguageNames);
bool threeLetterISOLanguageNamesNull() const;
void setThreeLetterISOLanguageNamesNull();
protected:
@ -120,7 +119,9 @@ protected:
QString m_threeLetterISOLanguageName;
QStringList m_threeLetterISOLanguageNames;
private:
// Private constructor which generates an invalid object, for use withing CultureDto::fromJson();
CultureDto();
};