1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-08 10:42:46 +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

@ -32,9 +32,11 @@
#include <QJsonObject>
#include <QJsonValue>
#include <QString>
#include <QList>
#include <QStringList>
#include <optional>
#include "JellyfinQt/dto/mediaupdateinfopathdto.h"
#include "JellyfinQt/support/jsonconv.h"
namespace Jellyfin {
@ -46,7 +48,11 @@ namespace DTO {
class MediaUpdateInfoDto {
public: MediaUpdateInfoDto();
public:
MediaUpdateInfoDto(
QList<MediaUpdateInfoPathDto> updates
);
MediaUpdateInfoDto(const MediaUpdateInfoDto &other);
/**
@ -60,35 +66,21 @@ public: MediaUpdateInfoDto();
// Properties
/**
* @brief Gets or sets media path.
* @brief Gets or sets the list of updates.
*/
QString path() const;
QList<MediaUpdateInfoPathDto> updates() const;
/**
* @brief Gets or sets media path.
* @brief Gets or sets the list of updates.
*/
void setPath(QString newPath);
bool pathNull() const;
void setPathNull();
/**
* @brief Gets or sets media update type.
Created, Modified, Deleted.
*/
QString updateType() const;
/**
* @brief Gets or sets media update type.
Created, Modified, Deleted.
*/
void setUpdateType(QString newUpdateType);
bool updateTypeNull() const;
void setUpdateTypeNull();
void setUpdates(QList<MediaUpdateInfoPathDto> newUpdates);
protected:
QString m_path;
QString m_updateType;
QList<MediaUpdateInfoPathDto> m_updates;
private:
// Private constructor which generates an invalid object, for use withing MediaUpdateInfoDto::fromJson();
MediaUpdateInfoDto();
};