musicube_api_client_ruby 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +9 -0
- data/README.md +223 -0
- data/Rakefile +10 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/docs/AllowedValuesApi.md +200 -0
- data/docs/CategoryMediumDTO.md +22 -0
- data/docs/CategoryMinimalDTO.md +18 -0
- data/docs/ConfigAccessDTO.md +20 -0
- data/docs/ConfigIdentifierDTO.md +20 -0
- data/docs/ContributorTypeDTO.md +18 -0
- data/docs/ErrorResponse.md +26 -0
- data/docs/FieldSummaryDTO.md +22 -0
- data/docs/FileDTO.md +50 -0
- data/docs/FileListDTO.md +24 -0
- data/docs/FileMinimalWithUrlDTO.md +22 -0
- data/docs/FileSmallDTO.md +46 -0
- data/docs/FileUploadDTO.md +22 -0
- data/docs/FileWIthUrlDTO.md +20 -0
- data/docs/FilesSummaryDTO.md +30 -0
- data/docs/ForgotPasswordDTO.md +20 -0
- data/docs/GenreDTO.md +20 -0
- data/docs/GenreMinimalDTO.md +18 -0
- data/docs/GenresSummaryDTO.md +22 -0
- data/docs/InitPutRecordingAudioDTO.md +22 -0
- data/docs/JwtTokenDTO.md +22 -0
- data/docs/LoginDTO.md +24 -0
- data/docs/MusicalFeaturesDTO.md +186 -0
- data/docs/PLineDTO.md +20 -0
- data/docs/PartyApi.md +75 -0
- data/docs/PartyLargeDTO.md +32 -0
- data/docs/PartySmallDTO.md +20 -0
- data/docs/PlaylistApi.md +221 -0
- data/docs/PlaylistLargeDTO.md +38 -0
- data/docs/ProductMediumDTO.md +34 -0
- data/docs/ProductPartyDTO.md +20 -0
- data/docs/RecordingApi.md +789 -0
- data/docs/RecordingForSimilaritySearchDTO.md +20 -0
- data/docs/RecordingGenrePredictionDTO.md +22 -0
- data/docs/RecordingLargeDTO.md +40 -0
- data/docs/RecordingListDTO.md +24 -0
- data/docs/RecordingMediumDTO.md +36 -0
- data/docs/RecordingMinimalWithMusicalFeaturesDTO.md +20 -0
- data/docs/RecordingMinimalWithTaggramsDTO.md +22 -0
- data/docs/RecordingMinimalWithTagstrengthsDTO.md +20 -0
- data/docs/RecordingPartyDTO.md +20 -0
- data/docs/RecordingPlaylistDTO.md +24 -0
- data/docs/RecordingSmallDTO.md +24 -0
- data/docs/RecordingTagSmallDTO.md +18 -0
- data/docs/SaveFileRecordingDTO.md +236 -0
- data/docs/SavePlaylistDTO.md +34 -0
- data/docs/SaveRecordingGenreDTO.md +22 -0
- data/docs/SaveRecordingPartyDTO.md +20 -0
- data/docs/SaveRecordingPlaylistDTO.md +22 -0
- data/docs/SaveRecordingTagDTO.md +20 -0
- data/docs/SaveReferrerDTO.md +20 -0
- data/docs/SaveTaggramsDTO.md +82 -0
- data/docs/SaveUserDTO.md +28 -0
- data/docs/SearchFilterValuesDTO.md +98 -0
- data/docs/SearchRecordingGranularAbstractionDTO.md +20 -0
- data/docs/SearchRecordingGranularDTO.md +22 -0
- data/docs/SignUpDTO.md +24 -0
- data/docs/TagDTO.md +22 -0
- data/docs/TagSmallDTO.md +20 -0
- data/docs/TaggramDTO.md +26 -0
- data/docs/TagsSummaryDTO.md +22 -0
- data/docs/TagstrengthDTO.md +26 -0
- data/docs/TitleDTO.md +18 -0
- data/docs/TokenRequest.md +18 -0
- data/docs/TrackToMediumProductDTO.md +22 -0
- data/docs/UpdatePasswordDTO.md +20 -0
- data/docs/UsageDTO.md +18 -0
- data/docs/UserApi.md +1936 -0
- data/docs/UserDTO.md +56 -0
- data/git_push.sh +57 -0
- data/lib/musicube_api_client_ruby/api/allowed_values_api.rb +213 -0
- data/lib/musicube_api_client_ruby/api/party_api.rb +84 -0
- data/lib/musicube_api_client_ruby/api/playlist_api.rb +222 -0
- data/lib/musicube_api_client_ruby/api/recording_api.rb +900 -0
- data/lib/musicube_api_client_ruby/api/user_api.rb +2642 -0
- data/lib/musicube_api_client_ruby/api_client.rb +428 -0
- data/lib/musicube_api_client_ruby/api_error.rb +58 -0
- data/lib/musicube_api_client_ruby/configuration.rb +380 -0
- data/lib/musicube_api_client_ruby/models/category_medium_dto.rb +250 -0
- data/lib/musicube_api_client_ruby/models/category_minimal_dto.rb +225 -0
- data/lib/musicube_api_client_ruby/models/config_access_dto.rb +287 -0
- data/lib/musicube_api_client_ruby/models/config_identifier_dto.rb +239 -0
- data/lib/musicube_api_client_ruby/models/contributor_type_dto.rb +225 -0
- data/lib/musicube_api_client_ruby/models/error_response.rb +276 -0
- data/lib/musicube_api_client_ruby/models/field_summary_dto.rb +253 -0
- data/lib/musicube_api_client_ruby/models/file_dto.rb +450 -0
- data/lib/musicube_api_client_ruby/models/file_list_dto.rb +269 -0
- data/lib/musicube_api_client_ruby/models/file_minimal_with_url_dto.rb +253 -0
- data/lib/musicube_api_client_ruby/models/file_small_dto.rb +432 -0
- data/lib/musicube_api_client_ruby/models/file_upload_dto.rb +244 -0
- data/lib/musicube_api_client_ruby/models/file_w_ith_url_dto.rb +239 -0
- data/lib/musicube_api_client_ruby/models/files_summary_dto.rb +287 -0
- data/lib/musicube_api_client_ruby/models/forgot_password_dto.rb +267 -0
- data/lib/musicube_api_client_ruby/models/genre_dto.rb +239 -0
- data/lib/musicube_api_client_ruby/models/genre_minimal_dto.rb +225 -0
- data/lib/musicube_api_client_ruby/models/genres_summary_dto.rb +248 -0
- data/lib/musicube_api_client_ruby/models/init_put_recording_audio_dto.rb +238 -0
- data/lib/musicube_api_client_ruby/models/jwt_token_dto.rb +248 -0
- data/lib/musicube_api_client_ruby/models/login_dto.rb +257 -0
- data/lib/musicube_api_client_ruby/models/musical_features_dto.rb +1532 -0
- data/lib/musicube_api_client_ruby/models/p_line_dto.rb +234 -0
- data/lib/musicube_api_client_ruby/models/party_large_dto.rb +288 -0
- data/lib/musicube_api_client_ruby/models/party_small_dto.rb +239 -0
- data/lib/musicube_api_client_ruby/models/playlist_large_dto.rb +353 -0
- data/lib/musicube_api_client_ruby/models/product_medium_dto.rb +316 -0
- data/lib/musicube_api_client_ruby/models/product_party_dto.rb +236 -0
- data/lib/musicube_api_client_ruby/models/recording_for_similarity_search_dto.rb +239 -0
- data/lib/musicube_api_client_ruby/models/recording_genre_prediction_dto.rb +253 -0
- data/lib/musicube_api_client_ruby/models/recording_large_dto.rb +366 -0
- data/lib/musicube_api_client_ruby/models/recording_list_dto.rb +269 -0
- data/lib/musicube_api_client_ruby/models/recording_medium_dto.rb +340 -0
- data/lib/musicube_api_client_ruby/models/recording_minimal_with_musical_features_dto.rb +236 -0
- data/lib/musicube_api_client_ruby/models/recording_minimal_with_taggrams_dto.rb +248 -0
- data/lib/musicube_api_client_ruby/models/recording_minimal_with_tagstrengths_dto.rb +236 -0
- data/lib/musicube_api_client_ruby/models/recording_party_dto.rb +236 -0
- data/lib/musicube_api_client_ruby/models/recording_playlist_dto.rb +247 -0
- data/lib/musicube_api_client_ruby/models/recording_small_dto.rb +268 -0
- data/lib/musicube_api_client_ruby/models/recording_tag_small_dto.rb +225 -0
- data/lib/musicube_api_client_ruby/models/save_file_recording_dto.rb +1847 -0
- data/lib/musicube_api_client_ruby/models/save_playlist_dto.rb +350 -0
- data/lib/musicube_api_client_ruby/models/save_recording_genre_dto.rb +243 -0
- data/lib/musicube_api_client_ruby/models/save_recording_party_dto.rb +273 -0
- data/lib/musicube_api_client_ruby/models/save_recording_playlist_dto.rb +248 -0
- data/lib/musicube_api_client_ruby/models/save_recording_tag_dto.rb +234 -0
- data/lib/musicube_api_client_ruby/models/save_referrer_dto.rb +229 -0
- data/lib/musicube_api_client_ruby/models/save_taggrams_dto.rb +574 -0
- data/lib/musicube_api_client_ruby/models/save_user_dto.rb +317 -0
- data/lib/musicube_api_client_ruby/models/search_filter_values_dto.rb +867 -0
- data/lib/musicube_api_client_ruby/models/search_recording_granular_abstraction_dto.rb +270 -0
- data/lib/musicube_api_client_ruby/models/search_recording_granular_dto.rb +245 -0
- data/lib/musicube_api_client_ruby/models/sign_up_dto.rb +262 -0
- data/lib/musicube_api_client_ruby/models/tag_dto.rb +250 -0
- data/lib/musicube_api_client_ruby/models/tag_small_dto.rb +239 -0
- data/lib/musicube_api_client_ruby/models/taggram_dto.rb +271 -0
- data/lib/musicube_api_client_ruby/models/tags_summary_dto.rb +250 -0
- data/lib/musicube_api_client_ruby/models/tagstrength_dto.rb +269 -0
- data/lib/musicube_api_client_ruby/models/title_dto.rb +225 -0
- data/lib/musicube_api_client_ruby/models/token_request.rb +224 -0
- data/lib/musicube_api_client_ruby/models/track_to_medium_product_dto.rb +248 -0
- data/lib/musicube_api_client_ruby/models/update_password_dto.rb +238 -0
- data/lib/musicube_api_client_ruby/models/usage_dto.rb +220 -0
- data/lib/musicube_api_client_ruby/models/user_dto.rb +481 -0
- data/lib/musicube_api_client_ruby/version.rb +15 -0
- data/lib/musicube_api_client_ruby.rb +108 -0
- data/musicube_api_client_ruby.gemspec +39 -0
- data/openapi-generator-config.yaml +9 -0
- data/spec/api/allowed_values_api_spec.rb +68 -0
- data/spec/api/party_api_spec.rb +46 -0
- data/spec/api/playlist_api_spec.rb +72 -0
- data/spec/api/recording_api_spec.rb +192 -0
- data/spec/api/user_api_spec.rb +507 -0
- data/spec/api_client_spec.rb +223 -0
- data/spec/configuration_spec.rb +82 -0
- data/spec/models/category_medium_dto_spec.rb +46 -0
- data/spec/models/category_minimal_dto_spec.rb +34 -0
- data/spec/models/config_access_dto_spec.rb +48 -0
- data/spec/models/config_identifier_dto_spec.rb +40 -0
- data/spec/models/contributor_type_dto_spec.rb +34 -0
- data/spec/models/error_response_spec.rb +58 -0
- data/spec/models/field_summary_dto_spec.rb +46 -0
- data/spec/models/file_dto_spec.rb +142 -0
- data/spec/models/file_list_dto_spec.rb +52 -0
- data/spec/models/file_minimal_with_url_dto_spec.rb +46 -0
- data/spec/models/file_small_dto_spec.rb +130 -0
- data/spec/models/file_upload_dto_spec.rb +46 -0
- data/spec/models/file_w_ith_url_dto_spec.rb +40 -0
- data/spec/models/files_summary_dto_spec.rb +70 -0
- data/spec/models/forgot_password_dto_spec.rb +44 -0
- data/spec/models/genre_dto_spec.rb +40 -0
- data/spec/models/genre_minimal_dto_spec.rb +34 -0
- data/spec/models/genres_summary_dto_spec.rb +46 -0
- data/spec/models/init_put_recording_audio_dto_spec.rb +46 -0
- data/spec/models/jwt_token_dto_spec.rb +46 -0
- data/spec/models/login_dto_spec.rb +52 -0
- data/spec/models/musical_features_dto_spec.rb +706 -0
- data/spec/models/p_line_dto_spec.rb +40 -0
- data/spec/models/party_large_dto_spec.rb +76 -0
- data/spec/models/party_small_dto_spec.rb +40 -0
- data/spec/models/playlist_large_dto_spec.rb +98 -0
- data/spec/models/product_medium_dto_spec.rb +82 -0
- data/spec/models/product_party_dto_spec.rb +40 -0
- data/spec/models/recording_for_similarity_search_dto_spec.rb +40 -0
- data/spec/models/recording_genre_prediction_dto_spec.rb +46 -0
- data/spec/models/recording_large_dto_spec.rb +100 -0
- data/spec/models/recording_list_dto_spec.rb +52 -0
- data/spec/models/recording_medium_dto_spec.rb +88 -0
- data/spec/models/recording_minimal_with_musical_features_dto_spec.rb +40 -0
- data/spec/models/recording_minimal_with_taggrams_dto_spec.rb +46 -0
- data/spec/models/recording_minimal_with_tagstrengths_dto_spec.rb +40 -0
- data/spec/models/recording_party_dto_spec.rb +40 -0
- data/spec/models/recording_playlist_dto_spec.rb +52 -0
- data/spec/models/recording_small_dto_spec.rb +52 -0
- data/spec/models/recording_tag_small_dto_spec.rb +34 -0
- data/spec/models/save_file_recording_dto_spec.rb +880 -0
- data/spec/models/save_playlist_dto_spec.rb +86 -0
- data/spec/models/save_recording_genre_dto_spec.rb +46 -0
- data/spec/models/save_recording_party_dto_spec.rb +44 -0
- data/spec/models/save_recording_playlist_dto_spec.rb +46 -0
- data/spec/models/save_recording_tag_dto_spec.rb +40 -0
- data/spec/models/save_referrer_dto_spec.rb +40 -0
- data/spec/models/save_taggrams_dto_spec.rb +226 -0
- data/spec/models/save_user_dto_spec.rb +72 -0
- data/spec/models/search_filter_values_dto_spec.rb +274 -0
- data/spec/models/search_recording_granular_abstraction_dto_spec.rb +44 -0
- data/spec/models/search_recording_granular_dto_spec.rb +46 -0
- data/spec/models/sign_up_dto_spec.rb +52 -0
- data/spec/models/tag_dto_spec.rb +46 -0
- data/spec/models/tag_small_dto_spec.rb +40 -0
- data/spec/models/taggram_dto_spec.rb +58 -0
- data/spec/models/tags_summary_dto_spec.rb +46 -0
- data/spec/models/tagstrength_dto_spec.rb +58 -0
- data/spec/models/title_dto_spec.rb +34 -0
- data/spec/models/token_request_spec.rb +34 -0
- data/spec/models/track_to_medium_product_dto_spec.rb +46 -0
- data/spec/models/update_password_dto_spec.rb +40 -0
- data/spec/models/usage_dto_spec.rb +34 -0
- data/spec/models/user_dto_spec.rb +148 -0
- data/spec/musicube_api_client_ruby_spec.rb +11 -0
- data/spec/spec_helper.rb +111 -0
- metadata +415 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
# MusicubeApiClientRuby::ErrorResponse
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **timestamp** | **Time** | timestamp | |
|
8
|
+
| **status** | **Integer** | HTTP Status code | |
|
9
|
+
| **error** | **String** | HTTP status message | |
|
10
|
+
| **message** | **String** | detailed error message | [optional] |
|
11
|
+
| **path** | **String** | path of the called API endpoint | [optional] |
|
12
|
+
|
13
|
+
## Example
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'musicube_api_client_ruby'
|
17
|
+
|
18
|
+
instance = MusicubeApiClientRuby::ErrorResponse.new(
|
19
|
+
timestamp: null,
|
20
|
+
status: null,
|
21
|
+
error: null,
|
22
|
+
message: null,
|
23
|
+
path: null
|
24
|
+
)
|
25
|
+
```
|
26
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# MusicubeApiClientRuby::FieldSummaryDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **field_value** | **String** | | |
|
8
|
+
| **total** | **Integer** | | |
|
9
|
+
| **field_name** | **String** | | |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'musicube_api_client_ruby'
|
15
|
+
|
16
|
+
instance = MusicubeApiClientRuby::FieldSummaryDTO.new(
|
17
|
+
field_value: null,
|
18
|
+
total: null,
|
19
|
+
field_name: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
data/docs/FileDTO.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# MusicubeApiClientRuby::FileDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **id** | **Integer** | | |
|
8
|
+
| **name** | **String** | | |
|
9
|
+
| **object_key** | **String** | | |
|
10
|
+
| **folder** | **String** | | |
|
11
|
+
| **extension** | **String** | extension of the file | |
|
12
|
+
| **url** | **String** | | [optional] |
|
13
|
+
| **upload_start_time** | **Time** | | [optional] |
|
14
|
+
| **upload_end_time** | **Time** | | [optional] |
|
15
|
+
| **fingerprint_status** | **String** | status of the audio recognition | [optional] |
|
16
|
+
| **fingerprint_start_time** | **Time** | | [optional] |
|
17
|
+
| **fingerprint_end_time** | **Time** | | [optional] |
|
18
|
+
| **inference_status** | **String** | status of the auto-tagging | [optional] |
|
19
|
+
| **inference_start_time** | **Time** | | [optional] |
|
20
|
+
| **inference_end_time** | **Time** | | [optional] |
|
21
|
+
| **recording** | [**RecordingMediumDTO**](RecordingMediumDTO.md) | | [optional] |
|
22
|
+
| **error_time** | **Time** | | [optional] |
|
23
|
+
| **error_message** | **String** | | [optional] |
|
24
|
+
|
25
|
+
## Example
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'musicube_api_client_ruby'
|
29
|
+
|
30
|
+
instance = MusicubeApiClientRuby::FileDTO.new(
|
31
|
+
id: null,
|
32
|
+
name: null,
|
33
|
+
object_key: null,
|
34
|
+
folder: null,
|
35
|
+
extension: null,
|
36
|
+
url: null,
|
37
|
+
upload_start_time: null,
|
38
|
+
upload_end_time: null,
|
39
|
+
fingerprint_status: null,
|
40
|
+
fingerprint_start_time: null,
|
41
|
+
fingerprint_end_time: null,
|
42
|
+
inference_status: null,
|
43
|
+
inference_start_time: null,
|
44
|
+
inference_end_time: null,
|
45
|
+
recording: null,
|
46
|
+
error_time: null,
|
47
|
+
error_message: null
|
48
|
+
)
|
49
|
+
```
|
50
|
+
|
data/docs/FileListDTO.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# MusicubeApiClientRuby::FileListDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **files** | [**Array<FileDTO>**](FileDTO.md) | | |
|
8
|
+
| **has_next_page** | **Boolean** | | |
|
9
|
+
| **current_page_number** | **Integer** | | |
|
10
|
+
| **total_results** | **Integer** | | |
|
11
|
+
|
12
|
+
## Example
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
require 'musicube_api_client_ruby'
|
16
|
+
|
17
|
+
instance = MusicubeApiClientRuby::FileListDTO.new(
|
18
|
+
files: null,
|
19
|
+
has_next_page: null,
|
20
|
+
current_page_number: null,
|
21
|
+
total_results: null
|
22
|
+
)
|
23
|
+
```
|
24
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# MusicubeApiClientRuby::FileMinimalWithUrlDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **file_name** | **String** | | |
|
8
|
+
| **url** | **String** | | |
|
9
|
+
| **isrc** | **String** | | |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'musicube_api_client_ruby'
|
15
|
+
|
16
|
+
instance = MusicubeApiClientRuby::FileMinimalWithUrlDTO.new(
|
17
|
+
file_name: null,
|
18
|
+
url: null,
|
19
|
+
isrc: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# MusicubeApiClientRuby::FileSmallDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **name** | **String** | | |
|
8
|
+
| **id** | **Integer** | | |
|
9
|
+
| **extension** | **String** | extension of the file | |
|
10
|
+
| **error_message** | **String** | | [optional] |
|
11
|
+
| **object_key** | **String** | | |
|
12
|
+
| **upload_start_time** | **Time** | | [optional] |
|
13
|
+
| **upload_end_time** | **Time** | | [optional] |
|
14
|
+
| **fingerprint_status** | **String** | status of the audio recognition | [optional] |
|
15
|
+
| **fingerprint_start_time** | **Time** | | [optional] |
|
16
|
+
| **fingerprint_end_time** | **Time** | | [optional] |
|
17
|
+
| **inference_status** | **String** | status of the auto-tagging | [optional] |
|
18
|
+
| **inference_start_time** | **Time** | | [optional] |
|
19
|
+
| **inference_end_time** | **Time** | | [optional] |
|
20
|
+
| **error_time** | **Time** | | [optional] |
|
21
|
+
| **folder** | **String** | | |
|
22
|
+
|
23
|
+
## Example
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'musicube_api_client_ruby'
|
27
|
+
|
28
|
+
instance = MusicubeApiClientRuby::FileSmallDTO.new(
|
29
|
+
name: null,
|
30
|
+
id: null,
|
31
|
+
extension: null,
|
32
|
+
error_message: null,
|
33
|
+
object_key: null,
|
34
|
+
upload_start_time: null,
|
35
|
+
upload_end_time: null,
|
36
|
+
fingerprint_status: null,
|
37
|
+
fingerprint_start_time: null,
|
38
|
+
fingerprint_end_time: null,
|
39
|
+
inference_status: null,
|
40
|
+
inference_start_time: null,
|
41
|
+
inference_end_time: null,
|
42
|
+
error_time: null,
|
43
|
+
folder: null
|
44
|
+
)
|
45
|
+
```
|
46
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# MusicubeApiClientRuby::FileUploadDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **identifiers** | [**Array<ConfigIdentifierDTO>**](ConfigIdentifierDTO.md) | | [optional] |
|
8
|
+
| **flags** | **Array<String>** | | [optional] |
|
9
|
+
| **access** | [**Array<ConfigAccessDTO>**](ConfigAccessDTO.md) | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'musicube_api_client_ruby'
|
15
|
+
|
16
|
+
instance = MusicubeApiClientRuby::FileUploadDTO.new(
|
17
|
+
identifiers: null,
|
18
|
+
flags: null,
|
19
|
+
access: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# MusicubeApiClientRuby::FileWIthUrlDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **file** | [**FileDTO**](FileDTO.md) | | |
|
8
|
+
| **url** | **String** | | |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'musicube_api_client_ruby'
|
14
|
+
|
15
|
+
instance = MusicubeApiClientRuby::FileWIthUrlDTO.new(
|
16
|
+
file: null,
|
17
|
+
url: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# MusicubeApiClientRuby::FilesSummaryDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **file_details_summary** | [**Array<FieldSummaryDTO>**](FieldSummaryDTO.md) | | [optional] |
|
8
|
+
| **genre_summary** | [**Array<GenresSummaryDTO>**](GenresSummaryDTO.md) | | [optional] |
|
9
|
+
| **tag_summary** | [**Array<TagsSummaryDTO>**](TagsSummaryDTO.md) | | [optional] |
|
10
|
+
| **musical_features_summary** | [**Array<FieldSummaryDTO>**](FieldSummaryDTO.md) | | [optional] |
|
11
|
+
| **total_files** | **Integer** | | |
|
12
|
+
| **bpm_min** | **Float** | | [optional] |
|
13
|
+
| **bpm_max** | **Float** | | [optional] |
|
14
|
+
|
15
|
+
## Example
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
require 'musicube_api_client_ruby'
|
19
|
+
|
20
|
+
instance = MusicubeApiClientRuby::FilesSummaryDTO.new(
|
21
|
+
file_details_summary: null,
|
22
|
+
genre_summary: null,
|
23
|
+
tag_summary: null,
|
24
|
+
musical_features_summary: null,
|
25
|
+
total_files: null,
|
26
|
+
bpm_min: null,
|
27
|
+
bpm_max: null
|
28
|
+
)
|
29
|
+
```
|
30
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# MusicubeApiClientRuby::ForgotPasswordDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **email_or_username** | **String** | | |
|
8
|
+
| **system** | **String** | | [optional] |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'musicube_api_client_ruby'
|
14
|
+
|
15
|
+
instance = MusicubeApiClientRuby::ForgotPasswordDTO.new(
|
16
|
+
email_or_username: null,
|
17
|
+
system: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
data/docs/GenreDTO.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# MusicubeApiClientRuby::GenreDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **id** | **Integer** | | |
|
8
|
+
| **name** | **String** | | |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'musicube_api_client_ruby'
|
14
|
+
|
15
|
+
instance = MusicubeApiClientRuby::GenreDTO.new(
|
16
|
+
id: null,
|
17
|
+
name: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# MusicubeApiClientRuby::GenreMinimalDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **genre_name** | **String** | | |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'musicube_api_client_ruby'
|
13
|
+
|
14
|
+
instance = MusicubeApiClientRuby::GenreMinimalDTO.new(
|
15
|
+
genre_name: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# MusicubeApiClientRuby::GenresSummaryDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **name** | **String** | | |
|
8
|
+
| **total** | **Integer** | | |
|
9
|
+
| **genre_type** | **String** | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'musicube_api_client_ruby'
|
15
|
+
|
16
|
+
instance = MusicubeApiClientRuby::GenresSummaryDTO.new(
|
17
|
+
name: null,
|
18
|
+
total: null,
|
19
|
+
genre_type: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# MusicubeApiClientRuby::InitPutRecordingAudioDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **isrc** | **String** | | [optional] |
|
8
|
+
| **object_key** | **String** | | [optional] |
|
9
|
+
| **url** | **String** | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'musicube_api_client_ruby'
|
15
|
+
|
16
|
+
instance = MusicubeApiClientRuby::InitPutRecordingAudioDTO.new(
|
17
|
+
isrc: null,
|
18
|
+
object_key: null,
|
19
|
+
url: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
data/docs/JwtTokenDTO.md
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# MusicubeApiClientRuby::JwtTokenDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **jwt_token** | **String** | | |
|
8
|
+
| **expiration_date** | **Time** | | |
|
9
|
+
| **refresh_token** | **String** | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'musicube_api_client_ruby'
|
15
|
+
|
16
|
+
instance = MusicubeApiClientRuby::JwtTokenDTO.new(
|
17
|
+
jwt_token: null,
|
18
|
+
expiration_date: null,
|
19
|
+
refresh_token: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
data/docs/LoginDTO.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# MusicubeApiClientRuby::LoginDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **username** | **String** | | [optional] |
|
8
|
+
| **version** | **String** | | [optional] |
|
9
|
+
| **email** | **String** | | |
|
10
|
+
| **password** | **String** | | |
|
11
|
+
|
12
|
+
## Example
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
require 'musicube_api_client_ruby'
|
16
|
+
|
17
|
+
instance = MusicubeApiClientRuby::LoginDTO.new(
|
18
|
+
username: null,
|
19
|
+
version: null,
|
20
|
+
email: null,
|
21
|
+
password: null
|
22
|
+
)
|
23
|
+
```
|
24
|
+
|
@@ -0,0 +1,186 @@
|
|
1
|
+
# MusicubeApiClientRuby::MusicalFeaturesDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **space** | **String** | Search for space | [optional] |
|
8
|
+
| **primary_sound_character_affinity** | **Float** | | [optional] |
|
9
|
+
| **tonality_affinity** | **Float** | | [optional] |
|
10
|
+
| **bpm** | **Float** | | [optional] |
|
11
|
+
| **production_rating** | **String** | | [optional] |
|
12
|
+
| **production_rating_affinity** | **Float** | | [optional] |
|
13
|
+
| **performance_rating** | **String** | | [optional] |
|
14
|
+
| **performance_rating_affinity** | **Float** | | [optional] |
|
15
|
+
| **song_rating** | **String** | | [optional] |
|
16
|
+
| **song_rating_affinity** | **Float** | | [optional] |
|
17
|
+
| **audience_age** | **String** | | [optional] |
|
18
|
+
| **audience_age_affinity** | **Float** | | [optional] |
|
19
|
+
| **secondary_audience_age** | **String** | | [optional] |
|
20
|
+
| **secondary_audience_age_affinity** | **Float** | | [optional] |
|
21
|
+
| **tertiary_audience_age** | **String** | | [optional] |
|
22
|
+
| **tertiary_audience_age_affinity** | **Float** | | [optional] |
|
23
|
+
| **audience_gender** | **String** | | [optional] |
|
24
|
+
| **audience_gender_affinity** | **Float** | | [optional] |
|
25
|
+
| **audience_region_affinity** | **Float** | | [optional] |
|
26
|
+
| **secondary_audience_region** | **String** | | [optional] |
|
27
|
+
| **secondary_audience_region_affinity** | **Float** | | [optional] |
|
28
|
+
| **tertiary_audience_region** | **String** | | [optional] |
|
29
|
+
| **tertiary_audience_region_affinity** | **Float** | | [optional] |
|
30
|
+
| **origin_region** | **String** | | [optional] |
|
31
|
+
| **origin_region_affinity** | **Float** | | [optional] |
|
32
|
+
| **origin_decade_affinity** | **Float** | | [optional] |
|
33
|
+
| **language_of_performance_affinity** | **Float** | | [optional] |
|
34
|
+
| **curateability_affinity** | **Float** | | [optional] |
|
35
|
+
| **use_case_affinity** | **Float** | | [optional] |
|
36
|
+
| **industry_suitability** | **String** | Search for Industry suitability | [optional] |
|
37
|
+
| **industry_suitability_affinity** | **Float** | | [optional] |
|
38
|
+
| **audience_region** | **String** | | [optional] |
|
39
|
+
| **primary_mood_cluster_affinity** | **Float** | | [optional] |
|
40
|
+
| **secondary_mood_cluster** | **String** | Search for a language of the lyrics | [optional] |
|
41
|
+
| **secondary_mood_cluster_affinity** | **Float** | | [optional] |
|
42
|
+
| **tertiary_mood_cluster** | **String** | Search for a language of the lyrics | [optional] |
|
43
|
+
| **tertiary_mood_cluster_affinity** | **Float** | | [optional] |
|
44
|
+
| **vocals_affinity** | **Float** | | [optional] |
|
45
|
+
| **dominant_instrument_affinity** | **Float** | | [optional] |
|
46
|
+
| **secondary_instrument** | **String** | Search for a dominant instrument | [optional] |
|
47
|
+
| **secondary_instrument_affinity** | **Float** | | [optional] |
|
48
|
+
| **tertiary_instrument** | **String** | Search for a dominant instrument | [optional] |
|
49
|
+
| **tertiary_instrument_affinity** | **Float** | | [optional] |
|
50
|
+
| **sound_generation_affinity** | **Float** | | [optional] |
|
51
|
+
| **rhythm_affinity** | **Float** | | [optional] |
|
52
|
+
| **language_of_performance** | **String** | | [optional] |
|
53
|
+
| **arousal** | **String** | Search for an arousal | [optional] |
|
54
|
+
| **dominant_instrument** | **String** | Search for a dominant instrument | [optional] |
|
55
|
+
| **energy** | **String** | Search for energy | [optional] |
|
56
|
+
| **engagement** | **String** | Search for an engagement | [optional] |
|
57
|
+
| **groovyness** | **String** | Search for groovyness | [optional] |
|
58
|
+
| **harmony** | **String** | Search for a degree of harmoniousness | [optional] |
|
59
|
+
| **pleasantness** | **String** | Search for pleasantness | [optional] |
|
60
|
+
| **primary_mood_cluster** | **String** | Search for a language of the lyrics | [optional] |
|
61
|
+
| **primary_sound_character** | **String** | Search for a sound character | [optional] |
|
62
|
+
| **rhythm** | **String** | Search for rhythm | [optional] |
|
63
|
+
| **roughness** | **String** | Search for roughness | [optional] |
|
64
|
+
| **scale** | **String** | Search for a tonal scale | [optional] |
|
65
|
+
| **sound_generation** | **String** | Search for type of sound generation | [optional] |
|
66
|
+
| **tempo** | **String** | Search for tempo | [optional] |
|
67
|
+
| **texture** | **String** | Search for texture | [optional] |
|
68
|
+
| **timbre** | **String** | Search for timbre | [optional] |
|
69
|
+
| **tonality** | **String** | Search for tonality | [optional] |
|
70
|
+
| **valence** | **String** | Search for a valence | [optional] |
|
71
|
+
| **vocals** | **String** | Search for a vocal gender or instrumental songs | [optional] |
|
72
|
+
| **origin_decade** | **String** | Search for origin decade | [optional] |
|
73
|
+
| **curateability** | **String** | Search for curatebility | [optional] |
|
74
|
+
| **use_case** | **String** | Search for use case | [optional] |
|
75
|
+
| **channel_suitability** | **String** | Search for social media suitability | [optional] |
|
76
|
+
| **pleasantness_affinity** | **Float** | | [optional] |
|
77
|
+
| **engagement_affinity** | **Float** | | [optional] |
|
78
|
+
| **energy_affinity** | **Float** | | [optional] |
|
79
|
+
| **tempo_affinity** | **Float** | | [optional] |
|
80
|
+
| **scale_affinity** | **Float** | | [optional] |
|
81
|
+
| **timbre_affinity** | **Float** | | [optional] |
|
82
|
+
| **roughness_affinity** | **Float** | | [optional] |
|
83
|
+
| **harmony_affinity** | **Float** | | [optional] |
|
84
|
+
| **texture_affinity** | **Float** | | [optional] |
|
85
|
+
| **groovyness_affinity** | **Float** | | [optional] |
|
86
|
+
| **space_affinity** | **Float** | | [optional] |
|
87
|
+
| **key_affinity** | **Float** | | [optional] |
|
88
|
+
| **channel_suitability_affinity** | **Float** | | [optional] |
|
89
|
+
| **key** | **String** | Search for a harmonic key | [optional] |
|
90
|
+
| **valence_affinity** | **Float** | | [optional] |
|
91
|
+
| **arousal_affinity** | **Float** | | [optional] |
|
92
|
+
|
93
|
+
## Example
|
94
|
+
|
95
|
+
```ruby
|
96
|
+
require 'musicube_api_client_ruby'
|
97
|
+
|
98
|
+
instance = MusicubeApiClientRuby::MusicalFeaturesDTO.new(
|
99
|
+
space: null,
|
100
|
+
primary_sound_character_affinity: null,
|
101
|
+
tonality_affinity: null,
|
102
|
+
bpm: null,
|
103
|
+
production_rating: null,
|
104
|
+
production_rating_affinity: null,
|
105
|
+
performance_rating: null,
|
106
|
+
performance_rating_affinity: null,
|
107
|
+
song_rating: null,
|
108
|
+
song_rating_affinity: null,
|
109
|
+
audience_age: null,
|
110
|
+
audience_age_affinity: null,
|
111
|
+
secondary_audience_age: null,
|
112
|
+
secondary_audience_age_affinity: null,
|
113
|
+
tertiary_audience_age: null,
|
114
|
+
tertiary_audience_age_affinity: null,
|
115
|
+
audience_gender: null,
|
116
|
+
audience_gender_affinity: null,
|
117
|
+
audience_region_affinity: null,
|
118
|
+
secondary_audience_region: null,
|
119
|
+
secondary_audience_region_affinity: null,
|
120
|
+
tertiary_audience_region: null,
|
121
|
+
tertiary_audience_region_affinity: null,
|
122
|
+
origin_region: null,
|
123
|
+
origin_region_affinity: null,
|
124
|
+
origin_decade_affinity: null,
|
125
|
+
language_of_performance_affinity: null,
|
126
|
+
curateability_affinity: null,
|
127
|
+
use_case_affinity: null,
|
128
|
+
industry_suitability: null,
|
129
|
+
industry_suitability_affinity: null,
|
130
|
+
audience_region: null,
|
131
|
+
primary_mood_cluster_affinity: null,
|
132
|
+
secondary_mood_cluster: null,
|
133
|
+
secondary_mood_cluster_affinity: null,
|
134
|
+
tertiary_mood_cluster: null,
|
135
|
+
tertiary_mood_cluster_affinity: null,
|
136
|
+
vocals_affinity: null,
|
137
|
+
dominant_instrument_affinity: null,
|
138
|
+
secondary_instrument: null,
|
139
|
+
secondary_instrument_affinity: null,
|
140
|
+
tertiary_instrument: null,
|
141
|
+
tertiary_instrument_affinity: null,
|
142
|
+
sound_generation_affinity: null,
|
143
|
+
rhythm_affinity: null,
|
144
|
+
language_of_performance: null,
|
145
|
+
arousal: null,
|
146
|
+
dominant_instrument: null,
|
147
|
+
energy: null,
|
148
|
+
engagement: null,
|
149
|
+
groovyness: null,
|
150
|
+
harmony: null,
|
151
|
+
pleasantness: null,
|
152
|
+
primary_mood_cluster: null,
|
153
|
+
primary_sound_character: null,
|
154
|
+
rhythm: null,
|
155
|
+
roughness: null,
|
156
|
+
scale: null,
|
157
|
+
sound_generation: null,
|
158
|
+
tempo: null,
|
159
|
+
texture: null,
|
160
|
+
timbre: null,
|
161
|
+
tonality: null,
|
162
|
+
valence: null,
|
163
|
+
vocals: null,
|
164
|
+
origin_decade: null,
|
165
|
+
curateability: null,
|
166
|
+
use_case: null,
|
167
|
+
channel_suitability: null,
|
168
|
+
pleasantness_affinity: null,
|
169
|
+
engagement_affinity: null,
|
170
|
+
energy_affinity: null,
|
171
|
+
tempo_affinity: null,
|
172
|
+
scale_affinity: null,
|
173
|
+
timbre_affinity: null,
|
174
|
+
roughness_affinity: null,
|
175
|
+
harmony_affinity: null,
|
176
|
+
texture_affinity: null,
|
177
|
+
groovyness_affinity: null,
|
178
|
+
space_affinity: null,
|
179
|
+
key_affinity: null,
|
180
|
+
channel_suitability_affinity: null,
|
181
|
+
key: null,
|
182
|
+
valence_affinity: null,
|
183
|
+
arousal_affinity: null
|
184
|
+
)
|
185
|
+
```
|
186
|
+
|
data/docs/PLineDTO.md
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
# MusicubeApiClientRuby::PLineDTO
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **year** | **Integer** | | [optional] |
|
8
|
+
| **text** | **String** | | |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'musicube_api_client_ruby'
|
14
|
+
|
15
|
+
instance = MusicubeApiClientRuby::PLineDTO.new(
|
16
|
+
year: null,
|
17
|
+
text: null
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|