aimastering 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (129) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -5
  3. data/aimastering.gemspec +4 -4
  4. data/docs/AccessTokenApi.md +1 -1
  5. data/docs/AmazonSubscription.md +12 -0
  6. data/docs/AmazonSubscriptionApi.md +55 -0
  7. data/docs/Audio.md +4 -0
  8. data/docs/AudioApi.md +4 -2
  9. data/docs/Config.md +1 -0
  10. data/docs/ConfigApi.md +1 -1
  11. data/docs/{DateTime.md → ConfigVersion.md} +2 -1
  12. data/docs/ExternalSearchApi.md +1 -1
  13. data/docs/GroupBuyStatistics.md +8 -0
  14. data/docs/LibraryAudio.md +4 -0
  15. data/docs/LibraryAudioApi.md +1 -1
  16. data/docs/Mastering.md +9 -0
  17. data/docs/MasteringApi.md +151 -29
  18. data/docs/PaymentApi.md +3 -3
  19. data/docs/PaymentCustomerApi.md +1 -1
  20. data/docs/PlanApi.md +1 -1
  21. data/docs/SpSubscription.md +12 -0
  22. data/docs/SpSubscriptionApi.md +112 -0
  23. data/docs/StatisticsApi.md +48 -1
  24. data/docs/Subscription.md +1 -0
  25. data/docs/SubscriptionApi.md +4 -2
  26. data/docs/User.md +3 -0
  27. data/docs/UserApi.md +110 -1
  28. data/docs/UserStatistics.md +13 -0
  29. data/docs/VideoApi.md +1 -1
  30. data/lib/aimastering.rb +8 -1
  31. data/lib/aimastering/api/access_token_api.rb +1 -1
  32. data/lib/aimastering/api/amazon_subscription_api.rb +70 -0
  33. data/lib/aimastering/api/audio_api.rb +4 -1
  34. data/lib/aimastering/api/config_api.rb +1 -1
  35. data/lib/aimastering/api/external_search_api.rb +1 -1
  36. data/lib/aimastering/api/library_audio_api.rb +1 -1
  37. data/lib/aimastering/api/mastering_api.rb +162 -16
  38. data/lib/aimastering/api/payment_api.rb +1 -1
  39. data/lib/aimastering/api/payment_customer_api.rb +1 -1
  40. data/lib/aimastering/api/plan_api.rb +1 -1
  41. data/lib/aimastering/api/sp_subscription_api.rb +133 -0
  42. data/lib/aimastering/api/statistics_api.rb +48 -1
  43. data/lib/aimastering/api/subscription_api.rb +4 -1
  44. data/lib/aimastering/api/user_api.rb +112 -1
  45. data/lib/aimastering/api/video_api.rb +1 -1
  46. data/lib/aimastering/api_client.rb +1 -1
  47. data/lib/aimastering/api_error.rb +1 -1
  48. data/lib/aimastering/configuration.rb +3 -3
  49. data/lib/aimastering/models/access_token.rb +1 -1
  50. data/lib/aimastering/models/amazon_subscription.rb +257 -0
  51. data/lib/aimastering/models/anonymized_mastering.rb +5 -5
  52. data/lib/aimastering/models/audio.rb +38 -2
  53. data/lib/aimastering/models/audio_analysis.rb +1 -1
  54. data/lib/aimastering/models/audio_download_token.rb +1 -1
  55. data/lib/aimastering/models/config.rb +14 -5
  56. data/lib/aimastering/models/config_auth0.rb +1 -1
  57. data/lib/aimastering/models/config_paypal.rb +1 -1
  58. data/lib/aimastering/models/config_stripe.rb +1 -1
  59. data/lib/aimastering/models/{date_time.rb → config_version.rb} +14 -5
  60. data/lib/aimastering/models/external_search_result.rb +1 -1
  61. data/lib/aimastering/models/external_search_result_itunes.rb +1 -1
  62. data/lib/aimastering/models/external_search_result_youtube.rb +1 -1
  63. data/lib/aimastering/models/group_buy_statistics.rb +188 -0
  64. data/lib/aimastering/models/jwt.rb +1 -1
  65. data/lib/aimastering/models/kpi.rb +1 -1
  66. data/lib/aimastering/models/library_audio.rb +38 -2
  67. data/lib/aimastering/models/library_audio_analysis.rb +1 -1
  68. data/lib/aimastering/models/library_audio_like.rb +1 -1
  69. data/lib/aimastering/models/mastering.rb +123 -6
  70. data/lib/aimastering/models/payment.rb +1 -1
  71. data/lib/aimastering/models/payment_customer.rb +1 -1
  72. data/lib/aimastering/models/plan.rb +1 -1
  73. data/lib/aimastering/models/sp_subscription.rb +257 -0
  74. data/lib/aimastering/models/subscription.rb +11 -2
  75. data/lib/aimastering/models/user.rb +29 -2
  76. data/lib/aimastering/models/user_statistics.rb +233 -0
  77. data/lib/aimastering/models/video.rb +1 -1
  78. data/lib/aimastering/models/video_download_token.rb +1 -1
  79. data/lib/aimastering/version.rb +2 -2
  80. data/spec/api/access_token_api_spec.rb +1 -1
  81. data/spec/api/amazon_subscription_api_spec.rb +46 -0
  82. data/spec/api/audio_api_spec.rb +2 -1
  83. data/spec/api/config_api_spec.rb +1 -1
  84. data/spec/api/external_search_api_spec.rb +1 -1
  85. data/spec/api/library_audio_api_spec.rb +1 -1
  86. data/spec/api/mastering_api_spec.rb +35 -4
  87. data/spec/api/payment_api_spec.rb +1 -1
  88. data/spec/api/payment_customer_api_spec.rb +1 -1
  89. data/spec/api/plan_api_spec.rb +1 -1
  90. data/spec/api/sp_subscription_api_spec.rb +59 -0
  91. data/spec/api/statistics_api_spec.rb +12 -1
  92. data/spec/api/subscription_api_spec.rb +2 -1
  93. data/spec/api/user_api_spec.rb +26 -1
  94. data/spec/api/video_api_spec.rb +1 -1
  95. data/spec/api_client_spec.rb +1 -1
  96. data/spec/configuration_spec.rb +4 -4
  97. data/spec/models/access_token_spec.rb +1 -1
  98. data/spec/models/amazon_subscription_spec.rb +70 -0
  99. data/spec/models/anonymized_mastering_spec.rb +3 -3
  100. data/spec/models/audio_analysis_spec.rb +1 -1
  101. data/spec/models/audio_download_token_spec.rb +1 -1
  102. data/spec/models/audio_spec.rb +25 -1
  103. data/spec/models/config_auth0_spec.rb +1 -1
  104. data/spec/models/config_paypal_spec.rb +1 -1
  105. data/spec/models/config_spec.rb +7 -1
  106. data/spec/models/config_stripe_spec.rb +1 -1
  107. data/spec/models/config_version_spec.rb +42 -0
  108. data/spec/models/external_search_result_itunes_spec.rb +1 -1
  109. data/spec/models/external_search_result_spec.rb +1 -1
  110. data/spec/models/external_search_result_youtube_spec.rb +1 -1
  111. data/spec/models/group_buy_statistics_spec.rb +42 -0
  112. data/spec/models/jwt_spec.rb +1 -1
  113. data/spec/models/kpi_spec.rb +1 -1
  114. data/spec/models/library_audio_analysis_spec.rb +1 -1
  115. data/spec/models/library_audio_like_spec.rb +1 -1
  116. data/spec/models/library_audio_spec.rb +25 -1
  117. data/spec/models/mastering_spec.rb +69 -3
  118. data/spec/models/payment_customer_spec.rb +1 -1
  119. data/spec/models/payment_spec.rb +1 -1
  120. data/spec/models/plan_spec.rb +1 -1
  121. data/spec/models/sp_subscription_spec.rb +70 -0
  122. data/spec/models/subscription_spec.rb +7 -1
  123. data/spec/models/user_spec.rb +19 -1
  124. data/spec/models/user_statistics_spec.rb +72 -0
  125. data/spec/models/video_download_token_spec.rb +1 -1
  126. data/spec/models/video_spec.rb +1 -1
  127. data/spec/spec_helper.rb +1 -1
  128. metadata +46 -23
  129. data/spec/models/date_time_spec.rb +0 -36
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
@@ -0,0 +1,70 @@
1
+ =begin
2
+ #AI Mastering API
3
+
4
+ #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: info@bakuage.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Aimastering::SpSubscription
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'SpSubscription' do
21
+ before do
22
+ # run before each test
23
+ @instance = Aimastering::SpSubscription.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of SpSubscription' do
31
+ it 'should create an instance of SpSubscription' do
32
+ expect(@instance).to be_instance_of(Aimastering::SpSubscription)
33
+ end
34
+ end
35
+ describe 'test attribute "id"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "user_id"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "status"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ #validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["active", "inactive"])
51
+ #validator.allowable_values.each do |value|
52
+ # expect { @instance.status = value }.not_to raise_error
53
+ #end
54
+ end
55
+ end
56
+
57
+ describe 'test attribute "created_at"' do
58
+ it 'should work' do
59
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
60
+ end
61
+ end
62
+
63
+ describe 'test attribute "updated_at"' do
64
+ it 'should work' do
65
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
66
+ end
67
+ end
68
+
69
+ end
70
+
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
@@ -74,6 +74,12 @@ describe 'Subscription' do
74
74
  end
75
75
  end
76
76
 
77
+ describe 'test attribute "trial_end"' do
78
+ it 'should work' do
79
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
+ end
81
+ end
82
+
77
83
  describe 'test attribute "status"' do
78
84
  it 'should work' do
79
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
@@ -38,6 +38,12 @@ describe 'User' do
38
38
  end
39
39
  end
40
40
 
41
+ describe 'test attribute "affiliate_enabled"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
41
47
  describe 'test attribute "agreed_terms_of_service"' do
42
48
  it 'should work' do
43
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -66,6 +72,18 @@ describe 'User' do
66
72
  end
67
73
  end
68
74
 
75
+ describe 'test attribute "registration_notified"' do
76
+ it 'should work' do
77
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
78
+ end
79
+ end
80
+
81
+ describe 'test attribute "statistics"' do
82
+ it 'should work' do
83
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
84
+ end
85
+ end
86
+
69
87
  describe 'test attribute "created_at"' do
70
88
  it 'should work' do
71
89
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -0,0 +1,72 @@
1
+ =begin
2
+ #AI Mastering API
3
+
4
+ #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
+
6
+ OpenAPI spec version: 1.0.0
7
+ Contact: info@bakuage.com
8
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
9
+ Swagger Codegen version: 2.3.1
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Aimastering::UserStatistics
18
+ # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
19
+ # Please update as you see appropriate
20
+ describe 'UserStatistics' do
21
+ before do
22
+ # run before each test
23
+ @instance = Aimastering::UserStatistics.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of UserStatistics' do
31
+ it 'should create an instance of UserStatistics' do
32
+ expect(@instance).to be_instance_of(Aimastering::UserStatistics)
33
+ end
34
+ end
35
+ describe 'test attribute "registration_invitation_count"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "subscription_invitation_count"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "mastering_count"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "monthly_registration_invitation_count"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "monthly_subscription_invitation_count"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "monthly_mastering_count"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ end
72
+
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
data/spec/spec_helper.rb CHANGED
@@ -4,7 +4,7 @@
4
4
  #This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API.
5
5
 
6
6
  OpenAPI spec version: 1.0.0
7
- Contact: aimasteringcom@gmail.com
7
+ Contact: info@bakuage.com
8
8
  Generated by: https://github.com/swagger-api/swagger-codegen.git
9
9
  Swagger Codegen version: 2.3.1
10
10
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aimastering
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
- - AI Mastering
7
+ - Bakuage Co.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-04 00:00:00.000000000 Z
11
+ date: 2021-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -34,42 +34,42 @@ dependencies:
34
34
  name: json
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
- - - "~>"
38
- - !ruby/object:Gem::Version
39
- version: '2.1'
40
37
  - - ">="
41
38
  - !ruby/object:Gem::Version
42
39
  version: 2.1.0
40
+ - - "~>"
41
+ - !ruby/object:Gem::Version
42
+ version: '2.1'
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - "~>"
48
- - !ruby/object:Gem::Version
49
- version: '2.1'
50
47
  - - ">="
51
48
  - !ruby/object:Gem::Version
52
49
  version: 2.1.0
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '2.1'
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: rspec
55
55
  requirement: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - "~>"
58
- - !ruby/object:Gem::Version
59
- version: '3.6'
60
57
  - - ">="
61
58
  - !ruby/object:Gem::Version
62
59
  version: 3.6.0
60
+ - - "~>"
61
+ - !ruby/object:Gem::Version
62
+ version: '3.6'
63
63
  type: :development
64
64
  prerelease: false
65
65
  version_requirements: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - "~>"
68
- - !ruby/object:Gem::Version
69
- version: '3.6'
70
67
  - - ">="
71
68
  - !ruby/object:Gem::Version
72
69
  version: 3.6.0
70
+ - - "~>"
71
+ - !ruby/object:Gem::Version
72
+ version: '3.6'
73
73
  - !ruby/object:Gem::Dependency
74
74
  name: vcr
75
75
  requirement: !ruby/object:Gem::Requirement
@@ -193,7 +193,7 @@ dependencies:
193
193
  description: This is a AI Mastering API document. You can use the mastering feature
194
194
  of [AI Mastering](https://aimastering.com) through this API.
195
195
  email:
196
- - aimasteringcom@gmail.com
196
+ - info@bakuage.com
197
197
  executables: []
198
198
  extensions: []
199
199
  extra_rdoc_files: []
@@ -204,6 +204,8 @@ files:
204
204
  - aimastering.gemspec
205
205
  - docs/AccessToken.md
206
206
  - docs/AccessTokenApi.md
207
+ - docs/AmazonSubscription.md
208
+ - docs/AmazonSubscriptionApi.md
207
209
  - docs/AnonymizedMastering.md
208
210
  - docs/Audio.md
209
211
  - docs/AudioAnalysis.md
@@ -214,11 +216,12 @@ files:
214
216
  - docs/ConfigAuth0.md
215
217
  - docs/ConfigPaypal.md
216
218
  - docs/ConfigStripe.md
217
- - docs/DateTime.md
219
+ - docs/ConfigVersion.md
218
220
  - docs/ExternalSearchApi.md
219
221
  - docs/ExternalSearchResult.md
220
222
  - docs/ExternalSearchResultItunes.md
221
223
  - docs/ExternalSearchResultYoutube.md
224
+ - docs/GroupBuyStatistics.md
222
225
  - docs/JWT.md
223
226
  - docs/Kpi.md
224
227
  - docs/LibraryAudio.md
@@ -233,17 +236,21 @@ files:
233
236
  - docs/PaymentCustomerApi.md
234
237
  - docs/Plan.md
235
238
  - docs/PlanApi.md
239
+ - docs/SpSubscription.md
240
+ - docs/SpSubscriptionApi.md
236
241
  - docs/StatisticsApi.md
237
242
  - docs/Subscription.md
238
243
  - docs/SubscriptionApi.md
239
244
  - docs/User.md
240
245
  - docs/UserApi.md
246
+ - docs/UserStatistics.md
241
247
  - docs/Video.md
242
248
  - docs/VideoApi.md
243
249
  - docs/VideoDownloadToken.md
244
250
  - git_push.sh
245
251
  - lib/aimastering.rb
246
252
  - lib/aimastering/api/access_token_api.rb
253
+ - lib/aimastering/api/amazon_subscription_api.rb
247
254
  - lib/aimastering/api/audio_api.rb
248
255
  - lib/aimastering/api/config_api.rb
249
256
  - lib/aimastering/api/external_search_api.rb
@@ -252,6 +259,7 @@ files:
252
259
  - lib/aimastering/api/payment_api.rb
253
260
  - lib/aimastering/api/payment_customer_api.rb
254
261
  - lib/aimastering/api/plan_api.rb
262
+ - lib/aimastering/api/sp_subscription_api.rb
255
263
  - lib/aimastering/api/statistics_api.rb
256
264
  - lib/aimastering/api/subscription_api.rb
257
265
  - lib/aimastering/api/user_api.rb
@@ -260,6 +268,7 @@ files:
260
268
  - lib/aimastering/api_error.rb
261
269
  - lib/aimastering/configuration.rb
262
270
  - lib/aimastering/models/access_token.rb
271
+ - lib/aimastering/models/amazon_subscription.rb
263
272
  - lib/aimastering/models/anonymized_mastering.rb
264
273
  - lib/aimastering/models/audio.rb
265
274
  - lib/aimastering/models/audio_analysis.rb
@@ -268,10 +277,11 @@ files:
268
277
  - lib/aimastering/models/config_auth0.rb
269
278
  - lib/aimastering/models/config_paypal.rb
270
279
  - lib/aimastering/models/config_stripe.rb
271
- - lib/aimastering/models/date_time.rb
280
+ - lib/aimastering/models/config_version.rb
272
281
  - lib/aimastering/models/external_search_result.rb
273
282
  - lib/aimastering/models/external_search_result_itunes.rb
274
283
  - lib/aimastering/models/external_search_result_youtube.rb
284
+ - lib/aimastering/models/group_buy_statistics.rb
275
285
  - lib/aimastering/models/jwt.rb
276
286
  - lib/aimastering/models/kpi.rb
277
287
  - lib/aimastering/models/library_audio.rb
@@ -281,12 +291,15 @@ files:
281
291
  - lib/aimastering/models/payment.rb
282
292
  - lib/aimastering/models/payment_customer.rb
283
293
  - lib/aimastering/models/plan.rb
294
+ - lib/aimastering/models/sp_subscription.rb
284
295
  - lib/aimastering/models/subscription.rb
285
296
  - lib/aimastering/models/user.rb
297
+ - lib/aimastering/models/user_statistics.rb
286
298
  - lib/aimastering/models/video.rb
287
299
  - lib/aimastering/models/video_download_token.rb
288
300
  - lib/aimastering/version.rb
289
301
  - spec/api/access_token_api_spec.rb
302
+ - spec/api/amazon_subscription_api_spec.rb
290
303
  - spec/api/audio_api_spec.rb
291
304
  - spec/api/config_api_spec.rb
292
305
  - spec/api/external_search_api_spec.rb
@@ -295,6 +308,7 @@ files:
295
308
  - spec/api/payment_api_spec.rb
296
309
  - spec/api/payment_customer_api_spec.rb
297
310
  - spec/api/plan_api_spec.rb
311
+ - spec/api/sp_subscription_api_spec.rb
298
312
  - spec/api/statistics_api_spec.rb
299
313
  - spec/api/subscription_api_spec.rb
300
314
  - spec/api/user_api_spec.rb
@@ -302,6 +316,7 @@ files:
302
316
  - spec/api_client_spec.rb
303
317
  - spec/configuration_spec.rb
304
318
  - spec/models/access_token_spec.rb
319
+ - spec/models/amazon_subscription_spec.rb
305
320
  - spec/models/anonymized_mastering_spec.rb
306
321
  - spec/models/audio_analysis_spec.rb
307
322
  - spec/models/audio_download_token_spec.rb
@@ -310,10 +325,11 @@ files:
310
325
  - spec/models/config_paypal_spec.rb
311
326
  - spec/models/config_spec.rb
312
327
  - spec/models/config_stripe_spec.rb
313
- - spec/models/date_time_spec.rb
328
+ - spec/models/config_version_spec.rb
314
329
  - spec/models/external_search_result_itunes_spec.rb
315
330
  - spec/models/external_search_result_spec.rb
316
331
  - spec/models/external_search_result_youtube_spec.rb
332
+ - spec/models/group_buy_statistics_spec.rb
317
333
  - spec/models/jwt_spec.rb
318
334
  - spec/models/kpi_spec.rb
319
335
  - spec/models/library_audio_analysis_spec.rb
@@ -323,14 +339,16 @@ files:
323
339
  - spec/models/payment_customer_spec.rb
324
340
  - spec/models/payment_spec.rb
325
341
  - spec/models/plan_spec.rb
342
+ - spec/models/sp_subscription_spec.rb
326
343
  - spec/models/subscription_spec.rb
327
344
  - spec/models/user_spec.rb
345
+ - spec/models/user_statistics_spec.rb
328
346
  - spec/models/video_download_token_spec.rb
329
347
  - spec/models/video_spec.rb
330
348
  - spec/spec_helper.rb
331
349
  homepage: https://github.com/ai-mastering/aimastering-ruby
332
350
  licenses:
333
- - MIT
351
+ - Apache 2.0
334
352
  metadata: {}
335
353
  post_install_message:
336
354
  rdoc_options: []
@@ -347,8 +365,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
347
365
  - !ruby/object:Gem::Version
348
366
  version: '0'
349
367
  requirements: []
350
- rubyforge_project:
351
- rubygems_version: 2.7.6
368
+ rubygems_version: 3.0.3
352
369
  signing_key:
353
370
  specification_version: 4
354
371
  summary: AI Mastering API Ruby Gem
@@ -358,11 +375,13 @@ test_files:
358
375
  - spec/api/plan_api_spec.rb
359
376
  - spec/api/access_token_api_spec.rb
360
377
  - spec/api/subscription_api_spec.rb
378
+ - spec/api/amazon_subscription_api_spec.rb
361
379
  - spec/api/library_audio_api_spec.rb
362
380
  - spec/api/user_api_spec.rb
363
381
  - spec/api/video_api_spec.rb
364
382
  - spec/api/mastering_api_spec.rb
365
383
  - spec/api/external_search_api_spec.rb
384
+ - spec/api/sp_subscription_api_spec.rb
366
385
  - spec/api/audio_api_spec.rb
367
386
  - spec/api/payment_customer_api_spec.rb
368
387
  - spec/api/statistics_api_spec.rb
@@ -381,17 +400,21 @@ test_files:
381
400
  - spec/models/audio_spec.rb
382
401
  - spec/models/audio_download_token_spec.rb
383
402
  - spec/models/payment_spec.rb
384
- - spec/models/date_time_spec.rb
385
403
  - spec/models/access_token_spec.rb
386
404
  - spec/models/external_search_result_itunes_spec.rb
387
405
  - spec/models/external_search_result_youtube_spec.rb
388
406
  - spec/models/subscription_spec.rb
389
407
  - spec/models/library_audio_spec.rb
408
+ - spec/models/amazon_subscription_spec.rb
390
409
  - spec/models/config_paypal_spec.rb
391
410
  - spec/models/mastering_spec.rb
411
+ - spec/models/config_version_spec.rb
412
+ - spec/models/group_buy_statistics_spec.rb
392
413
  - spec/models/config_auth0_spec.rb
414
+ - spec/models/user_statistics_spec.rb
393
415
  - spec/models/user_spec.rb
394
416
  - spec/models/video_spec.rb
395
417
  - spec/models/anonymized_mastering_spec.rb
396
418
  - spec/models/external_search_result_spec.rb
419
+ - spec/models/sp_subscription_spec.rb
397
420
  - spec/spec_helper.rb