diff --git a/android/app/build.gradle b/android/app/build.gradle
index c5c757b..5b128b3 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -33,7 +33,7 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
apply plugin: 'com.google.gms.google-services'
android {
- compileSdkVersion 33
+ compileSdkVersion 34
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 6f09ca3..c4b7159 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -3,9 +3,11 @@
+
+
+
+
diff --git a/android/app/src/main/res/xml/filepaths.xml b/android/app/src/main/res/xml/filepaths.xml
new file mode 100644
index 0000000..b3abc6b
--- /dev/null
+++ b/android/app/src/main/res/xml/filepaths.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/android/app/src/main/res/xml/network_security_config.xml b/android/app/src/main/res/xml/network_security_config.xml
new file mode 100644
index 0000000..dca93c0
--- /dev/null
+++ b/android/app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/lib/Helpers/ImageCustomProvider.dart b/lib/Helpers/ImageCustomProvider.dart
index e9b1be7..0b130a0 100644
--- a/lib/Helpers/ImageCustomProvider.dart
+++ b/lib/Helpers/ImageCustomProvider.dart
@@ -28,6 +28,7 @@ class ImageCustomProvider {
// If localpath not found or file missing
print("MISSINGG FILE");
+ print(imageId);
return CachedNetworkImageProvider(imageSource);
}
}
diff --git a/lib/Screens/Agenda/event_list_item.dart b/lib/Screens/Agenda/event_list_item.dart
index 81eb5c2..9ddcb72 100644
--- a/lib/Screens/Agenda/event_list_item.dart
+++ b/lib/Screens/Agenda/event_list_item.dart
@@ -137,20 +137,20 @@ class EventListItem extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
children: [
HtmlWidget(
- eventAgenda.name!.length > 35 ? eventAgenda.name!.substring(0, 35) + " ..." : eventAgenda.name!,
+ eventAgenda.name!.length > 75 ? eventAgenda.name!.substring(0, 75) + " ..." : eventAgenda.name!,
customStylesBuilder: (element) {
return {'text-align': 'center'};
},
textStyle: TextStyle(fontSize: 14.0),
),
- AutoSizeText(
+ /*AutoSizeText(
eventAgenda.type!,
maxFontSize: 12.0,
style: TextStyle(
fontSize: 10.0,
color: Colors.grey,
),
- ),
+ ),*/
],
),
),
diff --git a/lib/Screens/Agenda/event_popup.dart b/lib/Screens/Agenda/event_popup.dart
index 026401e..e5d05d7 100644
--- a/lib/Screens/Agenda/event_popup.dart
+++ b/lib/Screens/Agenda/event_popup.dart
@@ -11,12 +11,12 @@ import 'package:flutter_widget_from_html/flutter_widget_from_html.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:mapbox_maps_flutter/mapbox_maps_flutter.dart' as mapBox;
import 'package:manager_api/api.dart';
+import 'package:qr_flutter/qr_flutter.dart';
import 'package:tablet_app/Components/loading_common.dart';
import 'package:tablet_app/Components/video_viewer_youtube.dart';
-import 'package:tablet_app/Models/agenda.dart'; // Assurez-vous d'importer votre modèle d'agenda
+import 'package:tablet_app/Models/agenda.dart';
import 'package:intl/intl.dart';
import 'package:tablet_app/constants.dart';
-import 'dart:ui' as ui;
class EventPopup extends StatefulWidget {
final EventAgenda eventAgenda;
@@ -182,7 +182,7 @@ class _EventPopupState extends State {
Padding(
padding: const EdgeInsets.all(8.0),
child: Container(
- color: Colors.green,
+ //color: Colors.green,
height: size.height * 0.13,
width: size.width * 0.65,
child: Column(
@@ -356,6 +356,24 @@ class _EventPopupState extends State {
)
],
): SizedBox(),
+ widget.eventAgenda.website != null && widget.eventAgenda.website!.isNotEmpty ?
+ Expanded(
+ child: Center(
+ child: Padding(
+ padding: const EdgeInsets.all(8.0),
+ child: Container(
+ width: size.width *0.1,
+ height: 125,
+ child: QrImageView(
+ padding: EdgeInsets.only(left: 5.0, top: 5.0, bottom: 5.0, right: 5.0),
+ data: widget.eventAgenda.website!,
+ version: QrVersions.auto,
+ size: 50.0,
+ ),
+ ),
+ ),
+ ),
+ ): SizedBox(),
],
),
),
diff --git a/lib/Screens/Configuration/config_view.dart b/lib/Screens/Configuration/config_view.dart
index 5e2bfbc..0ff5e2e 100644
--- a/lib/Screens/Configuration/config_view.dart
+++ b/lib/Screens/Configuration/config_view.dart
@@ -1,5 +1,4 @@
-import 'package:cached_network_image/cached_network_image.dart';
-import 'package:device_info/device_info.dart';
+
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
diff --git a/lib/Services/downloadService.dart b/lib/Services/downloadService.dart
index d2ac37e..1666319 100644
--- a/lib/Services/downloadService.dart
+++ b/lib/Services/downloadService.dart
@@ -4,6 +4,8 @@ import 'dart:io';
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:manager_api/api.dart';
+//import 'package:ota_update/ota_update.dart';
+//import 'package:package_info_plus/package_info_plus.dart';
import 'package:provider/provider.dart';
import 'package:tablet_app/Models/tabletContext.dart';
import 'package:tablet_app/app_context.dart';
@@ -24,6 +26,38 @@ class _DownloadConfigurationWidgetState extends State currentResourceIndex = ValueNotifier(0);
ValueNotifier currentResourceNbr = ValueNotifier(-1);
bool isAlreadyDownloading = false;
+ //OtaEvent? currentEvent;
+
+ Future tryOtaUpdate() async {
+ try {
+ //print('ABI Platform: ${await OtaUpdate().getAbi()}');
+ //final info = await PackageInfo.fromPlatform();
+
+ /*var test = info.version;
+ var test0 = info.appName;
+ var test1 = info.buildNumber;
+ var test2 = info.buildSignature;
+ var test3 = info.installerStore;
+ var test4 = info.packageName;*/
+
+ //LINK CONTAINS APK OF FLUTTER HELLO WORLD FROM FLUTTER SDK EXAMPLES
+ /*OtaUpdate()
+ .execute(
+ 'https://drive.google.com/file/d/1geAwa_GBiK_lNx_KE4PzzUfybjFFLZsX/view?usp=drive_link',
+ destinationFilename: 'myinfomate.apk',
+ //FOR NOW ANDROID ONLY - ABILITY TO VALIDATE CHECKSUM OF FILE:
+ //sha256checksum: 'd6da28451a1e15cf7a75f2c3f151befad3b80ad0bb232ab15c20897e54f21478',
+ )
+ .listen(
+ (OtaEvent event) {
+ setState(() => currentEvent = event);
+ },
+ );*/
+ // ignore: avoid_catches_without_on_clauses
+ } catch (e) {
+ print('Failed to make OTA update. Details: $e');
+ }
+ }
Future download(BuildContext buildContext, TabletAppContext tabletAppContext) async {
bool isAllLanguages = true;
@@ -31,6 +65,14 @@ class _DownloadConfigurationWidgetState extends State statuses = await [
+ Permission.requestInstallPackages,
+ ].request();
+ tryOtaUpdate();
+ }
+
ExportConfigurationDTO? exportConfigurationDTO;
try{
// Retrieve all url from resource to download (get all resource from configuration en somme)
diff --git a/macos/Flutter/ephemeral/Flutter-Generated.xcconfig b/macos/Flutter/ephemeral/Flutter-Generated.xcconfig
index 017ccc3..d2f3d74 100644
--- a/macos/Flutter/ephemeral/Flutter-Generated.xcconfig
+++ b/macos/Flutter/ephemeral/Flutter-Generated.xcconfig
@@ -1,10 +1,10 @@
// This is a generated file; do not edit or check into version control.
-FLUTTER_ROOT=/Users/thomasfransolet/Documents/flutter
-FLUTTER_APPLICATION_PATH=/Users/thomasfransolet/Documents/Proj/MyMuseum/tablet_app
+FLUTTER_ROOT=C:\PROJ\flutter
+FLUTTER_APPLICATION_PATH=C:\Users\ThomasFransolet\Documents\Documents\Perso\MuseeDeLaFraise\tablet-app
COCOAPODS_PARALLEL_CODE_SIGN=true
FLUTTER_BUILD_DIR=build
-FLUTTER_BUILD_NAME=2.0.3
-FLUTTER_BUILD_NUMBER=9
+FLUTTER_BUILD_NAME=2.0.6
+FLUTTER_BUILD_NUMBER=12
DART_OBFUSCATION=false
TRACK_WIDGET_CREATION=true
TREE_SHAKE_ICONS=false
diff --git a/macos/Flutter/ephemeral/flutter_export_environment.sh b/macos/Flutter/ephemeral/flutter_export_environment.sh
index 0ddf898..dfd6748 100755
--- a/macos/Flutter/ephemeral/flutter_export_environment.sh
+++ b/macos/Flutter/ephemeral/flutter_export_environment.sh
@@ -1,11 +1,11 @@
#!/bin/sh
# This is a generated file; do not edit or check into version control.
-export "FLUTTER_ROOT=/Users/thomasfransolet/Documents/flutter"
-export "FLUTTER_APPLICATION_PATH=/Users/thomasfransolet/Documents/Proj/MyMuseum/tablet_app"
+export "FLUTTER_ROOT=C:\PROJ\flutter"
+export "FLUTTER_APPLICATION_PATH=C:\Users\ThomasFransolet\Documents\Documents\Perso\MuseeDeLaFraise\tablet-app"
export "COCOAPODS_PARALLEL_CODE_SIGN=true"
export "FLUTTER_BUILD_DIR=build"
-export "FLUTTER_BUILD_NAME=2.0.3"
-export "FLUTTER_BUILD_NUMBER=9"
+export "FLUTTER_BUILD_NAME=2.0.6"
+export "FLUTTER_BUILD_NUMBER=12"
export "DART_OBFUSCATION=false"
export "TRACK_WIDGET_CREATION=true"
export "TREE_SHAKE_ICONS=false"
diff --git a/manager_api_old/.gitignore b/manager_api_old/.gitignore
deleted file mode 100644
index 7c28044..0000000
--- a/manager_api_old/.gitignore
+++ /dev/null
@@ -1,27 +0,0 @@
-# See https://www.dartlang.org/tools/private-files.html
-
-# Files and directories created by pub
-.buildlog
-.packages
-.project
-.pub/
-build/
-**/packages/
-
-# Files created by dart2js
-# (Most Dart developers will use pub build to compile Dart, use/modify these
-# rules if you intend to use dart2js directly
-# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
-# differentiate from explicit Javascript files)
-*.dart.js
-*.part.js
-*.js.deps
-*.js.map
-*.info.json
-
-# Directory created by dartdoc
-doc/api/
-
-# Don't commit pubspec lock file
-# (Library packages only! Remove pattern if developing an application package)
-pubspec.lock
diff --git a/manager_api_old/.openapi-generator-ignore b/manager_api_old/.openapi-generator-ignore
deleted file mode 100644
index 7484ee5..0000000
--- a/manager_api_old/.openapi-generator-ignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# OpenAPI Generator Ignore
-# Generated by openapi-generator https://github.com/openapitools/openapi-generator
-
-# Use this file to prevent files from being overwritten by the generator.
-# The patterns follow closely to .gitignore or .dockerignore.
-
-# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
-#ApiClient.cs
-
-# You can match any string of characters against a directory, file or extension with a single asterisk (*):
-#foo/*/qux
-# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
-
-# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
-#foo/**/qux
-# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
-
-# You can also negate patterns with an exclamation (!).
-# For example, you can ignore all files in a docs folder with the file extension .md:
-#docs/*.md
-# Then explicitly reverse the ignore rule for a single file:
-#!docs/README.md
diff --git a/manager_api_old/.openapi-generator/FILES b/manager_api_old/.openapi-generator/FILES
deleted file mode 100644
index 605784e..0000000
--- a/manager_api_old/.openapi-generator/FILES
+++ /dev/null
@@ -1,90 +0,0 @@
-.gitignore
-.travis.yml
-README.md
-doc/AuthenticationApi.md
-doc/ConfigurationApi.md
-doc/ConfigurationDTO.md
-doc/DeviceApi.md
-doc/DeviceDTO.md
-doc/DeviceDetailDTO.md
-doc/DeviceDetailDTOAllOf.md
-doc/ExportConfigurationDTO.md
-doc/ExportConfigurationDTOAllOf.md
-doc/GeoPointDTO.md
-doc/ImageDTO.md
-doc/ImageGeoPoint.md
-doc/LevelDTO.md
-doc/LoginDTO.md
-doc/MapDTO.md
-doc/MapTypeApp.md
-doc/MenuDTO.md
-doc/PlayerMessageDTO.md
-doc/QuestionDTO.md
-doc/QuizzDTO.md
-doc/ResourceApi.md
-doc/ResourceDTO.md
-doc/ResourceType.md
-doc/ResponseDTO.md
-doc/SectionApi.md
-doc/SectionDTO.md
-doc/SectionType.md
-doc/SliderDTO.md
-doc/TokenDTO.md
-doc/TranslationDTO.md
-doc/User.md
-doc/UserApi.md
-doc/UserDetailDTO.md
-doc/VideoDTO.md
-doc/WebDTO.md
-git_push.sh
-lib/api.dart
-lib/api/authentication_api.dart
-lib/api/configuration_api.dart
-lib/api/device_api.dart
-lib/api/resource_api.dart
-lib/api/section_api.dart
-lib/api/user_api.dart
-lib/api_client.dart
-lib/api_exception.dart
-lib/api_helper.dart
-lib/auth/api_key_auth.dart
-lib/auth/authentication.dart
-lib/auth/http_basic_auth.dart
-lib/auth/http_bearer_auth.dart
-lib/auth/oauth.dart
-lib/model/configuration_dto.dart
-lib/model/device_detail_dto.dart
-lib/model/device_detail_dto_all_of.dart
-lib/model/device_dto.dart
-lib/model/export_configuration_dto.dart
-lib/model/export_configuration_dto_all_of.dart
-lib/model/geo_point_dto.dart
-lib/model/image_dto.dart
-lib/model/image_geo_point.dart
-lib/model/level_dto.dart
-lib/model/login_dto.dart
-lib/model/map_dto.dart
-lib/model/map_type_app.dart
-lib/model/menu_dto.dart
-lib/model/player_message_dto.dart
-lib/model/question_dto.dart
-lib/model/quizz_dto.dart
-lib/model/resource_dto.dart
-lib/model/resource_type.dart
-lib/model/response_dto.dart
-lib/model/section_dto.dart
-lib/model/section_type.dart
-lib/model/slider_dto.dart
-lib/model/token_dto.dart
-lib/model/translation_dto.dart
-lib/model/user.dart
-lib/model/user_detail_dto.dart
-lib/model/video_dto.dart
-lib/model/web_dto.dart
-pubspec.yaml
-test/export_configuration_dto_all_of_test.dart
-test/export_configuration_dto_test.dart
-test/level_dto_test.dart
-test/question_dto_test.dart
-test/quizz_dto_test.dart
-test/response_dto_test.dart
diff --git a/manager_api_old/.openapi-generator/VERSION b/manager_api_old/.openapi-generator/VERSION
deleted file mode 100644
index acf69b4..0000000
--- a/manager_api_old/.openapi-generator/VERSION
+++ /dev/null
@@ -1 +0,0 @@
-5.1.0
\ No newline at end of file
diff --git a/manager_api_old/.travis.yml b/manager_api_old/.travis.yml
deleted file mode 100644
index 1a3af66..0000000
--- a/manager_api_old/.travis.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-#
-# AUTO-GENERATED FILE, DO NOT MODIFY!
-#
-# https://docs.travis-ci.com/user/languages/dart/
-#
-language: dart
-dart:
-# Install a specific stable release
-- "2.2.0"
-install:
-- pub get
-
-script:
-- pub run test
diff --git a/manager_api_old/README.md b/manager_api_old/README.md
deleted file mode 100644
index c06ab5c..0000000
--- a/manager_api_old/README.md
+++ /dev/null
@@ -1,161 +0,0 @@
-# managerapi
-API Manager Service
-
-This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
-
-- API version: Version Alpha
-- Build package: org.openapitools.codegen.languages.DartClientCodegen
-
-## Requirements
-
-Dart 2.0 or later
-
-## Installation & Usage
-
-### Github
-If this Dart package is published to Github, add the following dependency to your pubspec.yaml
-```
-dependencies:
- managerapi:
- git: https://github.com/GIT_USER_ID/GIT_REPO_ID.git
-```
-
-### Local
-To use the package in your local drive, add the following dependency to your pubspec.yaml
-```
-dependencies:
- managerapi:
- path: /path/to/managerapi
-```
-
-## Tests
-
-TODO
-
-## Getting Started
-
-Please follow the [installation procedure](#installation--usage) and then run the following:
-
-```dart
-import 'package:managerapi/api.dart';
-
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = AuthenticationApi();
-final grantType = grantType_example; // String |
-final username = username_example; // String |
-final password = password_example; // String |
-final clientId = clientId_example; // String |
-final clientSecret = clientSecret_example; // String |
-
-try {
- final result = api_instance.authenticationAuthenticateWithForm(grantType, username, password, clientId, clientSecret);
- print(result);
-} catch (e) {
- print('Exception when calling AuthenticationApi->authenticationAuthenticateWithForm: $e\n');
-}
-
-```
-
-## Documentation for API Endpoints
-
-All URIs are relative to *http://192.168.31.140*
-
-Class | Method | HTTP request | Description
------------- | ------------- | ------------- | -------------
-*AuthenticationApi* | [**authenticationAuthenticateWithForm**](doc\/AuthenticationApi.md#authenticationauthenticatewithform) | **POST** /api/Authentication/Token |
-*AuthenticationApi* | [**authenticationAuthenticateWithJson**](doc\/AuthenticationApi.md#authenticationauthenticatewithjson) | **POST** /api/Authentication/Authenticate |
-*ConfigurationApi* | [**configurationCreate**](doc\/ConfigurationApi.md#configurationcreate) | **POST** /api/Configuration |
-*ConfigurationApi* | [**configurationDelete**](doc\/ConfigurationApi.md#configurationdelete) | **DELETE** /api/Configuration/{id} |
-*ConfigurationApi* | [**configurationExport**](doc\/ConfigurationApi.md#configurationexport) | **GET** /api/Configuration/{id}/export |
-*ConfigurationApi* | [**configurationGet**](doc\/ConfigurationApi.md#configurationget) | **GET** /api/Configuration |
-*ConfigurationApi* | [**configurationGetDetail**](doc\/ConfigurationApi.md#configurationgetdetail) | **GET** /api/Configuration/{id} |
-*ConfigurationApi* | [**configurationImport**](doc\/ConfigurationApi.md#configurationimport) | **POST** /api/Configuration/import |
-*ConfigurationApi* | [**configurationUpdate**](doc\/ConfigurationApi.md#configurationupdate) | **PUT** /api/Configuration |
-*DeviceApi* | [**deviceCreate**](doc\/DeviceApi.md#devicecreate) | **POST** /api/Device |
-*DeviceApi* | [**deviceDelete**](doc\/DeviceApi.md#devicedelete) | **DELETE** /api/Device/{id} |
-*DeviceApi* | [**deviceGet**](doc\/DeviceApi.md#deviceget) | **GET** /api/Device |
-*DeviceApi* | [**deviceGetDetail**](doc\/DeviceApi.md#devicegetdetail) | **GET** /api/Device/{id}/detail |
-*DeviceApi* | [**deviceUpdate**](doc\/DeviceApi.md#deviceupdate) | **PUT** /api/Device |
-*DeviceApi* | [**deviceUpdateMainInfos**](doc\/DeviceApi.md#deviceupdatemaininfos) | **PUT** /api/Device/mainInfos |
-*ResourceApi* | [**resourceCreate**](doc\/ResourceApi.md#resourcecreate) | **POST** /api/Resource |
-*ResourceApi* | [**resourceDelete**](doc\/ResourceApi.md#resourcedelete) | **DELETE** /api/Resource/{id} |
-*ResourceApi* | [**resourceGet**](doc\/ResourceApi.md#resourceget) | **GET** /api/Resource |
-*ResourceApi* | [**resourceGetDetail**](doc\/ResourceApi.md#resourcegetdetail) | **GET** /api/Resource/{id}/detail |
-*ResourceApi* | [**resourceShow**](doc\/ResourceApi.md#resourceshow) | **GET** /api/Resource/{id} |
-*ResourceApi* | [**resourceUpdate**](doc\/ResourceApi.md#resourceupdate) | **PUT** /api/Resource |
-*ResourceApi* | [**resourceUpload**](doc\/ResourceApi.md#resourceupload) | **POST** /api/Resource/upload |
-*SectionApi* | [**sectionCreate**](doc\/SectionApi.md#sectioncreate) | **POST** /api/Section |
-*SectionApi* | [**sectionDelete**](doc\/SectionApi.md#sectiondelete) | **DELETE** /api/Section/{id} |
-*SectionApi* | [**sectionDeleteAllForConfiguration**](doc\/SectionApi.md#sectiondeleteallforconfiguration) | **DELETE** /api/Section/configuration/{id} |
-*SectionApi* | [**sectionGet**](doc\/SectionApi.md#sectionget) | **GET** /api/Section |
-*SectionApi* | [**sectionGetAllSectionSubSections**](doc\/SectionApi.md#sectiongetallsectionsubsections) | **GET** /api/Section/{id}/subsections |
-*SectionApi* | [**sectionGetDetail**](doc\/SectionApi.md#sectiongetdetail) | **GET** /api/Section/{id} |
-*SectionApi* | [**sectionGetFromConfiguration**](doc\/SectionApi.md#sectiongetfromconfiguration) | **GET** /api/Section/configuration/{id} |
-*SectionApi* | [**sectionGetMapDTO**](doc\/SectionApi.md#sectiongetmapdto) | **GET** /api/Section/MapDTO |
-*SectionApi* | [**sectionGetMenuDTO**](doc\/SectionApi.md#sectiongetmenudto) | **GET** /api/Section/MenuDTO |
-*SectionApi* | [**sectionGetQuizzDTO**](doc\/SectionApi.md#sectiongetquizzdto) | **GET** /api/Section/QuizzDTO |
-*SectionApi* | [**sectionGetSliderDTO**](doc\/SectionApi.md#sectiongetsliderdto) | **GET** /api/Section/SliderDTO |
-*SectionApi* | [**sectionGetVideoDTO**](doc\/SectionApi.md#sectiongetvideodto) | **GET** /api/Section/VideoDTO |
-*SectionApi* | [**sectionGetWebDTO**](doc\/SectionApi.md#sectiongetwebdto) | **GET** /api/Section/WebDTO |
-*SectionApi* | [**sectionPlayerMessageDTO**](doc\/SectionApi.md#sectionplayermessagedto) | **GET** /api/Section/PlayerMessageDTO |
-*SectionApi* | [**sectionUpdate**](doc\/SectionApi.md#sectionupdate) | **PUT** /api/Section |
-*SectionApi* | [**sectionUpdateOrder**](doc\/SectionApi.md#sectionupdateorder) | **PUT** /api/Section/order |
-*UserApi* | [**userCreateUser**](doc\/UserApi.md#usercreateuser) | **POST** /api/User |
-*UserApi* | [**userDeleteUser**](doc\/UserApi.md#userdeleteuser) | **DELETE** /api/User/{id} |
-*UserApi* | [**userGet**](doc\/UserApi.md#userget) | **GET** /api/User |
-*UserApi* | [**userGetDetail**](doc\/UserApi.md#usergetdetail) | **GET** /api/User/{id} |
-*UserApi* | [**userUpdateUser**](doc\/UserApi.md#userupdateuser) | **PUT** /api/User |
-
-
-## Documentation For Models
-
- - [ConfigurationDTO](doc\/ConfigurationDTO.md)
- - [DeviceDTO](doc\/DeviceDTO.md)
- - [DeviceDetailDTO](doc\/DeviceDetailDTO.md)
- - [DeviceDetailDTOAllOf](doc\/DeviceDetailDTOAllOf.md)
- - [ExportConfigurationDTO](doc\/ExportConfigurationDTO.md)
- - [ExportConfigurationDTOAllOf](doc\/ExportConfigurationDTOAllOf.md)
- - [GeoPointDTO](doc\/GeoPointDTO.md)
- - [ImageDTO](doc\/ImageDTO.md)
- - [ImageGeoPoint](doc\/ImageGeoPoint.md)
- - [LevelDTO](doc\/LevelDTO.md)
- - [LoginDTO](doc\/LoginDTO.md)
- - [MapDTO](doc\/MapDTO.md)
- - [MapTypeApp](doc\/MapTypeApp.md)
- - [MenuDTO](doc\/MenuDTO.md)
- - [PlayerMessageDTO](doc\/PlayerMessageDTO.md)
- - [QuestionDTO](doc\/QuestionDTO.md)
- - [QuizzDTO](doc\/QuizzDTO.md)
- - [ResourceDTO](doc\/ResourceDTO.md)
- - [ResourceType](doc\/ResourceType.md)
- - [ResponseDTO](doc\/ResponseDTO.md)
- - [SectionDTO](doc\/SectionDTO.md)
- - [SectionType](doc\/SectionType.md)
- - [SliderDTO](doc\/SliderDTO.md)
- - [TokenDTO](doc\/TokenDTO.md)
- - [TranslationDTO](doc\/TranslationDTO.md)
- - [User](doc\/User.md)
- - [UserDetailDTO](doc\/UserDetailDTO.md)
- - [VideoDTO](doc\/VideoDTO.md)
- - [WebDTO](doc\/WebDTO.md)
-
-
-## Documentation For Authorization
-
-
-## bearer
-
-- **Type**: OAuth
-- **Flow**: password
-- **Authorization URL**: /authentication/Token
-- **Scopes**:
- - **Manager-api**: Manager WebAPI
-
-
-## Author
-
-
-
-
diff --git a/manager_api_old/doc/AuthenticationApi.md b/manager_api_old/doc/AuthenticationApi.md
deleted file mode 100644
index 240d621..0000000
--- a/manager_api_old/doc/AuthenticationApi.md
+++ /dev/null
@@ -1,109 +0,0 @@
-# managerapi.api.AuthenticationApi
-
-## Load the API package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-All URIs are relative to *http://192.168.31.140*
-
-Method | HTTP request | Description
-------------- | ------------- | -------------
-[**authenticationAuthenticateWithForm**](AuthenticationApi.md#authenticationauthenticatewithform) | **POST** /api/Authentication/Token |
-[**authenticationAuthenticateWithJson**](AuthenticationApi.md#authenticationauthenticatewithjson) | **POST** /api/Authentication/Authenticate |
-
-
-# **authenticationAuthenticateWithForm**
-> TokenDTO authenticationAuthenticateWithForm(grantType, username, password, clientId, clientSecret)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = AuthenticationApi();
-final grantType = grantType_example; // String |
-final username = username_example; // String |
-final password = password_example; // String |
-final clientId = clientId_example; // String |
-final clientSecret = clientSecret_example; // String |
-
-try {
- final result = api_instance.authenticationAuthenticateWithForm(grantType, username, password, clientId, clientSecret);
- print(result);
-} catch (e) {
- print('Exception when calling AuthenticationApi->authenticationAuthenticateWithForm: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **grantType** | **String**| | [optional]
- **username** | **String**| | [optional]
- **password** | **String**| | [optional]
- **clientId** | **String**| | [optional]
- **clientSecret** | **String**| | [optional]
-
-### Return type
-
-[**TokenDTO**](TokenDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: multipart/form-data
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **authenticationAuthenticateWithJson**
-> TokenDTO authenticationAuthenticateWithJson(loginDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = AuthenticationApi();
-final loginDTO = LoginDTO(); // LoginDTO |
-
-try {
- final result = api_instance.authenticationAuthenticateWithJson(loginDTO);
- print(result);
-} catch (e) {
- print('Exception when calling AuthenticationApi->authenticationAuthenticateWithJson: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **loginDTO** | [**LoginDTO**](LoginDTO.md)| |
-
-### Return type
-
-[**TokenDTO**](TokenDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/manager_api_old/doc/ConfigurationApi.md b/manager_api_old/doc/ConfigurationApi.md
deleted file mode 100644
index 9783da9..0000000
--- a/manager_api_old/doc/ConfigurationApi.md
+++ /dev/null
@@ -1,317 +0,0 @@
-# managerapi.api.ConfigurationApi
-
-## Load the API package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-All URIs are relative to *http://192.168.31.140*
-
-Method | HTTP request | Description
-------------- | ------------- | -------------
-[**configurationCreate**](ConfigurationApi.md#configurationcreate) | **POST** /api/Configuration |
-[**configurationDelete**](ConfigurationApi.md#configurationdelete) | **DELETE** /api/Configuration/{id} |
-[**configurationExport**](ConfigurationApi.md#configurationexport) | **GET** /api/Configuration/{id}/export |
-[**configurationGet**](ConfigurationApi.md#configurationget) | **GET** /api/Configuration |
-[**configurationGetDetail**](ConfigurationApi.md#configurationgetdetail) | **GET** /api/Configuration/{id} |
-[**configurationImport**](ConfigurationApi.md#configurationimport) | **POST** /api/Configuration/import |
-[**configurationUpdate**](ConfigurationApi.md#configurationupdate) | **PUT** /api/Configuration |
-
-
-# **configurationCreate**
-> ConfigurationDTO configurationCreate(configurationDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-final configurationDTO = ConfigurationDTO(); // ConfigurationDTO |
-
-try {
- final result = api_instance.configurationCreate(configurationDTO);
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationCreate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **configurationDTO** | [**ConfigurationDTO**](ConfigurationDTO.md)| |
-
-### Return type
-
-[**ConfigurationDTO**](ConfigurationDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **configurationDelete**
-> String configurationDelete(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.configurationDelete(id);
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationDelete: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **configurationExport**
-> ExportConfigurationDTO configurationExport(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.configurationExport(id);
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationExport: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-[**ExportConfigurationDTO**](ExportConfigurationDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **configurationGet**
-> List configurationGet()
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-
-try {
- final result = api_instance.configurationGet();
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationGet: $e\n');
-}
-```
-
-### Parameters
-This endpoint does not need any parameter.
-
-### Return type
-
-[**List**](ConfigurationDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **configurationGetDetail**
-> ConfigurationDTO configurationGetDetail(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.configurationGetDetail(id);
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationGetDetail: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-[**ConfigurationDTO**](ConfigurationDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **configurationImport**
-> String configurationImport(exportConfigurationDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-final exportConfigurationDTO = ExportConfigurationDTO(); // ExportConfigurationDTO |
-
-try {
- final result = api_instance.configurationImport(exportConfigurationDTO);
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationImport: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **exportConfigurationDTO** | [**ExportConfigurationDTO**](ExportConfigurationDTO.md)| |
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **configurationUpdate**
-> ConfigurationDTO configurationUpdate(configurationDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ConfigurationApi();
-final configurationDTO = ConfigurationDTO(); // ConfigurationDTO |
-
-try {
- final result = api_instance.configurationUpdate(configurationDTO);
- print(result);
-} catch (e) {
- print('Exception when calling ConfigurationApi->configurationUpdate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **configurationDTO** | [**ConfigurationDTO**](ConfigurationDTO.md)| |
-
-### Return type
-
-[**ConfigurationDTO**](ConfigurationDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/manager_api_old/doc/ConfigurationDTO.md b/manager_api_old/doc/ConfigurationDTO.md
deleted file mode 100644
index 425da4d..0000000
--- a/manager_api_old/doc/ConfigurationDTO.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# managerapi.model.ConfigurationDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | | [optional]
-**label** | **String** | | [optional]
-**primaryColor** | **String** | | [optional]
-**secondaryColor** | **String** | | [optional]
-**languages** | **List** | | [optional] [default to const []]
-**dateCreation** | [**DateTime**](DateTime.md) | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/DeviceApi.md b/manager_api_old/doc/DeviceApi.md
deleted file mode 100644
index da2f466..0000000
--- a/manager_api_old/doc/DeviceApi.md
+++ /dev/null
@@ -1,273 +0,0 @@
-# managerapi.api.DeviceApi
-
-## Load the API package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-All URIs are relative to *http://192.168.31.140*
-
-Method | HTTP request | Description
-------------- | ------------- | -------------
-[**deviceCreate**](DeviceApi.md#devicecreate) | **POST** /api/Device |
-[**deviceDelete**](DeviceApi.md#devicedelete) | **DELETE** /api/Device/{id} |
-[**deviceGet**](DeviceApi.md#deviceget) | **GET** /api/Device |
-[**deviceGetDetail**](DeviceApi.md#devicegetdetail) | **GET** /api/Device/{id}/detail |
-[**deviceUpdate**](DeviceApi.md#deviceupdate) | **PUT** /api/Device |
-[**deviceUpdateMainInfos**](DeviceApi.md#deviceupdatemaininfos) | **PUT** /api/Device/mainInfos |
-
-
-# **deviceCreate**
-> DeviceDetailDTO deviceCreate(deviceDetailDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = DeviceApi();
-final deviceDetailDTO = DeviceDetailDTO(); // DeviceDetailDTO |
-
-try {
- final result = api_instance.deviceCreate(deviceDetailDTO);
- print(result);
-} catch (e) {
- print('Exception when calling DeviceApi->deviceCreate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **deviceDetailDTO** | [**DeviceDetailDTO**](DeviceDetailDTO.md)| |
-
-### Return type
-
-[**DeviceDetailDTO**](DeviceDetailDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **deviceDelete**
-> String deviceDelete(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = DeviceApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.deviceDelete(id);
- print(result);
-} catch (e) {
- print('Exception when calling DeviceApi->deviceDelete: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **deviceGet**
-> List deviceGet()
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = DeviceApi();
-
-try {
- final result = api_instance.deviceGet();
- print(result);
-} catch (e) {
- print('Exception when calling DeviceApi->deviceGet: $e\n');
-}
-```
-
-### Parameters
-This endpoint does not need any parameter.
-
-### Return type
-
-[**List**](DeviceDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **deviceGetDetail**
-> DeviceDetailDTO deviceGetDetail(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = DeviceApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.deviceGetDetail(id);
- print(result);
-} catch (e) {
- print('Exception when calling DeviceApi->deviceGetDetail: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-[**DeviceDetailDTO**](DeviceDetailDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **deviceUpdate**
-> DeviceDetailDTO deviceUpdate(deviceDetailDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = DeviceApi();
-final deviceDetailDTO = DeviceDetailDTO(); // DeviceDetailDTO |
-
-try {
- final result = api_instance.deviceUpdate(deviceDetailDTO);
- print(result);
-} catch (e) {
- print('Exception when calling DeviceApi->deviceUpdate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **deviceDetailDTO** | [**DeviceDetailDTO**](DeviceDetailDTO.md)| |
-
-### Return type
-
-[**DeviceDetailDTO**](DeviceDetailDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **deviceUpdateMainInfos**
-> DeviceDTO deviceUpdateMainInfos(deviceDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = DeviceApi();
-final deviceDTO = DeviceDTO(); // DeviceDTO |
-
-try {
- final result = api_instance.deviceUpdateMainInfos(deviceDTO);
- print(result);
-} catch (e) {
- print('Exception when calling DeviceApi->deviceUpdateMainInfos: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **deviceDTO** | [**DeviceDTO**](DeviceDTO.md)| |
-
-### Return type
-
-[**DeviceDTO**](DeviceDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/manager_api_old/doc/DeviceDTO.md b/manager_api_old/doc/DeviceDTO.md
deleted file mode 100644
index 62df565..0000000
--- a/manager_api_old/doc/DeviceDTO.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# managerapi.model.DeviceDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | | [optional]
-**identifier** | **String** | | [optional]
-**name** | **String** | | [optional]
-**ipAddressWLAN** | **String** | | [optional]
-**ipAddressETH** | **String** | | [optional]
-**configurationId** | **String** | | [optional]
-**configuration** | **String** | | [optional]
-**connected** | **bool** | | [optional]
-**dateCreation** | [**DateTime**](DateTime.md) | | [optional]
-**dateUpdate** | [**DateTime**](DateTime.md) | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/DeviceDetailDTO.md b/manager_api_old/doc/DeviceDetailDTO.md
deleted file mode 100644
index 4968995..0000000
--- a/manager_api_old/doc/DeviceDetailDTO.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# managerapi.model.DeviceDetailDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | | [optional]
-**identifier** | **String** | | [optional]
-**name** | **String** | | [optional]
-**ipAddressWLAN** | **String** | | [optional]
-**ipAddressETH** | **String** | | [optional]
-**configurationId** | **String** | | [optional]
-**configuration** | **String** | | [optional]
-**connected** | **bool** | | [optional]
-**dateCreation** | [**DateTime**](DateTime.md) | | [optional]
-**dateUpdate** | [**DateTime**](DateTime.md) | | [optional]
-**connectionLevel** | **String** | | [optional]
-**lastConnectionLevel** | [**DateTime**](DateTime.md) | | [optional]
-**batteryLevel** | **String** | | [optional]
-**lastBatteryLevel** | [**DateTime**](DateTime.md) | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/DeviceDetailDTOAllOf.md b/manager_api_old/doc/DeviceDetailDTOAllOf.md
deleted file mode 100644
index 0cc0886..0000000
--- a/manager_api_old/doc/DeviceDetailDTOAllOf.md
+++ /dev/null
@@ -1,18 +0,0 @@
-# managerapi.model.DeviceDetailDTOAllOf
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**connectionLevel** | **String** | | [optional]
-**lastConnectionLevel** | [**DateTime**](DateTime.md) | | [optional]
-**batteryLevel** | **String** | | [optional]
-**lastBatteryLevel** | [**DateTime**](DateTime.md) | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ExportConfigurationDTO.md b/manager_api_old/doc/ExportConfigurationDTO.md
deleted file mode 100644
index 7c7c3f9..0000000
--- a/manager_api_old/doc/ExportConfigurationDTO.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# managerapi.model.ExportConfigurationDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | | [optional]
-**label** | **String** | | [optional]
-**primaryColor** | **String** | | [optional]
-**secondaryColor** | **String** | | [optional]
-**languages** | **List** | | [optional] [default to const []]
-**dateCreation** | [**DateTime**](DateTime.md) | | [optional]
-**sections** | [**List**](SectionDTO.md) | | [optional] [default to const []]
-**resources** | [**List**](ResourceDTO.md) | | [optional] [default to const []]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ExportConfigurationDTOAllOf.md b/manager_api_old/doc/ExportConfigurationDTOAllOf.md
deleted file mode 100644
index e369543..0000000
--- a/manager_api_old/doc/ExportConfigurationDTOAllOf.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# managerapi.model.ExportConfigurationDTOAllOf
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**sections** | [**List**](SectionDTO.md) | | [optional] [default to const []]
-**resources** | [**List**](ResourceDTO.md) | | [optional] [default to const []]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/GeoPointDTO.md b/manager_api_old/doc/GeoPointDTO.md
deleted file mode 100644
index bb5d545..0000000
--- a/manager_api_old/doc/GeoPointDTO.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# managerapi.model.GeoPointDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **int** | | [optional]
-**title** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**description** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**images** | [**List**](ImageGeoPoint.md) | | [optional] [default to const []]
-**latitude** | **String** | | [optional]
-**longitude** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ImageDTO.md b/manager_api_old/doc/ImageDTO.md
deleted file mode 100644
index 1f2c7b5..0000000
--- a/manager_api_old/doc/ImageDTO.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# managerapi.model.ImageDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**title** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**description** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**resourceId** | **String** | | [optional]
-**source_** | **String** | | [optional]
-**order** | **int** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ImageGeoPoint.md b/manager_api_old/doc/ImageGeoPoint.md
deleted file mode 100644
index e290427..0000000
--- a/manager_api_old/doc/ImageGeoPoint.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# managerapi.model.ImageGeoPoint
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**imageResourceId** | **String** | | [optional]
-**imageSource** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/LevelDTO.md b/manager_api_old/doc/LevelDTO.md
deleted file mode 100644
index af91156..0000000
--- a/manager_api_old/doc/LevelDTO.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# managerapi.model.LevelDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**label** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**resourceId** | **String** | | [optional]
-**source_** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/LoginDTO.md b/manager_api_old/doc/LoginDTO.md
deleted file mode 100644
index c5d85da..0000000
--- a/manager_api_old/doc/LoginDTO.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# managerapi.model.LoginDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**email** | **String** | | [optional]
-**password** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/MapDTO.md b/manager_api_old/doc/MapDTO.md
deleted file mode 100644
index 656bd08..0000000
--- a/manager_api_old/doc/MapDTO.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# managerapi.model.MapDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**zoom** | **int** | | [optional]
-**mapType** | [**MapTypeApp**](MapTypeApp.md) | | [optional]
-**points** | [**List**](GeoPointDTO.md) | | [optional] [default to const []]
-**iconResourceId** | **String** | | [optional]
-**iconSource** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/MapType.md b/manager_api_old/doc/MapType.md
deleted file mode 100644
index 31651b0..0000000
--- a/manager_api_old/doc/MapType.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# managerapi.model.MapType
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/MapTypeApp.md b/manager_api_old/doc/MapTypeApp.md
deleted file mode 100644
index 4d1d1a4..0000000
--- a/manager_api_old/doc/MapTypeApp.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# managerapi.model.MapTypeApp
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/MenuDTO.md b/manager_api_old/doc/MenuDTO.md
deleted file mode 100644
index 960de2c..0000000
--- a/manager_api_old/doc/MenuDTO.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# managerapi.model.MenuDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**sections** | [**List**](SectionDTO.md) | | [optional] [default to const []]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/PlayerMessageDTO.md b/manager_api_old/doc/PlayerMessageDTO.md
deleted file mode 100644
index 0f07218..0000000
--- a/manager_api_old/doc/PlayerMessageDTO.md
+++ /dev/null
@@ -1,16 +0,0 @@
-# managerapi.model.PlayerMessageDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**configChanged** | **bool** | | [optional]
-**isDeleted** | **bool** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/QuestionDTO.md b/manager_api_old/doc/QuestionDTO.md
deleted file mode 100644
index 1827076..0000000
--- a/manager_api_old/doc/QuestionDTO.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# managerapi.model.QuestionDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**label** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**responses** | [**List**](ResponseDTO.md) | | [optional] [default to const []]
-**resourceId** | **String** | | [optional]
-**source_** | **String** | | [optional]
-**order** | **int** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/QuizzDTO.md b/manager_api_old/doc/QuizzDTO.md
deleted file mode 100644
index 953a3d7..0000000
--- a/manager_api_old/doc/QuizzDTO.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# managerapi.model.QuizzDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**questions** | [**List**](QuestionDTO.md) | | [optional] [default to const []]
-**badLevel** | [**OneOfLevelDTO**](OneOfLevelDTO.md) | | [optional]
-**mediumLevel** | [**OneOfLevelDTO**](OneOfLevelDTO.md) | | [optional]
-**goodLevel** | [**OneOfLevelDTO**](OneOfLevelDTO.md) | | [optional]
-**greatLevel** | [**OneOfLevelDTO**](OneOfLevelDTO.md) | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ResourceApi.md b/manager_api_old/doc/ResourceApi.md
deleted file mode 100644
index 8efbe20..0000000
--- a/manager_api_old/doc/ResourceApi.md
+++ /dev/null
@@ -1,319 +0,0 @@
-# managerapi.api.ResourceApi
-
-## Load the API package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-All URIs are relative to *http://192.168.31.140*
-
-Method | HTTP request | Description
-------------- | ------------- | -------------
-[**resourceCreate**](ResourceApi.md#resourcecreate) | **POST** /api/Resource |
-[**resourceDelete**](ResourceApi.md#resourcedelete) | **DELETE** /api/Resource/{id} |
-[**resourceGet**](ResourceApi.md#resourceget) | **GET** /api/Resource |
-[**resourceGetDetail**](ResourceApi.md#resourcegetdetail) | **GET** /api/Resource/{id}/detail |
-[**resourceShow**](ResourceApi.md#resourceshow) | **GET** /api/Resource/{id} |
-[**resourceUpdate**](ResourceApi.md#resourceupdate) | **PUT** /api/Resource |
-[**resourceUpload**](ResourceApi.md#resourceupload) | **POST** /api/Resource/upload |
-
-
-# **resourceCreate**
-> ResourceDTO resourceCreate(resourceDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-final resourceDTO = ResourceDTO(); // ResourceDTO |
-
-try {
- final result = api_instance.resourceCreate(resourceDTO);
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceCreate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **resourceDTO** | [**ResourceDTO**](ResourceDTO.md)| |
-
-### Return type
-
-[**ResourceDTO**](ResourceDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **resourceDelete**
-> String resourceDelete(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.resourceDelete(id);
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceDelete: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **resourceGet**
-> List resourceGet()
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-
-try {
- final result = api_instance.resourceGet();
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceGet: $e\n');
-}
-```
-
-### Parameters
-This endpoint does not need any parameter.
-
-### Return type
-
-[**List**](ResourceDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **resourceGetDetail**
-> ResourceDTO resourceGetDetail(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.resourceGetDetail(id);
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceGetDetail: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-[**ResourceDTO**](ResourceDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **resourceShow**
-> MultipartFile resourceShow(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.resourceShow(id);
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceShow: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-[**MultipartFile**](MultipartFile.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/octet-stream, application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **resourceUpdate**
-> ResourceDTO resourceUpdate(resourceDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-final resourceDTO = ResourceDTO(); // ResourceDTO |
-
-try {
- final result = api_instance.resourceUpdate(resourceDTO);
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceUpdate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **resourceDTO** | [**ResourceDTO**](ResourceDTO.md)| |
-
-### Return type
-
-[**ResourceDTO**](ResourceDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **resourceUpload**
-> String resourceUpload(label, type)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = ResourceApi();
-final label = label_example; // String |
-final type = type_example; // String |
-
-try {
- final result = api_instance.resourceUpload(label, type);
- print(result);
-} catch (e) {
- print('Exception when calling ResourceApi->resourceUpload: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **label** | **String**| | [optional]
- **type** | **String**| | [optional]
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: multipart/form-data
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
diff --git a/manager_api_old/doc/ResourceDTO.md b/manager_api_old/doc/ResourceDTO.md
deleted file mode 100644
index d2acd16..0000000
--- a/manager_api_old/doc/ResourceDTO.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# managerapi.model.ResourceDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | | [optional]
-**type** | [**ResourceType**](ResourceType.md) | | [optional]
-**label** | **String** | | [optional]
-**dateCreation** | [**DateTime**](DateTime.md) | | [optional]
-**data** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ResourceDetailDTO.md b/manager_api_old/doc/ResourceDetailDTO.md
deleted file mode 100644
index 12a7f7d..0000000
--- a/manager_api_old/doc/ResourceDetailDTO.md
+++ /dev/null
@@ -1,19 +0,0 @@
-# managerapi.model.ResourceDetailDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**id** | **String** | | [optional]
-**type** | [**ResourceType**](ResourceType.md) | | [optional]
-**label** | **String** | | [optional]
-**dateCreation** | [**DateTime**](DateTime.md) | | [optional]
-**data** | **String** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ResourceType.md b/manager_api_old/doc/ResourceType.md
deleted file mode 100644
index 05e673f..0000000
--- a/manager_api_old/doc/ResourceType.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# managerapi.model.ResourceType
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/ResponseDTO.md b/manager_api_old/doc/ResponseDTO.md
deleted file mode 100644
index 4b5334a..0000000
--- a/manager_api_old/doc/ResponseDTO.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# managerapi.model.ResponseDTO
-
-## Load the model package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**label** | [**List**](TranslationDTO.md) | | [optional] [default to const []]
-**isGood** | **bool** | | [optional]
-**order** | **int** | | [optional]
-
-[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
-
-
diff --git a/manager_api_old/doc/SectionApi.md b/manager_api_old/doc/SectionApi.md
deleted file mode 100644
index 0d62dd8..0000000
--- a/manager_api_old/doc/SectionApi.md
+++ /dev/null
@@ -1,685 +0,0 @@
-# managerapi.api.SectionApi
-
-## Load the API package
-```dart
-import 'package:managerapi/api.dart';
-```
-
-All URIs are relative to *http://192.168.31.140*
-
-Method | HTTP request | Description
-------------- | ------------- | -------------
-[**sectionCreate**](SectionApi.md#sectioncreate) | **POST** /api/Section |
-[**sectionDelete**](SectionApi.md#sectiondelete) | **DELETE** /api/Section/{id} |
-[**sectionDeleteAllForConfiguration**](SectionApi.md#sectiondeleteallforconfiguration) | **DELETE** /api/Section/configuration/{id} |
-[**sectionGet**](SectionApi.md#sectionget) | **GET** /api/Section |
-[**sectionGetAllSectionSubSections**](SectionApi.md#sectiongetallsectionsubsections) | **GET** /api/Section/{id}/subsections |
-[**sectionGetDetail**](SectionApi.md#sectiongetdetail) | **GET** /api/Section/{id} |
-[**sectionGetFromConfiguration**](SectionApi.md#sectiongetfromconfiguration) | **GET** /api/Section/configuration/{id} |
-[**sectionGetMapDTO**](SectionApi.md#sectiongetmapdto) | **GET** /api/Section/MapDTO |
-[**sectionGetMenuDTO**](SectionApi.md#sectiongetmenudto) | **GET** /api/Section/MenuDTO |
-[**sectionGetQuizzDTO**](SectionApi.md#sectiongetquizzdto) | **GET** /api/Section/QuizzDTO |
-[**sectionGetSliderDTO**](SectionApi.md#sectiongetsliderdto) | **GET** /api/Section/SliderDTO |
-[**sectionGetVideoDTO**](SectionApi.md#sectiongetvideodto) | **GET** /api/Section/VideoDTO |
-[**sectionGetWebDTO**](SectionApi.md#sectiongetwebdto) | **GET** /api/Section/WebDTO |
-[**sectionPlayerMessageDTO**](SectionApi.md#sectionplayermessagedto) | **GET** /api/Section/PlayerMessageDTO |
-[**sectionUpdate**](SectionApi.md#sectionupdate) | **PUT** /api/Section |
-[**sectionUpdateOrder**](SectionApi.md#sectionupdateorder) | **PUT** /api/Section/order |
-
-
-# **sectionCreate**
-> SectionDTO sectionCreate(sectionDTO)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = SectionApi();
-final sectionDTO = SectionDTO(); // SectionDTO |
-
-try {
- final result = api_instance.sectionCreate(sectionDTO);
- print(result);
-} catch (e) {
- print('Exception when calling SectionApi->sectionCreate: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **sectionDTO** | [**SectionDTO**](SectionDTO.md)| |
-
-### Return type
-
-[**SectionDTO**](SectionDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: application/json
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **sectionDelete**
-> String sectionDelete(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = SectionApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.sectionDelete(id);
- print(result);
-} catch (e) {
- print('Exception when calling SectionApi->sectionDelete: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **sectionDeleteAllForConfiguration**
-> String sectionDeleteAllForConfiguration(id)
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = SectionApi();
-final id = id_example; // String |
-
-try {
- final result = api_instance.sectionDeleteAllForConfiguration(id);
- print(result);
-} catch (e) {
- print('Exception when calling SectionApi->sectionDeleteAllForConfiguration: $e\n');
-}
-```
-
-### Parameters
-
-Name | Type | Description | Notes
-------------- | ------------- | ------------- | -------------
- **id** | **String**| |
-
-### Return type
-
-**String**
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **sectionGet**
-> List sectionGet()
-
-
-
-### Example
-```dart
-import 'package:managerapi/api.dart';
-// TODO Configure OAuth2 access token for authorization: bearer
-//defaultApiClient.getAuthentication('bearer').accessToken = 'YOUR_ACCESS_TOKEN';
-
-final api_instance = SectionApi();
-
-try {
- final result = api_instance.sectionGet();
- print(result);
-} catch (e) {
- print('Exception when calling SectionApi->sectionGet: $e\n');
-}
-```
-
-### Parameters
-This endpoint does not need any parameter.
-
-### Return type
-
-[**List**](SectionDTO.md)
-
-### Authorization
-
-[bearer](../README.md#bearer)
-
-### HTTP request headers
-
- - **Content-Type**: Not defined
- - **Accept**: application/json
-
-[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
-
-# **sectionGetAllSectionSubSections**
-> List