Added vue from groups
This commit is contained in:
@@ -1,21 +1,17 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import {CreateUserGroupDto} from './create-user-group-dto';
|
||||
import { CreateUserGroupDto } from './create-user-group-dto';
|
||||
|
||||
|
||||
export interface CreateGroupDto {
|
||||
export interface CreateGroupDto {
|
||||
label: string;
|
||||
title: string;
|
||||
description: string;
|
||||
duration: number;
|
||||
voteDuration?: number | null;
|
||||
userGroups?: Array<CreateUserGroupDto> | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateMessageDto {
|
||||
export interface CreateMessageDto {
|
||||
libelle: string;
|
||||
sendDate: string;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateUserDto {
|
||||
export interface CreateUserDto {
|
||||
firstName: string;
|
||||
name: string;
|
||||
username: string;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface CreateUserGroupDto {
|
||||
export interface CreateUserGroupDto {
|
||||
userId?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -12,7 +12,7 @@
|
||||
/**
|
||||
* the dto used to send an error response to the client
|
||||
*/
|
||||
export interface ErrorResponse {
|
||||
export interface ErrorResponse {
|
||||
/**
|
||||
* the http status code sent to the client. default is 400.
|
||||
*/
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetAchievementDto {
|
||||
export interface GetAchievementDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
description?: string | null;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetDesignationDto {
|
||||
export interface GetDesignationDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetFriendDto {
|
||||
export interface GetFriendDto {
|
||||
friendId?: number;
|
||||
username?: string | null;
|
||||
score?: number;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetFriendRequestDto {
|
||||
export interface GetFriendRequestDto {
|
||||
userId?: number;
|
||||
username?: string | null;
|
||||
score?: number;
|
||||
|
||||
@@ -1,23 +1,19 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import {GetMessageDto} from './get-message-dto';
|
||||
import {GetUserGroupDto} from './get-user-group-dto';
|
||||
import { GetMessageDto } from './get-message-dto';
|
||||
import { GetUserGroupDto } from './get-user-group-dto';
|
||||
|
||||
|
||||
export interface GetGroupDetailsDto {
|
||||
export interface GetGroupDetailsDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
isFinished?: boolean;
|
||||
title?: string | null;
|
||||
description?: string | null;
|
||||
duration?: number;
|
||||
creationDate?: string;
|
||||
messages?: Array<GetMessageDto> | null;
|
||||
users?: Array<GetUserGroupDto> | null;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,9 +9,8 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetGroupDto {
|
||||
export interface GetGroupDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
isFinished?: boolean;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetGroupRankingDto {
|
||||
userId?: number;
|
||||
username?: string | null;
|
||||
score?: number;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetMessageDto {
|
||||
export interface GetMessageDto {
|
||||
id?: number;
|
||||
libelle?: string | null;
|
||||
sendDate?: string;
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface GetProofDto {
|
||||
userId?: number;
|
||||
username?: string | null;
|
||||
proof?: string | null;
|
||||
score?: number;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,11 +9,10 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetRandomChallengeDto {
|
||||
export interface GetRandomChallengeDto {
|
||||
id?: number;
|
||||
label?: string | null;
|
||||
libelle?: string | null;
|
||||
duration?: number;
|
||||
isAlreadyPast?: boolean;
|
||||
generatedAt?: string | null;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetTokenDto {
|
||||
export interface GetTokenDto {
|
||||
token?: string | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,10 +9,9 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetUserChallengeDto {
|
||||
export interface GetUserChallengeDto {
|
||||
challengeTitle?: string | null;
|
||||
challengeDescription?: string | null;
|
||||
challengeDuration?: number;
|
||||
challengeStartDate?: string;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import {GetUserStatsDto} from './get-user-stats-dto';
|
||||
import { GetUserStatsDto } from './get-user-stats-dto';
|
||||
|
||||
|
||||
export interface GetUserDetailsDto {
|
||||
export interface GetUserDetailsDto {
|
||||
id?: number;
|
||||
firstName?: string | null;
|
||||
name?: string | null;
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import {GetUserStatsDto} from './get-user-stats-dto';
|
||||
import { GetUserStatsDto } from './get-user-stats-dto';
|
||||
|
||||
|
||||
export interface GetUserDto {
|
||||
export interface GetUserDto {
|
||||
id?: number;
|
||||
firstName?: string | null;
|
||||
name?: string | null;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,10 +9,9 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetUserGroupDto {
|
||||
export interface GetUserGroupDto {
|
||||
id?: number;
|
||||
username?: string | null;
|
||||
grade?: string | null;
|
||||
score?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetUserProofDto {
|
||||
export interface GetUserProofDto {
|
||||
proof?: string | null;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,13 +9,10 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface GetUserStatsDto {
|
||||
export interface GetUserStatsDto {
|
||||
id?: number;
|
||||
score?: number;
|
||||
totalWin?: number;
|
||||
totalLikes?: number;
|
||||
totalChallenge?: number;
|
||||
totalPodium?: number;
|
||||
totalBonusChallenge?: number;
|
||||
series?: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface LoginDto {
|
||||
export interface LoginDto {
|
||||
username: string;
|
||||
password: string;
|
||||
}
|
||||
|
||||
@@ -9,9 +9,8 @@ export * from './get-friend-dto';
|
||||
export * from './get-friend-request-dto';
|
||||
export * from './get-group-details-dto';
|
||||
export * from './get-group-dto';
|
||||
export * from './get-group-ranking-dto';
|
||||
export * from './get-message-dto';
|
||||
export * from './get-proof-dto';
|
||||
export * from './get-post-dto';
|
||||
export * from './get-random-challenge-dto';
|
||||
export * from './get-token-dto';
|
||||
export * from './get-user-challenge-dto';
|
||||
@@ -25,5 +24,3 @@ export * from './patch-user-designation-dto';
|
||||
export * from './patch-user-password-dto';
|
||||
export * from './refresh-token-dto';
|
||||
export * from './update-user-dto';
|
||||
export * from './user-proof-request';
|
||||
export * from './user-vote-request';
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface PatchUserDesignationDto {
|
||||
export interface PatchUserDesignationDto {
|
||||
designationId: number;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface PatchUserPasswordDto {
|
||||
export interface PatchUserPasswordDto {
|
||||
password: string;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface RefreshTokenDto {
|
||||
export interface RefreshTokenDto {
|
||||
token: string;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
@@ -9,7 +9,7 @@
|
||||
*/
|
||||
|
||||
|
||||
export interface UpdateUserDto {
|
||||
export interface UpdateUserDto {
|
||||
firstName: string;
|
||||
name: string;
|
||||
username: string;
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UserProofRequest {
|
||||
proof?: Blob | null;
|
||||
}
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
/**
|
||||
* BeReadyBackend
|
||||
*
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
|
||||
|
||||
export interface UserVoteRequest {
|
||||
votedProofId?: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user