Release v1.3.0

This commit is contained in:
2025-12-27 10:03:04 -03:00
parent 33d76d7a4e
commit dfa1dfb1c8
64 changed files with 3285 additions and 1329 deletions

View File

@@ -1,9 +1,9 @@
/*
* Tribufu API
*
* REST API to access Tribufu services.
* API to access Tribufu services.
*
* The version of the OpenAPI document: 1.1.0
* The version of the OpenAPI document: 1.3.0
* Contact: contact@tribufu.com
* Generated by: https://openapi-generator.tech
*/
@@ -17,8 +17,8 @@ pub struct Group {
pub id: Option<String>,
#[serde(rename = "uuid", skip_serializing_if = "Option::is_none")]
pub uuid: Option<uuid::Uuid>,
#[serde(rename = "name", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub name: Option<Option<String>>,
#[serde(rename = "name", deserialize_with = "Option::deserialize")]
pub name: Option<String>,
#[serde(rename = "tag", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub tag: Option<Option<String>>,
#[serde(rename = "description", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
@@ -48,11 +48,11 @@ pub struct Group {
}
impl Group {
pub fn new() -> Group {
pub fn new(name: Option<String>) -> Group {
Group {
id: None,
uuid: None,
name: None,
name,
tag: None,
description: None,
r#type: None,