runapi-runway-aleph 0.2.7 → 0.2.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb42250458bd715b11cf906d442464db0b72bef068064cc5f146ab523311c5e4
4
- data.tar.gz: '079ac40cc707ac1926bb61f42e6f457f25d90370a5d8553f6e4fcaaa6b5772c3'
3
+ metadata.gz: 8639c2c2d11c0efe7d3983a5a4460c2aed33703ef93b0bb1ee4068e37ca97eb4
4
+ data.tar.gz: 3769b75c4223b85b22e4386a60ff6577a4e779b040b68ff525de344a16cfb1cb
5
5
  SHA512:
6
- metadata.gz: 0a4bb38cd68b19705714d3bb22f105bcaf2f34586201d5cba595b286abdda34ad0cafb598a42b28a0e26338a13e6fe4ad1712dafd0327bb812b25048bc6c24bd
7
- data.tar.gz: 9b3b4becf9d920b1c287094bdf5ab64a044f78fc2f4469c7253915726fc36f51081f4a352117ba76cec3ba5974ec70c5d68ab7b330a3db366e37b51eb147870b
6
+ metadata.gz: 835997af0befd6a743d2fb21033082060803b4be6f0ad068b3ba00b19b041b501faa234768150313fa13b7ebea5201768df17293d3196715d7442fa69f5b7ede
7
+ data.tar.gz: cf0eaeebf856af02e2232a78bcb67c8f8c6dc01c17a319ba389a7154ee2fe2173aeb0db744c023aaf4b6f8cf90c08616ece68926e99a24201db01b05427396a9
data/README.md CHANGED
@@ -13,7 +13,7 @@ gem install runapi-runway-aleph
13
13
  ## Quick start
14
14
 
15
15
  ```ruby
16
- require "runapi-runway-aleph"
16
+ require "runapi/runway_aleph"
17
17
 
18
18
  client = RunApi::RunwayAleph::Client.new
19
19
  task = client.edit_video.create(
@@ -21,27 +21,27 @@ module RunApi
21
21
  #
22
22
  # @param params [Hash] edit parameters
23
23
  # @return [RunApi::RunwayAleph::Types::CompletedEditVideoResponse] completed task with videos
24
- def run(**params)
25
- task = create(**params)
26
- poll_until_complete { get(task.id) }
24
+ def run(options: nil, **params)
25
+ task = create(options: options, **params)
26
+ poll_until_complete { get(task.id, options: options) }
27
27
  end
28
28
 
29
29
  # Start a video editing task.
30
30
  #
31
31
  # @param params [Hash] edit parameters
32
32
  # @return [RunApi::RunwayAleph::Types::TaskCreateResponse] task creation result with id
33
- def create(**params)
33
+ def create(options: nil, **params)
34
34
  params = compact_params(params)
35
35
  validate_contract!(CONTRACT["edit-video"], params.merge(model: MODEL))
36
- request(:post, ENDPOINT, body: params)
36
+ request(:post, ENDPOINT, body: params, options: options)
37
37
  end
38
38
 
39
39
  # Get video editing task status by task ID.
40
40
  #
41
41
  # @param id [String] task ID
42
42
  # @return [RunApi::RunwayAleph::Types::EditVideoResponse] current task status
43
- def get(id)
44
- request(:get, "#{ENDPOINT}/#{id}")
43
+ def get(id, options: nil)
44
+ request(:get, "#{ENDPOINT}/#{id}", options: options)
45
45
  end
46
46
  end
47
47
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: runapi-runway-aleph
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
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.2.7
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.2.7
25
+ version: 0.3.0
26
26
  description: The Runway Aleph Ruby SDK is the language-specific package for Runway
27
27
  Aleph on RunAPI. Use this package for video generation, animation, and video editing
28
28
  workflows when your application needs request bodies, task status lookup, and consistent
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
66
  - !ruby/object:Gem::Version
67
67
  version: '0'
68
68
  requirements: []
69
- rubygems_version: 4.0.10
69
+ rubygems_version: 4.0.17
70
70
  specification_version: 4
71
71
  summary: Runway Aleph Ruby SDK for RunAPI
72
72
  test_files: []