Added all setting's group (except add user to group)
This commit is contained in:
Generated
+10
@@ -22,6 +22,7 @@
|
|||||||
"@openapitools/openapi-generator-cli": "^2.30.2",
|
"@openapitools/openapi-generator-cli": "^2.30.2",
|
||||||
"@tailwindcss/postcss": "^4.2.1",
|
"@tailwindcss/postcss": "^4.2.1",
|
||||||
"browser-image-compression": "^2.0.2",
|
"browser-image-compression": "^2.0.2",
|
||||||
|
"moment": "^2.30.1",
|
||||||
"postcss": "^8.5.8",
|
"postcss": "^8.5.8",
|
||||||
"rimraf": "^6.1.3",
|
"rimraf": "^6.1.3",
|
||||||
"rxjs": "~7.8.0",
|
"rxjs": "~7.8.0",
|
||||||
@@ -7869,6 +7870,15 @@
|
|||||||
"node": ">= 18"
|
"node": ">= 18"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/moment": {
|
||||||
|
"version": "2.30.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
|
||||||
|
"integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": "*"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/mrmime": {
|
"node_modules/mrmime": {
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz",
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
"@openapitools/openapi-generator-cli": "^2.30.2",
|
"@openapitools/openapi-generator-cli": "^2.30.2",
|
||||||
"@tailwindcss/postcss": "^4.2.1",
|
"@tailwindcss/postcss": "^4.2.1",
|
||||||
"browser-image-compression": "^2.0.2",
|
"browser-image-compression": "^2.0.2",
|
||||||
|
"moment": "^2.30.1",
|
||||||
"postcss": "^8.5.8",
|
"postcss": "^8.5.8",
|
||||||
"rimraf": "^6.1.3",
|
"rimraf": "^6.1.3",
|
||||||
"rxjs": "~7.8.0",
|
"rxjs": "~7.8.0",
|
||||||
|
|||||||
@@ -3,12 +3,16 @@
|
|||||||
@if (groups().length) {
|
@if (groups().length) {
|
||||||
@for (group of groups(); track group.id; let i = $index) {
|
@for (group of groups(); track group.id; let i = $index) {
|
||||||
@if (i == groups().length - 1) {
|
@if (i == groups().length - 1) {
|
||||||
<ion-item lines="none" class="transition-all duration-200 active:[--background:#DBD8D7]">
|
<ion-item lines="none"
|
||||||
|
class="transition-all duration-200 active:[--background:#DBD8D7]"
|
||||||
|
(click)="selectedGroup(group.id)">
|
||||||
<p class="text-sm text-gray-600">{{ group.label }}</p>
|
<p class="text-sm text-gray-600">{{ group.label }}</p>
|
||||||
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
|
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
} @else {
|
} @else {
|
||||||
<ion-item lines="full" class="transition-all duration-200 active:[--background:#DBD8D7]">
|
<ion-item lines="full"
|
||||||
|
class="transition-all duration-200 active:[--background:#DBD8D7]"
|
||||||
|
(click)="selectedGroup(group.id)">
|
||||||
<p class="text-sm text-gray-600">{{ group.label }}</p>
|
<p class="text-sm text-gray-600">{{ group.label }}</p>
|
||||||
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
|
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
import {Component, input} from '@angular/core';
|
import {Component, inject, input, output} from '@angular/core';
|
||||||
import {IonicModule} from "@ionic/angular";
|
import {IonicModule, LoadingController, ToastController} from "@ionic/angular";
|
||||||
import {GetGroupDto} from "../../services/api";
|
import {GetGroupDetailsDto, GetGroupDto, GroupsService} from "../../services/api";
|
||||||
import {addIcons} from "ionicons";
|
import {addIcons} from "ionicons";
|
||||||
import {chatbubblesOutline, chevronForwardOutline} from "ionicons/icons";
|
import {chatbubblesOutline, chevronForwardOutline} from "ionicons/icons";
|
||||||
|
import {firstValueFrom} from "rxjs";
|
||||||
|
|
||||||
addIcons({
|
addIcons({
|
||||||
'group': chatbubblesOutline,
|
'group': chatbubblesOutline,
|
||||||
@@ -18,5 +19,32 @@ addIcons({
|
|||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class GroupsComponent {
|
export class GroupsComponent {
|
||||||
|
private groupsService = inject(GroupsService);
|
||||||
|
private toastCtrl = inject(ToastController);
|
||||||
|
private loadCtrl = inject(LoadingController);
|
||||||
|
|
||||||
groups = input.required<GetGroupDto[]>();
|
groups = input.required<GetGroupDto[]>();
|
||||||
|
|
||||||
|
group = output<GetGroupDetailsDto>();
|
||||||
|
|
||||||
|
async selectedGroup(id: number) {
|
||||||
|
const loading = await this.loadCtrl.create({
|
||||||
|
message: 'Chargement...',
|
||||||
|
spinner: 'lines-sharp-small'
|
||||||
|
});
|
||||||
|
await loading.present();
|
||||||
|
|
||||||
|
try {
|
||||||
|
const group = await firstValueFrom(this.groupsService.getGroupDetailsEndpoint(id));
|
||||||
|
this.group.emit(group);
|
||||||
|
} catch {
|
||||||
|
const toast = await this.toastCtrl.create({
|
||||||
|
message: 'Impossible de charger le groupe',
|
||||||
|
duration: 2000,
|
||||||
|
color: 'danger'
|
||||||
|
});
|
||||||
|
await toast.present();
|
||||||
|
}
|
||||||
|
await loading.dismiss();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,6 +37,13 @@
|
|||||||
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
|
<ion-icon slot="end" class="text-xl text-gray-400" name="chevron"></ion-icon>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
}
|
}
|
||||||
|
@case (5) {
|
||||||
|
<ion-item lines="full" class="transition-all duration-200 active:[--background:#DBD8D7]"
|
||||||
|
(click)="deleteUser()">
|
||||||
|
<p class="text-sm text-red-800">Supprimer mon compte</p>
|
||||||
|
<ion-icon slot="end" class="text-xl text-red-800" name="chevron"></ion-icon>
|
||||||
|
</ion-item>
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
import {Component, inject, output} from '@angular/core';
|
import {Component, inject, output} from '@angular/core';
|
||||||
import {IonicModule, LoadingController, NavController} from "@ionic/angular";
|
import {IonicModule, LoadingController, NavController, ToastController} from "@ionic/angular";
|
||||||
import {logOutOutline, chevronForwardOutline, chevronBack} from "ionicons/icons";
|
import {logOutOutline, chevronForwardOutline, chevronBack} from "ionicons/icons";
|
||||||
import {addIcons} from "ionicons";
|
import {addIcons} from "ionicons";
|
||||||
import {AuthManageService} from "../../services/auth-manage";
|
import {AuthManageService} from "../../services/auth-manage";
|
||||||
|
import {createFixResponseForZoneTests} from "@angular/cli/src/commands/mcp/tools/onpush-zoneless-migration/prompts";
|
||||||
|
import {firstValueFrom} from "rxjs";
|
||||||
|
import {UsersService} from "../../services/api";
|
||||||
|
|
||||||
addIcons({
|
addIcons({
|
||||||
'logout': logOutOutline,
|
'logout': logOutOutline,
|
||||||
@@ -22,8 +25,10 @@ export class SettingsOptionsComponent {
|
|||||||
private authManageService = inject(AuthManageService);
|
private authManageService = inject(AuthManageService);
|
||||||
private loadCtrl = inject(LoadingController);
|
private loadCtrl = inject(LoadingController);
|
||||||
private navCtrl = inject(NavController);
|
private navCtrl = inject(NavController);
|
||||||
|
private toastCtrl = inject(ToastController);
|
||||||
|
private usersService = inject(UsersService);
|
||||||
|
|
||||||
options = [1, 2, 3, 4, 5];
|
options = [1, 2, 3, 4, 5, 6];
|
||||||
|
|
||||||
navigate = output<'profile' | 'password' | 'designation' | 'gallery'>();
|
navigate = output<'profile' | 'password' | 'designation' | 'gallery'>();
|
||||||
|
|
||||||
@@ -39,4 +44,35 @@ export class SettingsOptionsComponent {
|
|||||||
|
|
||||||
await loading.dismiss();
|
await loading.dismiss();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async deleteUser(){
|
||||||
|
const loading = await this.loadCtrl.create({
|
||||||
|
message: 'Déconnexion en cours...',
|
||||||
|
spinner: 'lines-sharp-small'
|
||||||
|
});
|
||||||
|
await loading.present();
|
||||||
|
|
||||||
|
try {
|
||||||
|
await firstValueFrom(this.usersService.deleteUserEndpoint());
|
||||||
|
|
||||||
|
this.authManageService.logout();
|
||||||
|
await this.navCtrl.navigateRoot('/');
|
||||||
|
|
||||||
|
const toast = await this.toastCtrl.create({
|
||||||
|
message: 'Compte supprimé',
|
||||||
|
duration: 2000,
|
||||||
|
color: 'success'
|
||||||
|
});
|
||||||
|
await toast.present();
|
||||||
|
} catch {
|
||||||
|
const toast = await this.toastCtrl.create({
|
||||||
|
message: 'Suppression impossible',
|
||||||
|
duration: 2000,
|
||||||
|
color: 'danger'
|
||||||
|
});
|
||||||
|
await toast.present();
|
||||||
|
}
|
||||||
|
|
||||||
|
await loading.dismiss();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,22 @@
|
|||||||
<ion-header>
|
<ion-header>
|
||||||
<ion-toolbar>
|
<ion-toolbar>
|
||||||
|
@if (groupSelected()) {
|
||||||
|
<ion-buttons slot="start">
|
||||||
|
<ion-button fill="clear" (click)="backToHome()">
|
||||||
|
<ion-icon name="chevron-back"></ion-icon>
|
||||||
|
</ion-button>
|
||||||
|
</ion-buttons>
|
||||||
|
<ion-buttons slot="primary">
|
||||||
|
<ion-button fill="solid" style="--background: #F0EFE9;"
|
||||||
|
class="border border-gray-300 rounded-lg overflow-hidden"
|
||||||
|
(click)="groupInfo = true">
|
||||||
|
<ion-icon slot="icon-only" class="text-2xl text-gray-500" name="info"></ion-icon>
|
||||||
|
</ion-button>
|
||||||
|
</ion-buttons>
|
||||||
|
<ion-title>
|
||||||
|
{{ groupSelected().label }}
|
||||||
|
</ion-title>
|
||||||
|
} @else {
|
||||||
<ion-buttons slot="secondary">
|
<ion-buttons slot="secondary">
|
||||||
<ion-button fill="solid" style="--background: #F0EFE9;"
|
<ion-button fill="solid" style="--background: #F0EFE9;"
|
||||||
class="border border-gray-300 rounded-lg overflow-hidden"
|
class="border border-gray-300 rounded-lg overflow-hidden"
|
||||||
@@ -15,6 +32,7 @@
|
|||||||
</ion-button>
|
</ion-button>
|
||||||
</ion-buttons>
|
</ion-buttons>
|
||||||
<ion-title class="font-mono">BeReady</ion-title>
|
<ion-title class="font-mono">BeReady</ion-title>
|
||||||
|
}
|
||||||
</ion-toolbar>
|
</ion-toolbar>
|
||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
@@ -26,8 +44,14 @@
|
|||||||
|
|
||||||
<div class="mt-4">
|
<div class="mt-4">
|
||||||
<app-title-part textInfo="Groupes"></app-title-part>
|
<app-title-part textInfo="Groupes"></app-title-part>
|
||||||
<app-groups [groups]="groups()"></app-groups>
|
<app-groups [groups]="groups()" (group)="groupSelected.set($event)"></app-groups>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@if (groupSelected()){
|
||||||
|
<app-modal>
|
||||||
|
test
|
||||||
|
</app-modal>
|
||||||
|
}
|
||||||
</ion-content>
|
</ion-content>
|
||||||
|
|
||||||
<ion-modal [isOpen]="isModalOpen">
|
<ion-modal [isOpen]="isModalOpen">
|
||||||
@@ -121,3 +145,20 @@
|
|||||||
</ion-content>
|
</ion-content>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
</ion-modal>
|
</ion-modal>
|
||||||
|
|
||||||
|
|
||||||
|
<ion-modal [isOpen]="groupInfo">
|
||||||
|
<ng-template>
|
||||||
|
<ion-header>
|
||||||
|
<ion-toolbar>
|
||||||
|
<ion-title>Infos du groupe</ion-title>
|
||||||
|
<ion-buttons slot="start" style="--ion-color-primary: #0054E9;">
|
||||||
|
<ion-back-button default-href="" (click)="groupInfo = false"></ion-back-button>
|
||||||
|
</ion-buttons>
|
||||||
|
</ion-toolbar>
|
||||||
|
</ion-header>
|
||||||
|
<ion-content class="ion-padding" style="--background: #f7f6f2;">
|
||||||
|
<app-group-info [groupSelected]="groupSelected()"></app-group-info>
|
||||||
|
</ion-content>
|
||||||
|
</ng-template>
|
||||||
|
</ion-modal>
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
import {Component, inject, OnInit, signal} from '@angular/core';
|
import {Component, inject, OnInit, signal} from '@angular/core';
|
||||||
import {IonicModule, LoadingController, ModalController, ToastController} from "@ionic/angular";
|
import {IonicModule, LoadingController, NavController, ToastController} from "@ionic/angular";
|
||||||
import {addIcons} from "ionicons";
|
import {addIcons} from "ionicons";
|
||||||
import {personOutline, addOutline, settingsOutline} from "ionicons/icons";
|
import {personOutline, addOutline, settingsOutline, informationCircleOutline} from "ionicons/icons";
|
||||||
import {TitlePartComponent} from "../../components/title-part/title-part.component";
|
import {TitlePartComponent} from "../../components/title-part/title-part.component";
|
||||||
import {ChallengeCardComponent} from "../../components/challenge-card/challenge-card.component";
|
import {ChallengeCardComponent} from "../../components/challenge-card/challenge-card.component";
|
||||||
import {
|
import {
|
||||||
AchievementsService, CreateGroupDto,
|
AchievementsService, CreateGroupDto,
|
||||||
GetAchievementDto, GetGroupDto,
|
GetAchievementDto, GetGroupDetailsDto, GetGroupDto,
|
||||||
GetRandomChallengeDto,
|
GetRandomChallengeDto,
|
||||||
GetUserChallengeDto,
|
GetUserChallengeDto,
|
||||||
GetUserDetailsDto, GroupsService,
|
GetUserDetailsDto, GroupsService,
|
||||||
@@ -27,14 +27,16 @@ import {DesignationFormComponent} from "../../components/designation-form/design
|
|||||||
import {GalleryComponent} from "../../components/gallery/gallery.component";
|
import {GalleryComponent} from "../../components/gallery/gallery.component";
|
||||||
import {GroupsComponent} from "../../components/groups/groups.component";
|
import {GroupsComponent} from "../../components/groups/groups.component";
|
||||||
import {GroupFormComponent} from "../../components/group-form/group-form.component";
|
import {GroupFormComponent} from "../../components/group-form/group-form.component";
|
||||||
|
import {GroupInfoComponent} from "../../components/group-info/group-info.component";
|
||||||
|
|
||||||
addIcons({
|
addIcons({
|
||||||
'profile': personOutline,
|
'profile': personOutline,
|
||||||
'add': addOutline,
|
'add': addOutline,
|
||||||
'settings': settingsOutline,
|
'settings': settingsOutline,
|
||||||
|
'info': informationCircleOutline
|
||||||
});
|
});
|
||||||
|
|
||||||
type View = 'menu' | 'profile' | 'password' | 'designation' | 'gallery';
|
type View = 'menu' | 'profile' | 'password' | 'designation' | 'gallery' | 'group';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-home',
|
selector: 'app-home',
|
||||||
@@ -56,6 +58,7 @@ type View = 'menu' | 'profile' | 'password' | 'designation' | 'gallery';
|
|||||||
GalleryComponent,
|
GalleryComponent,
|
||||||
GroupsComponent,
|
GroupsComponent,
|
||||||
GroupFormComponent,
|
GroupFormComponent,
|
||||||
|
GroupInfoComponent,
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
export class HomeComponent implements OnInit {
|
export class HomeComponent implements OnInit {
|
||||||
@@ -65,15 +68,18 @@ export class HomeComponent implements OnInit {
|
|||||||
private loadCtrl = inject(LoadingController);
|
private loadCtrl = inject(LoadingController);
|
||||||
private achievementsService = inject(AchievementsService);
|
private achievementsService = inject(AchievementsService);
|
||||||
private groupsService = inject(GroupsService);
|
private groupsService = inject(GroupsService);
|
||||||
|
private navCtrl = inject(NavController);
|
||||||
|
|
||||||
randomChallenge = signal<GetRandomChallengeDto>({});
|
randomChallenge = signal<GetRandomChallengeDto>({});
|
||||||
user = signal<GetUserDetailsDto>({})
|
user = signal<GetUserDetailsDto>({})
|
||||||
userChallenge = signal<GetUserChallengeDto[]>([]);
|
userChallenge = signal<GetUserChallengeDto[]>([]);
|
||||||
userAchievement = signal<GetAchievementDto[]>([])
|
userAchievement = signal<GetAchievementDto[]>([])
|
||||||
groups = signal<GetGroupDto[]>([])
|
groups = signal<GetGroupDto[]>([])
|
||||||
|
groupSelected = signal<GetGroupDetailsDto | null>(null);
|
||||||
|
|
||||||
isModalOpen = false;
|
isModalOpen = false;
|
||||||
isGroupModal = false;
|
isGroupModal = false;
|
||||||
|
groupInfo = false;
|
||||||
view: View = 'menu';
|
view: View = 'menu';
|
||||||
|
|
||||||
setView(choice: View) {
|
setView(choice: View) {
|
||||||
@@ -138,4 +144,9 @@ export class HomeComponent implements OnInit {
|
|||||||
this.groups.update(x => [...x, newGroup])
|
this.groups.update(x => [...x, newGroup])
|
||||||
await this.setOpen(false, true);
|
await this.setOpen(false, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async backToHome() {
|
||||||
|
this.groupSelected.set(null);
|
||||||
|
await this.navCtrl.navigateRoot('/home');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -31,10 +31,9 @@
|
|||||||
|
|
||||||
<div>
|
<div>
|
||||||
<p class="mb-0 font-bold">{{ user.username }}</p>
|
<p class="mb-0 font-bold">{{ user.username }}</p>
|
||||||
<p class="mt-0 text-xs text-gray-500">{{ user.getUserStatsDto.totalChallenge }} défis
|
<p class="mt-0 text-xs text-gray-500">{{ user.getUserStatsDto.totalChallenge }} défis réalisés</p>
|
||||||
- {{ user.getUserStatsDto.totalWin }} victoires</p>
|
|
||||||
</div>
|
</div>
|
||||||
<p class="text-gray-400 m-0"><strong class="text-black">{{ user.getUserStatsDto.score }}</strong> pts
|
<p class="text-gray-400 m-0"><strong class="text-black">{{ user.getUserStatsDto.totalLikes }}</strong> pts
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -73,9 +73,7 @@ export const appConfig: ApplicationConfig = {
|
|||||||
```
|
```
|
||||||
|
|
||||||
**NOTE**
|
**NOTE**
|
||||||
If you're still using `AppModule` and haven't [migrated](https://angular.dev/reference/migrations/standalone) yet, you
|
If you're still using `AppModule` and haven't [migrated](https://angular.dev/reference/migrations/standalone) yet, you can still import an Angular module:
|
||||||
can still import an Angular module:
|
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
import { ApiModule } from '';
|
import { ApiModule } from '';
|
||||||
```
|
```
|
||||||
@@ -183,7 +181,5 @@ new Configuration({
|
|||||||
```
|
```
|
||||||
|
|
||||||
[parameter-locations-url]: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-locations
|
[parameter-locations-url]: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#parameter-locations
|
||||||
|
|
||||||
[style-values-url]: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values
|
[style-values-url]: https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values
|
||||||
|
|
||||||
[@honoluluhenk/http-param-expander]: https://www.npmjs.com/package/@honoluluhenk/http-param-expander
|
[@honoluluhenk/http-param-expander]: https://www.npmjs.com/package/@honoluluhenk/http-param-expander
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -28,6 +27,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -43,26 +43,10 @@ export class AchievementsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllAchievementsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllAchievementsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetAchievementDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllAchievementsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetAchievementDto>>>;
|
||||||
context?: HttpContext,
|
public getAllAchievementsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetAchievementDto>>>;
|
||||||
transferCache?: boolean
|
public getAllAchievementsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetAchievementDto>>;
|
|
||||||
public getAllAchievementsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetAchievementDto>>>;
|
|
||||||
public getAllAchievementsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetAchievementDto>>>;
|
|
||||||
public getAllAchievementsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -113,26 +97,10 @@ export class AchievementsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getLockedAchievementsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getLockedAchievementsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetAchievementDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getLockedAchievementsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetAchievementDto>>>;
|
||||||
context?: HttpContext,
|
public getLockedAchievementsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetAchievementDto>>>;
|
||||||
transferCache?: boolean
|
public getLockedAchievementsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetAchievementDto>>;
|
|
||||||
public getLockedAchievementsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetAchievementDto>>>;
|
|
||||||
public getLockedAchievementsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetAchievementDto>>>;
|
|
||||||
public getLockedAchievementsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -183,26 +151,10 @@ export class AchievementsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getUserAchievementsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getUserAchievementsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetAchievementDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getUserAchievementsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetAchievementDto>>>;
|
||||||
context?: HttpContext,
|
public getUserAchievementsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetAchievementDto>>>;
|
||||||
transferCache?: boolean
|
public getUserAchievementsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetAchievementDto>>;
|
|
||||||
public getUserAchievementsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetAchievementDto>>>;
|
|
||||||
public getUserAchievementsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetAchievementDto>>>;
|
|
||||||
public getUserAchievementsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -254,26 +206,10 @@ export class AchievementsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public unlockAchievementEndpoint(achievementId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public unlockAchievementEndpoint(achievementId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public unlockAchievementEndpoint(achievementId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public unlockAchievementEndpoint(achievementId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public unlockAchievementEndpoint(achievementId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public unlockAchievementEndpoint(achievementId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public unlockAchievementEndpoint(achievementId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public unlockAchievementEndpoint(achievementId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (achievementId === null || achievementId === undefined) {
|
if (achievementId === null || achievementId === undefined) {
|
||||||
throw new Error('Required parameter achievementId was null or undefined when calling unlockAchievementEndpoint.');
|
throw new Error('Required parameter achievementId was null or undefined when calling unlockAchievementEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -306,15 +242,7 @@ export class AchievementsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Achievements/${this.configuration.encodeParam({
|
let localVarPath = `/API/Achievements/${this.configuration.encodeParam({name: "achievementId", value: achievementId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Users`;
|
||||||
name: "achievementId",
|
|
||||||
value: achievementId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Users`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,31 +1,21 @@
|
|||||||
export * from './achievements.service';
|
export * from './achievements.service';
|
||||||
import { AchievementsService } from './achievements.service';
|
import { AchievementsService } from './achievements.service';
|
||||||
|
|
||||||
export * from './auth.service';
|
export * from './auth.service';
|
||||||
import { AuthService } from './auth.service';
|
import { AuthService } from './auth.service';
|
||||||
|
|
||||||
export * from './designations.service';
|
export * from './designations.service';
|
||||||
import { DesignationsService } from './designations.service';
|
import { DesignationsService } from './designations.service';
|
||||||
|
|
||||||
export * from './friends.service';
|
export * from './friends.service';
|
||||||
import { FriendsService } from './friends.service';
|
import { FriendsService } from './friends.service';
|
||||||
|
|
||||||
export * from './groups.service';
|
export * from './groups.service';
|
||||||
import { GroupsService } from './groups.service';
|
import { GroupsService } from './groups.service';
|
||||||
|
|
||||||
export * from './messages.service';
|
export * from './messages.service';
|
||||||
import { MessagesService } from './messages.service';
|
import { MessagesService } from './messages.service';
|
||||||
|
|
||||||
export * from './overallranking.service';
|
export * from './overallranking.service';
|
||||||
import { OverallrankingService } from './overallranking.service';
|
import { OverallrankingService } from './overallranking.service';
|
||||||
|
|
||||||
export * from './posts.service';
|
export * from './posts.service';
|
||||||
import { PostsService } from './posts.service';
|
import { PostsService } from './posts.service';
|
||||||
|
|
||||||
export * from './randomchallenges.service';
|
export * from './randomchallenges.service';
|
||||||
import { RandomchallengesService } from './randomchallenges.service';
|
import { RandomchallengesService } from './randomchallenges.service';
|
||||||
|
|
||||||
export * from './users.service';
|
export * from './users.service';
|
||||||
import { UsersService } from './users.service';
|
import { UsersService } from './users.service';
|
||||||
|
|
||||||
export const APIS = [AchievementsService, AuthService, DesignationsService, FriendsService, GroupsService, MessagesService, OverallrankingService, PostsService, RandomchallengesService, UsersService];
|
export const APIS = [AchievementsService, AuthService, DesignationsService, FriendsService, GroupsService, MessagesService, OverallrankingService, PostsService, RandomchallengesService, UsersService];
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -32,6 +31,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -48,26 +48,10 @@ export class AuthService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public loginEndpoint(loginDto: LoginDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public loginEndpoint(loginDto: LoginDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<GetTokenDto>;
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
public loginEndpoint(loginDto: LoginDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetTokenDto>>;
|
||||||
context?: HttpContext,
|
public loginEndpoint(loginDto: LoginDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetTokenDto>>;
|
||||||
transferCache?: boolean
|
public loginEndpoint(loginDto: LoginDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<GetTokenDto>;
|
|
||||||
public loginEndpoint(loginDto: LoginDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<GetTokenDto>>;
|
|
||||||
public loginEndpoint(loginDto: LoginDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<GetTokenDto>>;
|
|
||||||
public loginEndpoint(loginDto: LoginDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (loginDto === null || loginDto === undefined) {
|
if (loginDto === null || loginDto === undefined) {
|
||||||
throw new Error('Required parameter loginDto was null or undefined when calling loginEndpoint.');
|
throw new Error('Required parameter loginDto was null or undefined when calling loginEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -130,26 +114,10 @@ export class AuthService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<GetTokenDto>;
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetTokenDto>>;
|
||||||
context?: HttpContext,
|
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetTokenDto>>;
|
||||||
transferCache?: boolean
|
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json' | 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<GetTokenDto>;
|
|
||||||
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<GetTokenDto>>;
|
|
||||||
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<GetTokenDto>>;
|
|
||||||
public refreshTokenEndpoint(refreshTokenDto: RefreshTokenDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json' | 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (refreshTokenDto === null || refreshTokenDto === undefined) {
|
if (refreshTokenDto === null || refreshTokenDto === undefined) {
|
||||||
throw new Error('Required parameter refreshTokenDto was null or undefined when calling refreshTokenEndpoint.');
|
throw new Error('Required parameter refreshTokenDto was null or undefined when calling refreshTokenEndpoint.');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -26,6 +25,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -41,26 +41,10 @@ export class DesignationsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllDesignationsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllDesignationsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetDesignationDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllDesignationsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetDesignationDto>>>;
|
||||||
context?: HttpContext,
|
public getAllDesignationsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetDesignationDto>>>;
|
||||||
transferCache?: boolean
|
public getAllDesignationsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetDesignationDto>>;
|
|
||||||
public getAllDesignationsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetDesignationDto>>>;
|
|
||||||
public getAllDesignationsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetDesignationDto>>>;
|
|
||||||
public getAllDesignationsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -28,6 +27,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -44,26 +44,10 @@ export class FriendsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public acceptFriendRequestEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public acceptFriendRequestEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public acceptFriendRequestEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public acceptFriendRequestEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public acceptFriendRequestEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public acceptFriendRequestEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public acceptFriendRequestEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public acceptFriendRequestEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (friendId === null || friendId === undefined) {
|
if (friendId === null || friendId === undefined) {
|
||||||
throw new Error('Required parameter friendId was null or undefined when calling acceptFriendRequestEndpoint.');
|
throw new Error('Required parameter friendId was null or undefined when calling acceptFriendRequestEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -73,7 +57,8 @@ export class FriendsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -94,15 +79,7 @@ export class FriendsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Friends/${this.configuration.encodeParam({
|
let localVarPath = `/API/Friends/${this.configuration.encodeParam({name: "friendId", value: friendId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Request`;
|
||||||
name: "friendId",
|
|
||||||
value: friendId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Request`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('put', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('put', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -124,26 +101,10 @@ export class FriendsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public deleteFriendEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public deleteFriendEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public deleteFriendEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public deleteFriendEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public deleteFriendEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public deleteFriendEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public deleteFriendEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public deleteFriendEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (friendId === null || friendId === undefined) {
|
if (friendId === null || friendId === undefined) {
|
||||||
throw new Error('Required parameter friendId was null or undefined when calling deleteFriendEndpoint.');
|
throw new Error('Required parameter friendId was null or undefined when calling deleteFriendEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -153,7 +114,8 @@ export class FriendsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -174,15 +136,7 @@ export class FriendsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Friends/${this.configuration.encodeParam({
|
let localVarPath = `/API/Friends/${this.configuration.encodeParam({name: "friendId", value: friendId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "friendId",
|
|
||||||
value: friendId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -203,26 +157,10 @@ export class FriendsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllFriendRequestsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllFriendRequestsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetFriendRequestDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllFriendRequestsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetFriendRequestDto>>>;
|
||||||
context?: HttpContext,
|
public getAllFriendRequestsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetFriendRequestDto>>>;
|
||||||
transferCache?: boolean
|
public getAllFriendRequestsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetFriendRequestDto>>;
|
|
||||||
public getAllFriendRequestsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetFriendRequestDto>>>;
|
|
||||||
public getAllFriendRequestsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetFriendRequestDto>>>;
|
|
||||||
public getAllFriendRequestsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -273,26 +211,10 @@ export class FriendsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllFriendsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllFriendsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetFriendDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllFriendsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetFriendDto>>>;
|
||||||
context?: HttpContext,
|
public getAllFriendsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetFriendDto>>>;
|
||||||
transferCache?: boolean
|
public getAllFriendsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetFriendDto>>;
|
|
||||||
public getAllFriendsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetFriendDto>>>;
|
|
||||||
public getAllFriendsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetFriendDto>>>;
|
|
||||||
public getAllFriendsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -344,26 +266,10 @@ export class FriendsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public rejectFriendRequestEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public rejectFriendRequestEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public rejectFriendRequestEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public rejectFriendRequestEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public rejectFriendRequestEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public rejectFriendRequestEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public rejectFriendRequestEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public rejectFriendRequestEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (friendId === null || friendId === undefined) {
|
if (friendId === null || friendId === undefined) {
|
||||||
throw new Error('Required parameter friendId was null or undefined when calling rejectFriendRequestEndpoint.');
|
throw new Error('Required parameter friendId was null or undefined when calling rejectFriendRequestEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -373,7 +279,8 @@ export class FriendsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -394,15 +301,7 @@ export class FriendsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Friends/${this.configuration.encodeParam({
|
let localVarPath = `/API/Friends/${this.configuration.encodeParam({name: "friendId", value: friendId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Request`;
|
||||||
name: "friendId",
|
|
||||||
value: friendId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Request`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -424,26 +323,10 @@ export class FriendsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public sendFriendRequestEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public sendFriendRequestEndpoint(friendId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public sendFriendRequestEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public sendFriendRequestEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public sendFriendRequestEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public sendFriendRequestEndpoint(friendId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public sendFriendRequestEndpoint(friendId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public sendFriendRequestEndpoint(friendId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (friendId === null || friendId === undefined) {
|
if (friendId === null || friendId === undefined) {
|
||||||
throw new Error('Required parameter friendId was null or undefined when calling sendFriendRequestEndpoint.');
|
throw new Error('Required parameter friendId was null or undefined when calling sendFriendRequestEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -453,7 +336,8 @@ export class FriendsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -474,15 +358,7 @@ export class FriendsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Friends/${this.configuration.encodeParam({
|
let localVarPath = `/API/Friends/${this.configuration.encodeParam({name: "friendId", value: friendId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "friendId",
|
|
||||||
value: friendId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -34,6 +33,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -51,26 +51,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public addUserToGroupEndpoint(groupId: number, userId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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) {
|
if (groupId === null || groupId === undefined) {
|
||||||
throw new Error('Required parameter groupId was null or undefined when calling addUserToGroupEndpoint.');
|
throw new Error('Required parameter groupId was null or undefined when calling addUserToGroupEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -83,7 +67,8 @@ export class GroupsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -104,23 +89,7 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
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"})}`;
|
||||||
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;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -142,26 +111,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public createGroupEndpoint(createGroupDto: CreateGroupDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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) {
|
if (createGroupDto === null || createGroupDto === undefined) {
|
||||||
throw new Error('Required parameter createGroupDto was null or undefined when calling createGroupEndpoint.');
|
throw new Error('Required parameter createGroupDto was null or undefined when calling createGroupEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -226,26 +179,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public deleteGroupEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public deleteGroupEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public deleteGroupEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public deleteGroupEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public deleteGroupEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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) {
|
if (id === null || id === undefined) {
|
||||||
throw new Error('Required parameter id was null or undefined when calling deleteGroupEndpoint.');
|
throw new Error('Required parameter id was null or undefined when calling deleteGroupEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -255,7 +192,8 @@ export class GroupsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -276,15 +214,7 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "id",
|
|
||||||
value: id,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -307,26 +237,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public deleteUserFromGroupEndpoint(groupId: number, userId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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) {
|
if (groupId === null || groupId === undefined) {
|
||||||
throw new Error('Required parameter groupId was null or undefined when calling deleteUserFromGroupEndpoint.');
|
throw new Error('Required parameter groupId was null or undefined when calling deleteUserFromGroupEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -339,7 +253,8 @@ export class GroupsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -360,23 +275,7 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
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"})}`;
|
||||||
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;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -398,26 +297,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllGroupUsersEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllGroupUsersEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetUserGroupDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllGroupUsersEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetUserGroupDto>>>;
|
||||||
context?: HttpContext,
|
public getAllGroupUsersEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetUserGroupDto>>>;
|
||||||
transferCache?: boolean
|
public getAllGroupUsersEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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) {
|
if (id === null || id === undefined) {
|
||||||
throw new Error('Required parameter id was null or undefined when calling getAllGroupUsersEndpoint.');
|
throw new Error('Required parameter id was null or undefined when calling getAllGroupUsersEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -450,15 +333,7 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Users`;
|
||||||
name: "id",
|
|
||||||
value: id,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Users`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<Array<GetUserGroupDto>>('get', `${basePath}${localVarPath}`,
|
return this.httpClient.request<Array<GetUserGroupDto>>('get', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -479,26 +354,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllGroupsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllGroupsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetGroupDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllGroupsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetGroupDto>>>;
|
||||||
context?: HttpContext,
|
public getAllGroupsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetGroupDto>>>;
|
||||||
transferCache?: boolean
|
public getAllGroupsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -550,26 +409,10 @@ export class GroupsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getGroupDetailsEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public getGroupDetailsEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<GetGroupDetailsDto>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getGroupDetailsEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetGroupDetailsDto>>;
|
||||||
context?: HttpContext,
|
public getGroupDetailsEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetGroupDetailsDto>>;
|
||||||
transferCache?: boolean
|
public getGroupDetailsEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): 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) {
|
if (id === null || id === undefined) {
|
||||||
throw new Error('Required parameter id was null or undefined when calling getGroupDetailsEndpoint.');
|
throw new Error('Required parameter id was null or undefined when calling getGroupDetailsEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -602,15 +445,7 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "id",
|
|
||||||
value: id,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<GetGroupDetailsDto>('get', `${basePath}${localVarPath}`,
|
return this.httpClient.request<GetGroupDetailsDto>('get', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -626,38 +461,18 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @endpoint patch /API/Groups/{groupId}/Users/{userId}/Role
|
* @endpoint delete /API/Groups/{id}/User
|
||||||
* @param groupId
|
* @param id
|
||||||
* @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 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 reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public leaveGroupEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public leaveGroupEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public leaveGroupEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public leaveGroupEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
if (id === null || id === undefined) {
|
||||||
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
throw new Error('Required parameter id was null or undefined when calling leaveGroupEndpoint.');
|
||||||
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;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
@@ -665,7 +480,8 @@ export class GroupsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -686,25 +502,71 @@ export class GroupsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Groups/${this.configuration.encodeParam({
|
let localVarPath = `/API/Groups/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/User`;
|
||||||
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;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
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 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?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<GetGroupDetailsDto>;
|
||||||
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetGroupDetailsDto>>;
|
||||||
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetGroupDetailsDto>>;
|
||||||
|
public patchGroupUserRoleEndpoint(groupId: number, userId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', 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([
|
||||||
|
'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: "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<GetGroupDetailsDto>('patch', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
context: localVarHttpContext,
|
context: localVarHttpContext,
|
||||||
responseType: <any>responseType_,
|
responseType: <any>responseType_,
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -30,6 +29,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -47,26 +47,10 @@ export class MessagesService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public deleteMessageEndpoint(id: number, groupId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public deleteMessageEndpoint(id: number, groupId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public deleteMessageEndpoint(id: number, groupId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public deleteMessageEndpoint(id: number, groupId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public deleteMessageEndpoint(id: number, groupId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public deleteMessageEndpoint(id: number, groupId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public deleteMessageEndpoint(id: number, groupId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public deleteMessageEndpoint(id: number, groupId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (id === null || id === undefined) {
|
if (id === null || id === undefined) {
|
||||||
throw new Error('Required parameter id was null or undefined when calling deleteMessageEndpoint.');
|
throw new Error('Required parameter id was null or undefined when calling deleteMessageEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -79,7 +63,8 @@ export class MessagesService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -100,23 +85,7 @@ export class MessagesService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Messages/${this.configuration.encodeParam({
|
let localVarPath = `/API/Messages/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Groups/${this.configuration.encodeParam({name: "groupId", value: groupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "id",
|
|
||||||
value: id,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Groups/${this.configuration.encodeParam({
|
|
||||||
name: "groupId",
|
|
||||||
value: groupId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('delete', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -138,26 +107,10 @@ export class MessagesService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getMessagesEndpoint(groupId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public getMessagesEndpoint(groupId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetMessageDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getMessagesEndpoint(groupId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetMessageDto>>>;
|
||||||
context?: HttpContext,
|
public getMessagesEndpoint(groupId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetMessageDto>>>;
|
||||||
transferCache?: boolean
|
public getMessagesEndpoint(groupId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetMessageDto>>;
|
|
||||||
public getMessagesEndpoint(groupId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetMessageDto>>>;
|
|
||||||
public getMessagesEndpoint(groupId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetMessageDto>>>;
|
|
||||||
public getMessagesEndpoint(groupId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (groupId === null || groupId === undefined) {
|
if (groupId === null || groupId === undefined) {
|
||||||
throw new Error('Required parameter groupId was null or undefined when calling getMessagesEndpoint.');
|
throw new Error('Required parameter groupId was null or undefined when calling getMessagesEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -190,15 +143,7 @@ export class MessagesService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Messages/Groups/${this.configuration.encodeParam({
|
let localVarPath = `/API/Messages/Groups/${this.configuration.encodeParam({name: "groupId", value: groupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "groupId",
|
|
||||||
value: groupId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<Array<GetMessageDto>>('get', `${basePath}${localVarPath}`,
|
return this.httpClient.request<Array<GetMessageDto>>('get', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -221,26 +166,10 @@ export class MessagesService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public sendMessageEndpoint(groupId: number, createMessageDto: CreateMessageDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (groupId === null || groupId === undefined) {
|
if (groupId === null || groupId === undefined) {
|
||||||
throw new Error('Required parameter groupId was null or undefined when calling sendMessageEndpoint.');
|
throw new Error('Required parameter groupId was null or undefined when calling sendMessageEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -285,15 +214,7 @@ export class MessagesService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Messages/Groups/${this.configuration.encodeParam({
|
let localVarPath = `/API/Messages/Groups/${this.configuration.encodeParam({name: "groupId", value: groupId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "groupId",
|
|
||||||
value: groupId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('post', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -26,6 +25,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -41,26 +41,10 @@ export class OverallrankingService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getOverallRankingEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getOverallRankingEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetUserDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getOverallRankingEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetUserDto>>>;
|
||||||
context?: HttpContext,
|
public getOverallRankingEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetUserDto>>>;
|
||||||
transferCache?: boolean
|
public getOverallRankingEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetUserDto>>;
|
|
||||||
public getOverallRankingEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetUserDto>>>;
|
|
||||||
public getOverallRankingEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetUserDto>>>;
|
|
||||||
public getOverallRankingEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -26,6 +25,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -41,26 +41,10 @@ export class PostsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllPostsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllPostsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetPostDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllPostsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetPostDto>>>;
|
||||||
context?: HttpContext,
|
public getAllPostsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetPostDto>>>;
|
||||||
transferCache?: boolean
|
public getAllPostsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetPostDto>>;
|
|
||||||
public getAllPostsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetPostDto>>>;
|
|
||||||
public getAllPostsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetPostDto>>>;
|
|
||||||
public getAllPostsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -112,26 +96,10 @@ export class PostsService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public patchLikeEndpoint(postId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public patchLikeEndpoint(postId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public patchLikeEndpoint(postId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public patchLikeEndpoint(postId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public patchLikeEndpoint(postId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public patchLikeEndpoint(postId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public patchLikeEndpoint(postId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public patchLikeEndpoint(postId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (postId === null || postId === undefined) {
|
if (postId === null || postId === undefined) {
|
||||||
throw new Error('Required parameter postId was null or undefined when calling patchLikeEndpoint.');
|
throw new Error('Required parameter postId was null or undefined when calling patchLikeEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -141,7 +109,8 @@ export class PostsService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -162,15 +131,7 @@ export class PostsService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Posts/${this.configuration.encodeParam({
|
let localVarPath = `/API/Posts/${this.configuration.encodeParam({name: "postId", value: postId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Like`;
|
||||||
name: "postId",
|
|
||||||
value: postId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Like`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -26,6 +25,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -41,26 +41,10 @@ export class RandomchallengesService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public generateRandomChallengeEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public generateRandomChallengeEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<GetRandomChallengeDto>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public generateRandomChallengeEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetRandomChallengeDto>>;
|
||||||
context?: HttpContext,
|
public generateRandomChallengeEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetRandomChallengeDto>>;
|
||||||
transferCache?: boolean
|
public generateRandomChallengeEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<GetRandomChallengeDto>;
|
|
||||||
public generateRandomChallengeEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<GetRandomChallengeDto>>;
|
|
||||||
public generateRandomChallengeEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<GetRandomChallengeDto>>;
|
|
||||||
public generateRandomChallengeEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -112,26 +96,10 @@ export class RandomchallengesService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getRandomChallengeEndpoint(randomChallengeId: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public getRandomChallengeEndpoint(randomChallengeId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<GetRandomChallengeDto>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getRandomChallengeEndpoint(randomChallengeId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetRandomChallengeDto>>;
|
||||||
context?: HttpContext,
|
public getRandomChallengeEndpoint(randomChallengeId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetRandomChallengeDto>>;
|
||||||
transferCache?: boolean
|
public getRandomChallengeEndpoint(randomChallengeId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<GetRandomChallengeDto>;
|
|
||||||
public getRandomChallengeEndpoint(randomChallengeId: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<GetRandomChallengeDto>>;
|
|
||||||
public getRandomChallengeEndpoint(randomChallengeId: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<GetRandomChallengeDto>>;
|
|
||||||
public getRandomChallengeEndpoint(randomChallengeId: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (randomChallengeId === null || randomChallengeId === undefined) {
|
if (randomChallengeId === null || randomChallengeId === undefined) {
|
||||||
throw new Error('Required parameter randomChallengeId was null or undefined when calling getRandomChallengeEndpoint.');
|
throw new Error('Required parameter randomChallengeId was null or undefined when calling getRandomChallengeEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -164,15 +132,7 @@ export class RandomchallengesService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/RandomChallenges/${this.configuration.encodeParam({
|
let localVarPath = `/API/RandomChallenges/${this.configuration.encodeParam({name: "randomChallengeId", value: randomChallengeId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "randomChallengeId",
|
|
||||||
value: randomChallengeId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<GetRandomChallengeDto>('get', `${basePath}${localVarPath}`,
|
return this.httpClient.request<GetRandomChallengeDto>('get', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -196,26 +156,10 @@ export class RandomchallengesService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe?: 'body', reportProgress?: boolean, options?: {
|
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public patchProofEndpoint(randomChallengeId: number, libelle?: string, proof?: Blob, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (randomChallengeId === null || randomChallengeId === undefined) {
|
if (randomChallengeId === null || randomChallengeId === undefined) {
|
||||||
throw new Error('Required parameter randomChallengeId was null or undefined when calling patchProofEndpoint.');
|
throw new Error('Required parameter randomChallengeId was null or undefined when calling patchProofEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -225,7 +169,8 @@ export class RandomchallengesService extends BaseService {
|
|||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -271,15 +216,7 @@ export class RandomchallengesService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/RandomChallenges/${this.configuration.encodeParam({
|
let localVarPath = `/API/RandomChallenges/${this.configuration.encodeParam({name: "randomChallengeId", value: randomChallengeId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}/Proof`;
|
||||||
name: "randomChallengeId",
|
|
||||||
value: randomChallengeId,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}/Proof`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
return this.httpClient.request<any>('patch', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,8 +10,7 @@
|
|||||||
/* tslint:disable:no-unused-variable member-ordering */
|
/* tslint:disable:no-unused-variable member-ordering */
|
||||||
|
|
||||||
import { Inject, Injectable, Optional } from '@angular/core';
|
import { Inject, Injectable, Optional } from '@angular/core';
|
||||||
import {
|
import { HttpClient, HttpHeaders, HttpParams,
|
||||||
HttpClient, HttpHeaders, HttpParams,
|
|
||||||
HttpResponse, HttpEvent, HttpContext
|
HttpResponse, HttpEvent, HttpContext
|
||||||
} from '@angular/common/http';
|
} from '@angular/common/http';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
@@ -42,6 +41,7 @@ import {Configuration} from '../configuration';
|
|||||||
import { BaseService } from '../api.base.service';
|
import { BaseService } from '../api.base.service';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
})
|
})
|
||||||
@@ -58,26 +58,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public createUserEndpoint(createUserDto: CreateUserDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public createUserEndpoint(createUserDto: CreateUserDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public createUserEndpoint(createUserDto: CreateUserDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public createUserEndpoint(createUserDto: CreateUserDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public createUserEndpoint(createUserDto: CreateUserDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public createUserEndpoint(createUserDto: CreateUserDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public createUserEndpoint(createUserDto: CreateUserDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public createUserEndpoint(createUserDto: CreateUserDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (createUserDto === null || createUserDto === undefined) {
|
if (createUserDto === null || createUserDto === undefined) {
|
||||||
throw new Error('Required parameter createUserDto was null or undefined when calling createUserEndpoint.');
|
throw new Error('Required parameter createUserDto was null or undefined when calling createUserEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -138,33 +122,18 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public deleteUserEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public deleteUserEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: undefined,
|
public deleteUserEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public deleteUserEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public deleteUserEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public deleteUserEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public deleteUserEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public deleteUserEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: undefined,
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
// authentication (JWTBearerAuth) required
|
// authentication (JWTBearerAuth) required
|
||||||
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
localVarHeaders = this.configuration.addCredentialToHeaders('JWTBearerAuth', 'Authorization', localVarHeaders, 'Bearer ');
|
||||||
|
|
||||||
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
|
const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([
|
||||||
|
]);
|
||||||
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
||||||
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
||||||
}
|
}
|
||||||
@@ -206,26 +175,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllUserChallengesEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllUserChallengesEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetUserChallengeDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllUserChallengesEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetUserChallengeDto>>>;
|
||||||
context?: HttpContext,
|
public getAllUserChallengesEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetUserChallengeDto>>>;
|
||||||
transferCache?: boolean
|
public getAllUserChallengesEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetUserChallengeDto>>;
|
|
||||||
public getAllUserChallengesEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetUserChallengeDto>>>;
|
|
||||||
public getAllUserChallengesEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetUserChallengeDto>>>;
|
|
||||||
public getAllUserChallengesEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -276,26 +229,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllUserProofsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllUserProofsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetUserProofDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllUserProofsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetUserProofDto>>>;
|
||||||
context?: HttpContext,
|
public getAllUserProofsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetUserProofDto>>>;
|
||||||
transferCache?: boolean
|
public getAllUserProofsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetUserProofDto>>;
|
|
||||||
public getAllUserProofsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetUserProofDto>>>;
|
|
||||||
public getAllUserProofsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetUserProofDto>>>;
|
|
||||||
public getAllUserProofsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -346,26 +283,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getAllUsersEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getAllUsersEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<Array<GetUserDto>>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getAllUsersEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<GetUserDto>>>;
|
||||||
context?: HttpContext,
|
public getAllUsersEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<GetUserDto>>>;
|
||||||
transferCache?: boolean
|
public getAllUsersEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<Array<GetUserDto>>;
|
|
||||||
public getAllUsersEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<Array<GetUserDto>>>;
|
|
||||||
public getAllUsersEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<Array<GetUserDto>>>;
|
|
||||||
public getAllUsersEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -416,26 +337,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getUserDetailsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {
|
public getUserDetailsEndpoint(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<GetUserDetailsDto>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getUserDetailsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetUserDetailsDto>>;
|
||||||
context?: HttpContext,
|
public getUserDetailsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetUserDetailsDto>>;
|
||||||
transferCache?: boolean
|
public getUserDetailsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<GetUserDetailsDto>;
|
|
||||||
public getUserDetailsEndpoint(observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<GetUserDetailsDto>>;
|
|
||||||
public getUserDetailsEndpoint(observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<GetUserDetailsDto>>;
|
|
||||||
public getUserDetailsEndpoint(observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
|
|
||||||
let localVarHeaders = this.defaultHeaders;
|
let localVarHeaders = this.defaultHeaders;
|
||||||
|
|
||||||
@@ -487,26 +392,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public getUserEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {
|
public getUserEndpoint(id: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<GetUserDto>;
|
||||||
httpHeaderAccept?: 'application/json',
|
public getUserEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetUserDto>>;
|
||||||
context?: HttpContext,
|
public getUserEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetUserDto>>;
|
||||||
transferCache?: boolean
|
public getUserEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<GetUserDto>;
|
|
||||||
public getUserEndpoint(id: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<GetUserDto>>;
|
|
||||||
public getUserEndpoint(id: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<GetUserDto>>;
|
|
||||||
public getUserEndpoint(id: number, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (id === null || id === undefined) {
|
if (id === null || id === undefined) {
|
||||||
throw new Error('Required parameter id was null or undefined when calling getUserEndpoint.');
|
throw new Error('Required parameter id was null or undefined when calling getUserEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -539,15 +428,7 @@ export class UsersService extends BaseService {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let localVarPath = `/API/Users/${this.configuration.encodeParam({
|
let localVarPath = `/API/Users/${this.configuration.encodeParam({name: "id", value: id, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32"})}`;
|
||||||
name: "id",
|
|
||||||
value: id,
|
|
||||||
in: "path",
|
|
||||||
style: "simple",
|
|
||||||
explode: false,
|
|
||||||
dataType: "number",
|
|
||||||
dataFormat: "int32"
|
|
||||||
})}`;
|
|
||||||
const { basePath, withCredentials } = this.configuration;
|
const { basePath, withCredentials } = this.configuration;
|
||||||
return this.httpClient.request<GetUserDto>('get', `${basePath}${localVarPath}`,
|
return this.httpClient.request<GetUserDto>('get', `${basePath}${localVarPath}`,
|
||||||
{
|
{
|
||||||
@@ -569,26 +450,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public patchUserDesignationEndpoint(patchUserDesignationDto: PatchUserDesignationDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (patchUserDesignationDto === null || patchUserDesignationDto === undefined) {
|
if (patchUserDesignationDto === null || patchUserDesignationDto === undefined) {
|
||||||
throw new Error('Required parameter patchUserDesignationDto was null or undefined when calling patchUserDesignationEndpoint.');
|
throw new Error('Required parameter patchUserDesignationDto was null or undefined when calling patchUserDesignationEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -653,26 +518,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public patchUserPasswordEndpoint(patchUserPasswordDto: PatchUserPasswordDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (patchUserPasswordDto === null || patchUserPasswordDto === undefined) {
|
if (patchUserPasswordDto === null || patchUserPasswordDto === undefined) {
|
||||||
throw new Error('Required parameter patchUserPasswordDto was null or undefined when calling patchUserPasswordEndpoint.');
|
throw new Error('Required parameter patchUserPasswordDto was null or undefined when calling patchUserPasswordEndpoint.');
|
||||||
}
|
}
|
||||||
@@ -737,26 +586,10 @@ export class UsersService extends BaseService {
|
|||||||
* @param reportProgress flag to report request and response progress.
|
* @param reportProgress flag to report request and response progress.
|
||||||
* @param options additional options
|
* @param options additional options
|
||||||
*/
|
*/
|
||||||
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe?: 'body', reportProgress?: boolean, options?: {
|
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any>;
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;
|
||||||
context?: HttpContext,
|
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;
|
||||||
transferCache?: boolean
|
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/problem+json', context?: HttpContext, transferCache?: boolean}): Observable<any> {
|
||||||
}): Observable<any>;
|
|
||||||
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpResponse<any>>;
|
|
||||||
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<HttpEvent<any>>;
|
|
||||||
public updateUserEndpoint(updateUserDto: UpdateUserDto, observe: any = 'body', reportProgress: boolean = false, options?: {
|
|
||||||
httpHeaderAccept?: 'application/problem+json',
|
|
||||||
context?: HttpContext,
|
|
||||||
transferCache?: boolean
|
|
||||||
}): Observable<any> {
|
|
||||||
if (updateUserDto === null || updateUserDto === undefined) {
|
if (updateUserDto === null || updateUserDto === undefined) {
|
||||||
throw new Error('Required parameter updateUserDto was null or undefined when calling updateUserEndpoint.');
|
throw new Error('Required parameter updateUserDto was null or undefined when calling updateUserEndpoint.');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,17 +67,7 @@ export class Configuration {
|
|||||||
*/
|
*/
|
||||||
credentials: {[ key: string ]: string | (() => string | undefined)};
|
credentials: {[ key: string ]: string | (() => string | undefined)};
|
||||||
|
|
||||||
constructor({
|
constructor({ accessToken, apiKeys, basePath, credentials, encodeParam, encoder, password, username, withCredentials }: ConfigurationParameters = {}) {
|
||||||
accessToken,
|
|
||||||
apiKeys,
|
|
||||||
basePath,
|
|
||||||
credentials,
|
|
||||||
encodeParam,
|
|
||||||
encoder,
|
|
||||||
password,
|
|
||||||
username,
|
|
||||||
withCredentials
|
|
||||||
}: ConfigurationParameters = {}) {
|
|
||||||
if (apiKeys) {
|
if (apiKeys) {
|
||||||
this.apiKeys = apiKeys;
|
this.apiKeys = apiKeys;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,15 +8,12 @@ export class CustomHttpParameterCodec implements HttpParameterCodec {
|
|||||||
encodeKey(k: string): string {
|
encodeKey(k: string): string {
|
||||||
return encodeURIComponent(k);
|
return encodeURIComponent(k);
|
||||||
}
|
}
|
||||||
|
|
||||||
encodeValue(v: string): string {
|
encodeValue(v: string): string {
|
||||||
return encodeURIComponent(v);
|
return encodeURIComponent(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
decodeKey(k: string): string {
|
decodeKey(k: string): string {
|
||||||
return decodeURIComponent(k);
|
return decodeURIComponent(k);
|
||||||
}
|
}
|
||||||
|
|
||||||
decodeValue(v: string): string {
|
decodeValue(v: string): string {
|
||||||
return decodeURIComponent(v);
|
return decodeURIComponent(v);
|
||||||
}
|
}
|
||||||
@@ -26,15 +23,12 @@ export class IdentityHttpParameterCodec implements HttpParameterCodec {
|
|||||||
encodeKey(k: string): string {
|
encodeKey(k: string): string {
|
||||||
return k;
|
return k;
|
||||||
}
|
}
|
||||||
|
|
||||||
encodeValue(v: string): string {
|
encodeValue(v: string): string {
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|
||||||
decodeKey(k: string): string {
|
decodeKey(k: string): string {
|
||||||
return k;
|
return k;
|
||||||
}
|
}
|
||||||
|
|
||||||
decodeValue(v: string): string {
|
decodeValue(v: string): string {
|
||||||
return v;
|
return v;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
<meta name="viewport"
|
<meta name="viewport"
|
||||||
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
||||||
<link rel="icon" type="image/x-icon" href="BeReady.png">
|
<link rel="icon" type="image/x-icon" href="BeReady.png">
|
||||||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<app-root></app-root>
|
<app-root></app-root>
|
||||||
|
|||||||
Reference in New Issue
Block a user