runapi-midjourney 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/midjourney/types.rb +3 -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: 4d95f63c07b630fb2078c85e3f41ae11a1485b73790c8de5c50a9e8412e51930
|
|
4
|
+
data.tar.gz: 571d993e64f17ea0da765284d3f0b7d82790c1dc060a2d17e24914d793799237
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11d53601405856537b50c13b5132de40f4ce91cd94258b347152dcce9b0905ba69eab26611b362c573a5ec9e79859e9411e0a3b1ad89c276dd7ef3163cb95a08
|
|
7
|
+
data.tar.gz: 8d7ff802f36621b71c98bff61fe2199098899229d4ffa9a01efa397a46e81845fb535c8be2edf5d65259c9060e966da6d92f13dcbe4b46b55034a565c764cc0f
|
|
@@ -43,18 +43,21 @@ module RunApi
|
|
|
43
43
|
class ImageToPromptResponse < RunApi::Core::BaseModel
|
|
44
44
|
required :prompts, [String]
|
|
45
45
|
optional :error, String
|
|
46
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
46
47
|
end
|
|
47
48
|
|
|
48
49
|
# Concise suggestions derived from a prompt.
|
|
49
50
|
class ShortenPromptResponse < RunApi::Core::BaseModel
|
|
50
51
|
required :prompts, [String]
|
|
51
52
|
optional :error, String
|
|
53
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
52
54
|
end
|
|
53
55
|
|
|
54
56
|
# Seed associated with a generated image.
|
|
55
57
|
class GetSeedResponse < RunApi::Core::BaseModel
|
|
56
58
|
optional :seed, Integer
|
|
57
59
|
optional :error, String
|
|
60
|
+
optional :billing, RunApi::Core::TaskBillingFacts
|
|
58
61
|
end
|
|
59
62
|
end
|
|
60
63
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: runapi-midjourney
|
|
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: Use `runapi-midjourney` for Midjourney image generation, editing, image-to-video,
|
|
27
27
|
first-video extension, image-to-prompt, prompt shortening, and seed lookup in Ruby
|
|
28
28
|
applications and workers.
|
|
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
71
71
|
- !ruby/object:Gem::Version
|
|
72
72
|
version: '0'
|
|
73
73
|
requirements: []
|
|
74
|
-
rubygems_version: 4.0.
|
|
74
|
+
rubygems_version: 4.0.17
|
|
75
75
|
specification_version: 4
|
|
76
76
|
summary: Midjourney Ruby SDK for RunAPI
|
|
77
77
|
test_files: []
|