allq_rest 1.2.92 → 1.2.93
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/allq_rest-1.2.92.gem +0 -0
- data/deploy.sh +1 -1
- data/lib/allq_rest/models/job_response.rb +17 -6
- data/lib/allq_rest/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b02f0b4c2143521e9c65165d7e736cfddd634c51a34bd1e60734d37b7fdf6ae9
|
4
|
+
data.tar.gz: 276bb61b67c272ee939504e130151db6b9b40096958f5d15781c105feb1bc9e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ae4cf1ca333ff49b765bb3209c54f2e7838578b466c36a76744deeb4f753ee3bdbecd8741989a0664cb093068553a62c6331aa4ccfdd94b7ead4c1862747448
|
7
|
+
data.tar.gz: 432b3b2ff581ce12e9e8fdc342fb74b9d22b98bf26a4a3bec4c7c37b9b0445d03916d9d5ffbf12752cad0b59d3570dd58571c6181066f0c36f81dbefdd977998
|
Binary file
|
data/deploy.sh
CHANGED
@@ -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.2.
|
4
|
+
version: 1.2.93
|
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-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -81,6 +81,7 @@ files:
|
|
81
81
|
- Gemfile.lock
|
82
82
|
- README.md
|
83
83
|
- Rakefile
|
84
|
+
- allq_rest-1.2.92.gem
|
84
85
|
- allq_rest.gemspec
|
85
86
|
- deploy.sh
|
86
87
|
- docs/ActionsApi.md
|