allq_rest 1.2.92 → 1.3.0
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/allq_rest-1.2.92.gem +0 -0
- data/allq_rest-1.2.93.gem +0 -0
- data/allq_rest.gemspec +1 -1
- data/deploy.sh +1 -1
- data/lib/allq_rest/api/actions_api.rb +1 -0
- data/lib/allq_rest/models/job_response.rb +17 -6
- data/lib/allq_rest/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a544f5936f81897752d27b01756580c6fca13fa5f399fe8e3e88613cc13038f
|
4
|
+
data.tar.gz: ef9eac198d2572a5f271964d85e8346059d0cbec05c20b19577313e701d11f2d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59dc99b51ca44f6818d1e9c079836c83e5c37e1b4f79e009a454e0b194af47860afc08beed78adf650b68df7a4421d6c67cd7730c630cbcae00d9b1147bbeb2e
|
7
|
+
data.tar.gz: 4dcf072a5801b1a1b2b8fc946fbe99ba29e8b3d5104b8f8afa9ea473b06399cd131f0e5aa43735eeee09c8062243593c5242b7f213d7e5d50afa84a8d14c5389
|
Binary file
|
Binary file
|
data/allq_rest.gemspec
CHANGED
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.summary = "Ruby REST client for Allq platform"
|
14
14
|
s.description = "Allq API Client"
|
15
15
|
# TODO uncommnet and update below with a proper license
|
16
|
-
s.license = "Apache
|
16
|
+
s.license = "Apache-2.0"
|
17
17
|
s.required_ruby_version = "> 2.3"
|
18
18
|
|
19
19
|
s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
|
data/deploy.sh
CHANGED
@@ -455,6 +455,7 @@ module Allq
|
|
455
455
|
query_params = {}
|
456
456
|
query_params[:'tube'] = tube
|
457
457
|
query_params[:'buried'] = opts[:'buried'] if !opts[:'buried'].nil?
|
458
|
+
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
458
459
|
|
459
460
|
# header parameters
|
460
461
|
header_params = {}
|
@@ -6,7 +6,7 @@
|
|
6
6
|
OpenAPI spec version: 1.0
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.4.
|
9
|
+
Swagger Codegen version: 2.4.27
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -30,6 +30,9 @@ module Allq
|
|
30
30
|
# Release count
|
31
31
|
attr_accessor :releases
|
32
32
|
|
33
|
+
# Special
|
34
|
+
attr_accessor :special
|
35
|
+
|
33
36
|
# Attribute mapping from ruby-style variable name to JSON key.
|
34
37
|
def self.attribute_map
|
35
38
|
{
|
@@ -37,7 +40,8 @@ module Allq
|
|
37
40
|
:'body' => :'body',
|
38
41
|
:'tube' => :'tube',
|
39
42
|
:'expireds' => :'expireds',
|
40
|
-
:'releases' => :'releases'
|
43
|
+
:'releases' => :'releases',
|
44
|
+
:'special' => :'special'
|
41
45
|
}
|
42
46
|
end
|
43
47
|
|
@@ -48,7 +52,8 @@ module Allq
|
|
48
52
|
:'body' => :'String',
|
49
53
|
:'tube' => :'String',
|
50
54
|
:'expireds' => :'Integer',
|
51
|
-
:'releases' => :'Integer'
|
55
|
+
:'releases' => :'Integer',
|
56
|
+
:'special' => :'String'
|
52
57
|
}
|
53
58
|
end
|
54
59
|
|
@@ -83,6 +88,10 @@ module Allq
|
|
83
88
|
else
|
84
89
|
self.releases = 0
|
85
90
|
end
|
91
|
+
|
92
|
+
if attributes.has_key?(:'special')
|
93
|
+
self.special = attributes[:'special']
|
94
|
+
end
|
86
95
|
end
|
87
96
|
|
88
97
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -127,7 +136,8 @@ module Allq
|
|
127
136
|
body == o.body &&
|
128
137
|
tube == o.tube &&
|
129
138
|
expireds == o.expireds &&
|
130
|
-
releases == o.releases
|
139
|
+
releases == o.releases &&
|
140
|
+
special == o.special
|
131
141
|
end
|
132
142
|
|
133
143
|
# @see the `==` method
|
@@ -139,7 +149,7 @@ module Allq
|
|
139
149
|
# Calculates hash code according to all attributes.
|
140
150
|
# @return [Fixnum] Hash code
|
141
151
|
def hash
|
142
|
-
[id, body, tube, expireds, releases].hash
|
152
|
+
[id, body, tube, expireds, releases, special].hash
|
143
153
|
end
|
144
154
|
|
145
155
|
# Builds the object from hash
|
@@ -149,7 +159,7 @@ module Allq
|
|
149
159
|
return nil unless attributes.is_a?(Hash)
|
150
160
|
self.class.swagger_types.each_pair do |key, type|
|
151
161
|
if type =~ /\AArray<(.*)>/i
|
152
|
-
# check to ensure the input is an array given that the
|
162
|
+
# check to ensure the input is an array given that the attribute
|
153
163
|
# is documented as an array but the input is not
|
154
164
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
155
165
|
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
@@ -245,5 +255,6 @@ module Allq
|
|
245
255
|
value
|
246
256
|
end
|
247
257
|
end
|
258
|
+
|
248
259
|
end
|
249
260
|
end
|
data/lib/allq_rest/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: allq_rest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- support@blitline.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -81,6 +81,8 @@ files:
|
|
81
81
|
- Gemfile.lock
|
82
82
|
- README.md
|
83
83
|
- Rakefile
|
84
|
+
- allq_rest-1.2.92.gem
|
85
|
+
- allq_rest-1.2.93.gem
|
84
86
|
- allq_rest.gemspec
|
85
87
|
- deploy.sh
|
86
88
|
- docs/ActionsApi.md
|
@@ -137,7 +139,7 @@ files:
|
|
137
139
|
- spec/spec_helper.rb
|
138
140
|
homepage: http://www.blitline.com
|
139
141
|
licenses:
|
140
|
-
- Apache
|
142
|
+
- Apache-2.0
|
141
143
|
metadata: {}
|
142
144
|
post_install_message:
|
143
145
|
rdoc_options: []
|