songtradr_api_client_ruby 1.12.21

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