127 lines
3.1 KiB
Plaintext
127 lines
3.1 KiB
Plaintext
.gitignore
|
|
.travis.yml
|
|
README.md
|
|
analysis_options.yaml
|
|
doc/ArticleDTO.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/QuizzDTOBadLevel.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/article_dto.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/quizz_dto_bad_level.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/article_dto_test.dart
|
|
test/authentication_api_test.dart
|
|
test/configuration_api_test.dart
|
|
test/configuration_dto_test.dart
|
|
test/device_api_test.dart
|
|
test/device_detail_dto_all_of_test.dart
|
|
test/device_detail_dto_test.dart
|
|
test/device_dto_test.dart
|
|
test/export_configuration_dto_all_of_test.dart
|
|
test/export_configuration_dto_test.dart
|
|
test/geo_point_dto_test.dart
|
|
test/image_dto_test.dart
|
|
test/image_geo_point_test.dart
|
|
test/level_dto_test.dart
|
|
test/login_dto_test.dart
|
|
test/map_dto_test.dart
|
|
test/map_type_app_test.dart
|
|
test/menu_dto_test.dart
|
|
test/player_message_dto_test.dart
|
|
test/question_dto_test.dart
|
|
test/quizz_dto_bad_level_test.dart
|
|
test/quizz_dto_test.dart
|
|
test/resource_api_test.dart
|
|
test/resource_dto_test.dart
|
|
test/resource_type_test.dart
|
|
test/response_dto_test.dart
|
|
test/section_api_test.dart
|
|
test/section_dto_test.dart
|
|
test/section_type_test.dart
|
|
test/slider_dto_test.dart
|
|
test/token_dto_test.dart
|
|
test/translation_dto_test.dart
|
|
test/user_api_test.dart
|
|
test/user_detail_dto_test.dart
|
|
test/user_test.dart
|
|
test/video_dto_test.dart
|
|
test/web_dto_test.dart
|