Release v1.3.0

This commit is contained in:
2025-12-27 10:02:16 -03:00
parent 596fb5e642
commit ff962a166e
62 changed files with 545 additions and 1043 deletions

View File

@@ -4,7 +4,7 @@
* Tribufu API
* API to access Tribufu services.
*
* The version of the OpenAPI document: 1.2.0
* The version of the OpenAPI document: 1.3.0
* Contact: contact@tribufu.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -42,7 +42,7 @@ export interface Group {
* @type {string}
* @memberof Group
*/
tag: string | null;
tag?: string | null;
/**
*
* @type {string}
@@ -122,7 +122,6 @@ export interface Group {
*/
export function instanceOfGroup(value: object): value is Group {
if (!('name' in value) || value['name'] === undefined) return false;
if (!('tag' in value) || value['tag'] === undefined) return false;
return true;
}
@@ -139,7 +138,7 @@ export function GroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): Gro
'id': json['id'] == null ? undefined : json['id'],
'uuid': json['uuid'] == null ? undefined : json['uuid'],
'name': json['name'],
'tag': json['tag'],
'tag': json['tag'] == null ? undefined : json['tag'],
'description': json['description'] == null ? undefined : json['description'],
'type': json['type'] == null ? undefined : json['type'],
'privacy': json['privacy'] == null ? undefined : json['privacy'],