runapi-suno 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/runapi/suno/types.rb +4 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4e3a244b100dfe8f71e8ea593668fe9e777e12f95185c9c8a41867242d0f05c
|
|
4
|
+
data.tar.gz: 2c6b07235af6757253bff62842f07b62caa11692db5831d3be68360d2d8e888d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b0cf789e74b7fde42b3e6e83c672d0e3aea9c3f540e318c179e3ea86d0d90df4fd7fa6b834b4b95061cb7dad1b0708ad17f4fc7ae6ab833b3f5f91ac18ddb22
|
|
7
|
+
data.tar.gz: d11014c15425b11b120a0c4634e5deae5e5ac85abf8e217ed527f02f23a2d176ceb7a39d11d99ad004da0d2a129118ba6b877d3ec446faa6e50ac9773e700411
|
data/lib/runapi/suno/types.rb
CHANGED
|
@@ -204,6 +204,7 @@ module RunApi
|
|
|
204
204
|
optional :waveform_data, [Numeric]
|
|
205
205
|
optional :hoot_cer, Numeric
|
|
206
206
|
optional :is_streamed
|
|
207
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
207
208
|
end
|
|
208
209
|
|
|
209
210
|
# Result of a section replacement task.
|
|
@@ -216,12 +217,14 @@ module RunApi
|
|
|
216
217
|
class GeneratePersonaResponse < RunApi::Core::BaseModel
|
|
217
218
|
required :persona, -> { Persona }
|
|
218
219
|
optional :error, String
|
|
220
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
219
221
|
end
|
|
220
222
|
|
|
221
223
|
# Synchronous result of style tag generation. +style+ contains the generated tags string.
|
|
222
224
|
class BoostStyleResponse < RunApi::Core::BaseModel
|
|
223
225
|
optional :style, String
|
|
224
226
|
optional :error, String
|
|
227
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
225
228
|
end
|
|
226
229
|
|
|
227
230
|
# Result of a mashup task.
|
|
@@ -246,6 +249,7 @@ module RunApi
|
|
|
246
249
|
class CheckVoiceResponse < RunApi::Core::BaseModel
|
|
247
250
|
optional :is_available
|
|
248
251
|
optional :error, String
|
|
252
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
249
253
|
end
|
|
250
254
|
|
|
251
255
|
class CompletedTextToMusicResponse < TextToMusicResponse
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runapi-suno
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- RunAPI
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 0.
|
|
18
|
+
version: 0.3.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 0.
|
|
25
|
+
version: 0.3.0
|
|
26
26
|
description: The Suno Ruby SDK is the language-specific package for Suno on RunAPI.
|
|
27
27
|
Use this package for song generation, lyrics, vocals, extension, and audio transformation
|
|
28
28
|
workflows when your application needs request bodies, task status lookup, and consistent
|
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
89
|
version: '0'
|
|
90
90
|
requirements: []
|
|
91
|
-
rubygems_version: 4.0.
|
|
91
|
+
rubygems_version: 4.0.17
|
|
92
92
|
specification_version: 4
|
|
93
93
|
summary: Suno API Ruby SDK for RunAPI
|
|
94
94
|
test_files: []
|