1241 lines
53 KiB
TypeScript
1241 lines
53 KiB
TypeScript
/**
|
|
* BeReadyBackend
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
/* tslint:disable:no-unused-variable member-ordering */
|
|
|
|
import {Inject, Injectable, Optional} from '@angular/core';
|
|
import {
|
|
HttpClient, HttpHeaders, HttpParams,
|
|
HttpResponse, HttpEvent, HttpContext
|
|
} from '@angular/common/http';
|
|
import {Observable} from 'rxjs';
|
|
import {OpenApiHttpParams, QueryParamStyle} from '../query.params';
|
|
|
|
// @ts-ignore
|
|
import {CreateGroupDto} from '../model/create-group-dto';
|
|
// @ts-ignore
|
|
import {ErrorResponse} from '../model/error-response';
|
|
// @ts-ignore
|
|
import {GetGroupDetailsDto} from '../model/get-group-details-dto';
|
|
// @ts-ignore
|
|
import {GetGroupDto} from '../model/get-group-dto';
|
|
// @ts-ignore
|
|
import {GetGroupRankingDto} from '../model/get-group-ranking-dto';
|
|
// @ts-ignore
|
|
import {GetProofDto} from '../model/get-proof-dto';
|
|
// @ts-ignore
|
|
import {GetUserGroupDto} from '../model/get-user-group-dto';
|
|
// @ts-ignore
|
|
import {UserProofRequest} from '../model/user-proof-request';
|
|
// @ts-ignore
|
|
import {UserVoteRequest} from '../model/user-vote-request';
|
|
|
|
// @ts-ignore
|
|
import {BASE_PATH, COLLECTION_FORMATS} from '../variables';
|
|
import {Configuration} from '../configuration';
|
|
import {BaseService} from '../api.base.service';
|
|
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class GroupsService extends BaseService {
|
|
|
|
constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string | string[], @Optional() configuration?: Configuration) {
|
|
super(basePath, configuration);
|
|
}
|
|
|
|
/**
|
|
* @endpoint post /API/Groups/{groupId}/Users/{userId}
|
|
* @param groupId
|
|
* @param userId
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (groupId === null || groupId === undefined) {
|
|
throw new Error('Required parameter groupId was null or undefined when calling addUserToGroupEndpoint.');
|
|
}
|
|
if (userId === null || userId === undefined) {
|
|
throw new Error('Required parameter userId was null or undefined when calling addUserToGroupEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "groupId",
|
|
value: groupId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Users/${this.configuration.encodeParam({
|
|
name: "userId",
|
|
value: userId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint post /API/Groups
|
|
* @param createGroupDto
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/problem+json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/problem+json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/problem+json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: 'application/problem+json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (createGroupDto === null || createGroupDto === undefined) {
|
|
throw new Error('Required parameter createGroupDto was null or undefined when calling createGroupEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
'application/problem+json'
|
|
]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
// to determine the Content-Type header
|
|
const consumes: string[] = [
|
|
'application/json'
|
|
];
|
|
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
|
|
if (httpContentTypeSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
}
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
body: createGroupDto,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint delete /API/Groups/{id}
|
|
* @param id
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public deleteGroupEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public deleteGroupEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public deleteGroupEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public deleteGroupEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (id === null || id === undefined) {
|
|
throw new Error('Required parameter id was null or undefined when calling deleteGroupEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "id",
|
|
value: id,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint delete /API/Groups/{groupId}/Users/{userId}
|
|
* @param groupId
|
|
* @param userId
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (groupId === null || groupId === undefined) {
|
|
throw new Error('Required parameter groupId was null or undefined when calling deleteUserFromGroupEndpoint.');
|
|
}
|
|
if (userId === null || userId === undefined) {
|
|
throw new Error('Required parameter userId was null or undefined when calling deleteUserFromGroupEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "groupId",
|
|
value: groupId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Users/${this.configuration.encodeParam({
|
|
name: "userId",
|
|
value: userId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint get /API/Groups/{id}/Users
|
|
* @param id
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public getAllGroupUsersEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<Array<GetUserGroupDto>>;
|
|
public getAllGroupUsersEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<Array<GetUserGroupDto>>>;
|
|
public getAllGroupUsersEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<Array<GetUserGroupDto>>>;
|
|
public getAllGroupUsersEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (id === null || id === undefined) {
|
|
throw new Error('Required parameter id was null or undefined when calling getAllGroupUsersEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
'application/json'
|
|
]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "id",
|
|
value: id,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Users`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<Array<GetUserGroupDto>>('get', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint get /API/Groups/Users
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public getAllGroupsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<Array<GetGroupDto>>;
|
|
public getAllGroupsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<Array<GetGroupDto>>>;
|
|
public getAllGroupsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<Array<GetGroupDto>>>;
|
|
public getAllGroupsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
'application/json'
|
|
]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/Users`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<Array<GetGroupDto>>('get', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint get /API/Groups/{id}/Proofs
|
|
* @param id
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public getAllProofsEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<Array<GetProofDto>>;
|
|
public getAllProofsEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<Array<GetProofDto>>>;
|
|
public getAllProofsEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<Array<GetProofDto>>>;
|
|
public getAllProofsEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (id === null || id === undefined) {
|
|
throw new Error('Required parameter id was null or undefined when calling getAllProofsEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
'application/json'
|
|
]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "id",
|
|
value: id,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Proofs`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<Array<GetProofDto>>('get', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint get /API/Groups/{id}
|
|
* @param id
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public getGroupDetailsEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<GetGroupDetailsDto>;
|
|
public getGroupDetailsEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<GetGroupDetailsDto>>;
|
|
public getGroupDetailsEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<GetGroupDetailsDto>>;
|
|
public getGroupDetailsEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (id === null || id === undefined) {
|
|
throw new Error('Required parameter id was null or undefined when calling getGroupDetailsEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
'application/json'
|
|
]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "id",
|
|
value: id,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<GetGroupDetailsDto>('get', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint get /API/Groups/{id}/GroupRank
|
|
* @param id
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public getGroupRankingEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<Array<GetGroupRankingDto>>;
|
|
public getGroupRankingEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<Array<GetGroupRankingDto>>>;
|
|
public getGroupRankingEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<Array<GetGroupRankingDto>>>;
|
|
public getGroupRankingEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: 'application/json',
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (id === null || id === undefined) {
|
|
throw new Error('Required parameter id was null or undefined when calling getGroupRankingEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
|
'application/json'
|
|
]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "id",
|
|
value: id,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/GroupRank`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<Array<GetGroupRankingDto>>('get', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint patch /API/Groups/{groupId}/Status
|
|
* @param groupId
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public patchGroupStatusEndpoint(groupId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public patchGroupStatusEndpoint(groupId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public patchGroupStatusEndpoint(groupId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public patchGroupStatusEndpoint(groupId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (groupId === null || groupId === undefined) {
|
|
throw new Error('Required parameter groupId was null or undefined when calling patchGroupStatusEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "groupId",
|
|
value: groupId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Status`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint patch /API/Groups/{groupId}/Users/Proof
|
|
* @param groupId
|
|
* @param userProofRequest
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public patchGroupUserProofEndpoint(groupId: number, userProofRequest: UserProofRequest, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public patchGroupUserProofEndpoint(groupId: number, userProofRequest: UserProofRequest, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public patchGroupUserProofEndpoint(groupId: number, userProofRequest: UserProofRequest, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public patchGroupUserProofEndpoint(groupId: number, userProofRequest: UserProofRequest, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (groupId === null || groupId === undefined) {
|
|
throw new Error('Required parameter groupId was null or undefined when calling patchGroupUserProofEndpoint.');
|
|
}
|
|
if (userProofRequest === null || userProofRequest === undefined) {
|
|
throw new Error('Required parameter userProofRequest was null or undefined when calling patchGroupUserProofEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
// to determine the Content-Type header
|
|
const consumes: string[] = [
|
|
'application/json'
|
|
];
|
|
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
|
|
if (httpContentTypeSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
}
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "groupId",
|
|
value: groupId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Users/Proof`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
body: userProofRequest,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint patch /API/Groups/{groupId}/Users/{userId}/Role
|
|
* @param groupId
|
|
* @param userId
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (groupId === null || groupId === undefined) {
|
|
throw new Error('Required parameter groupId was null or undefined when calling patchGroupUserRoleEndpoint.');
|
|
}
|
|
if (userId === null || userId === undefined) {
|
|
throw new Error('Required parameter userId was null or undefined when calling patchGroupUserRoleEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "groupId",
|
|
value: groupId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Users/${this.configuration.encodeParam({
|
|
name: "userId",
|
|
value: userId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Role`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint patch /API/Groups/{groupId}/Users/Vote
|
|
* @param groupId
|
|
* @param userVoteRequest
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public patchVoteEndpoint(groupId: number, userVoteRequest: UserVoteRequest, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public patchVoteEndpoint(groupId: number, userVoteRequest: UserVoteRequest, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public patchVoteEndpoint(groupId: number, userVoteRequest: UserVoteRequest, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public patchVoteEndpoint(groupId: number, userVoteRequest: UserVoteRequest, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (groupId === null || groupId === undefined) {
|
|
throw new Error('Required parameter groupId was null or undefined when calling patchVoteEndpoint.');
|
|
}
|
|
if (userVoteRequest === null || userVoteRequest === undefined) {
|
|
throw new Error('Required parameter userVoteRequest was null or undefined when calling patchVoteEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
// to determine the Content-Type header
|
|
const consumes: string[] = [
|
|
'application/json'
|
|
];
|
|
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
|
|
if (httpContentTypeSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
}
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "groupId",
|
|
value: groupId,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Users/Vote`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
body: userVoteRequest,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @endpoint post /API/Groups/{id}/Vote
|
|
* @param id
|
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
* @param reportProgress flag to report request and response progress.
|
|
* @param options additional options
|
|
*/
|
|
public startVoteEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any>;
|
|
public startVoteEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpResponse<any>>;
|
|
public startVoteEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<HttpEvent<any>>;
|
|
public startVoteEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
httpHeaderAccept?: undefined,
|
|
context?: HttpContext,
|
|
transferCache?: boolean
|
|
}): Observable<any> {
|
|
if (id === null || id === undefined) {
|
|
throw new Error('Required parameter id was null or undefined when calling startVoteEndpoint.');
|
|
}
|
|
|
|
let localVarHeaders = this.defaultHeaders;
|
|
|
|
// authentication (JWTBearerAuth) required
|
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
|
|
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
}
|
|
|
|
const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();
|
|
|
|
const localVarTransferCache: boolean = options?.transferCache ?? true;
|
|
|
|
|
|
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
if (localVarHttpHeaderAcceptSelected) {
|
|
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
responseType_ = 'text';
|
|
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
responseType_ = 'json';
|
|
} else {
|
|
responseType_ = 'blob';
|
|
}
|
|
}
|
|
|
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
|
name: "id",
|
|
value: id,
|
|
in: "path",
|
|
style: "simple",
|
|
explode: false,
|
|
dataType: "number",
|
|
dataFormat: "int32"
|
|
})}/Vote`;
|
|
const {basePath, withCredentials} = this.configuration;
|
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
|
{
|
|
context: localVarHttpContext,
|
|
responseType: <any>responseType_,
|
|
...(withCredentials ? {withCredentials} : {}),
|
|
headers: localVarHeaders,
|
|
observe: observe,
|
|
...(localVarTransferCache !== undefined ? {transferCache: localVarTransferCache} : {}),
|
|
reportProgress: reportProgress
|
|
}
|
|
);
|
|
}
|
|
|
|
}
|