Release v1.2.0

This commit is contained in:
Guilherme Werner 2025-08-09 20:29:17 -03:00
parent 1f73b2b509
commit 596fb5e642
55 changed files with 3692 additions and 1150 deletions

View file

@ -2,9 +2,9 @@
/* eslint-disable */
/**
* 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.2.0
* Contact: contact@tribufu.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@ -30,7 +30,7 @@ export interface GameServerCluster {
* @type {string}
* @memberof GameServerCluster
*/
name?: string | null;
name: string | null;
/**
*
* @type {string}
@ -109,6 +109,7 @@ export interface GameServerCluster {
* Check if a given object implements the GameServerCluster interface.
*/
export function instanceOfGameServerCluster(value: object): value is GameServerCluster {
if (!('name' in value) || value['name'] === undefined) return false;
return true;
}
@ -123,7 +124,7 @@ export function GameServerClusterFromJSONTyped(json: any, ignoreDiscriminator: b
return {
'id': json['id'] == null ? undefined : json['id'],
'name': json['name'] == null ? undefined : json['name'],
'name': json['name'],
'description': json['description'] == null ? undefined : json['description'],
'gameId': json['game_id'] == null ? undefined : json['game_id'],
'websiteUrl': json['website_url'] == null ? undefined : json['website_url'],