shotstack 0.1.8 → 0.1.9
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/shotstack/api/edit_api.rb +75 -6
- data/lib/shotstack/api/serve_api.rb +6 -6
- data/lib/shotstack/models/clip.rb +14 -5
- data/lib/shotstack/models/edit.rb +13 -1
- data/lib/shotstack/models/flip_transformation.rb +234 -0
- data/lib/shotstack/models/image_asset.rb +1 -1
- data/lib/shotstack/models/merge_field.rb +236 -0
- data/lib/shotstack/models/output.rb +13 -1
- data/lib/shotstack/models/probe_response.rb +255 -0
- data/lib/shotstack/models/rotate_transformation.rb +222 -0
- data/lib/shotstack/models/skew_transformation.rb +234 -0
- data/lib/shotstack/models/transformation.rb +237 -0
- data/lib/shotstack/version.rb +1 -1
- data/lib/shotstack.rb +6 -0
- metadata +8 -2
data/lib/shotstack.rb
CHANGED
@@ -25,25 +25,31 @@ require 'shotstack/models/audio_asset'
|
|
25
25
|
require 'shotstack/models/clip'
|
26
26
|
require 'shotstack/models/crop'
|
27
27
|
require 'shotstack/models/edit'
|
28
|
+
require 'shotstack/models/flip_transformation'
|
28
29
|
require 'shotstack/models/font'
|
29
30
|
require 'shotstack/models/html_asset'
|
30
31
|
require 'shotstack/models/image_asset'
|
31
32
|
require 'shotstack/models/luma_asset'
|
33
|
+
require 'shotstack/models/merge_field'
|
32
34
|
require 'shotstack/models/offset'
|
33
35
|
require 'shotstack/models/output'
|
34
36
|
require 'shotstack/models/poster'
|
37
|
+
require 'shotstack/models/probe_response'
|
35
38
|
require 'shotstack/models/queued_response'
|
36
39
|
require 'shotstack/models/queued_response_data'
|
37
40
|
require 'shotstack/models/range'
|
38
41
|
require 'shotstack/models/render_response'
|
39
42
|
require 'shotstack/models/render_response_data'
|
43
|
+
require 'shotstack/models/rotate_transformation'
|
40
44
|
require 'shotstack/models/shotstack_destination'
|
41
45
|
require 'shotstack/models/size'
|
46
|
+
require 'shotstack/models/skew_transformation'
|
42
47
|
require 'shotstack/models/soundtrack'
|
43
48
|
require 'shotstack/models/thumbnail'
|
44
49
|
require 'shotstack/models/timeline'
|
45
50
|
require 'shotstack/models/title_asset'
|
46
51
|
require 'shotstack/models/track'
|
52
|
+
require 'shotstack/models/transformation'
|
47
53
|
require 'shotstack/models/transition'
|
48
54
|
require 'shotstack/models/video_asset'
|
49
55
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shotstack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shotstack
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -82,25 +82,31 @@ files:
|
|
82
82
|
- lib/shotstack/models/crop.rb
|
83
83
|
- lib/shotstack/models/destinations.rb
|
84
84
|
- lib/shotstack/models/edit.rb
|
85
|
+
- lib/shotstack/models/flip_transformation.rb
|
85
86
|
- lib/shotstack/models/font.rb
|
86
87
|
- lib/shotstack/models/html_asset.rb
|
87
88
|
- lib/shotstack/models/image_asset.rb
|
88
89
|
- lib/shotstack/models/luma_asset.rb
|
90
|
+
- lib/shotstack/models/merge_field.rb
|
89
91
|
- lib/shotstack/models/offset.rb
|
90
92
|
- lib/shotstack/models/output.rb
|
91
93
|
- lib/shotstack/models/poster.rb
|
94
|
+
- lib/shotstack/models/probe_response.rb
|
92
95
|
- lib/shotstack/models/queued_response.rb
|
93
96
|
- lib/shotstack/models/queued_response_data.rb
|
94
97
|
- lib/shotstack/models/range.rb
|
95
98
|
- lib/shotstack/models/render_response.rb
|
96
99
|
- lib/shotstack/models/render_response_data.rb
|
100
|
+
- lib/shotstack/models/rotate_transformation.rb
|
97
101
|
- lib/shotstack/models/shotstack_destination.rb
|
98
102
|
- lib/shotstack/models/size.rb
|
103
|
+
- lib/shotstack/models/skew_transformation.rb
|
99
104
|
- lib/shotstack/models/soundtrack.rb
|
100
105
|
- lib/shotstack/models/thumbnail.rb
|
101
106
|
- lib/shotstack/models/timeline.rb
|
102
107
|
- lib/shotstack/models/title_asset.rb
|
103
108
|
- lib/shotstack/models/track.rb
|
109
|
+
- lib/shotstack/models/transformation.rb
|
104
110
|
- lib/shotstack/models/transition.rb
|
105
111
|
- lib/shotstack/models/video_asset.rb
|
106
112
|
- lib/shotstack/version.rb
|