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).
@ -39,7 +39,7 @@ export interface GroupGame {
* @type {string}
* @memberof GroupGame
*/
groupId?: string;
groupId: string;
/**
*
* @type {Group}
@ -82,6 +82,7 @@ export interface GroupGame {
* Check if a given object implements the GroupGame interface.
*/
export function instanceOfGroupGame(value: object): value is GroupGame {
if (!('groupId' in value) || value['groupId'] === undefined) return false;
return true;
}
@ -95,7 +96,7 @@ export function GroupGameFromJSONTyped(json: any, ignoreDiscriminator: boolean):
}
return {
'groupId': json['group_id'] == null ? undefined : json['group_id'],
'groupId': json['group_id'],
'group': json['group'] == null ? undefined : GroupFromJSON(json['group']),
'applicationId': json['application_id'] == null ? undefined : json['application_id'],
'application': json['application'] == null ? undefined : ApplicationFromJSON(json['application']),