eco-helpers 2.1.9 → 2.1.10
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/CHANGELOG.md +7 -1
- data/lib/eco/api/error.rb +0 -2
- data/lib/eco/api/session/batch/errors.rb +12 -9
- data/lib/eco/api/session/batch/job.rb +0 -1
- data/lib/eco/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a10a887a29d2f0e2bbfba835c32c6fb2f35ed6cbbc674ad108ec1da81192d50
|
4
|
+
data.tar.gz: afc195b30a643cffaadb8b2b271e5d83d4981d1fed3d4111525ec83279a6f825
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 303c97a14c92ec6b0f6b0011726f8836a5d3cc2e096afc4fdcf991b3160e771015b4cf642fb781214b256d0119216a44710fbac4daab700c58950a0c01ca9a9d
|
7
|
+
data.tar.gz: 52a52c731cd43dbb56dad4910a26ea5e3e1658f919ff78e6e15d7bc57383e03841e0642c12e801585600abc89f9571dad895b66208703402c25e2a252da46b59
|
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,18 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
## [2.1.
|
4
|
+
## [2.1.11] - 2022-11-xx
|
5
5
|
|
6
6
|
### Added
|
7
7
|
### Changed
|
8
8
|
### Fixed
|
9
9
|
|
10
|
+
## [2.1.10] - 2022-11-30
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
- `Eco::API::Session::Batch::Errors#errors`
|
14
|
+
- include errors with no `error` property in body (i.e. `!response.success?`)
|
15
|
+
|
10
16
|
## [2.1.9] - 2022-11-29
|
11
17
|
|
12
18
|
### Changed
|
data/lib/eco/api/error.rb
CHANGED
@@ -76,7 +76,6 @@ module Eco
|
|
76
76
|
@str_err = "Unknown details field."
|
77
77
|
@match = /details \> (.+?) is an unknown field/
|
78
78
|
end
|
79
|
-
|
80
79
|
end
|
81
80
|
|
82
81
|
class << self
|
@@ -135,7 +134,6 @@ module Eco
|
|
135
134
|
@err_msg = err_msg
|
136
135
|
@session = session
|
137
136
|
@entry = entry
|
138
|
-
|
139
137
|
super(built_error)
|
140
138
|
end
|
141
139
|
|
@@ -84,16 +84,20 @@ module Eco
|
|
84
84
|
entries.each_with_object([]) do |entry, arr|
|
85
85
|
response = status[entry]
|
86
86
|
if body = response.body
|
87
|
+
errs = []
|
87
88
|
if errs = body["errors"] || body["error"]
|
88
89
|
errs = [errs].flatten(1).compact
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
)
|
96
|
-
|
90
|
+
end
|
91
|
+
if errs.empty? && !response.success?
|
92
|
+
errs = [body["response"]].flatten(1).compact
|
93
|
+
end
|
94
|
+
errs.each do |msg|
|
95
|
+
arr.push(ErrorCache.new(
|
96
|
+
klass = Eco::API::Error.get_type(msg),
|
97
|
+
klass.new(err_msg: msg, entry: entry, session: session),
|
98
|
+
entry,
|
99
|
+
response
|
100
|
+
))
|
97
101
|
end
|
98
102
|
end
|
99
103
|
end
|
@@ -185,7 +189,6 @@ module Eco
|
|
185
189
|
logger.error(str(key))
|
186
190
|
end
|
187
191
|
end
|
188
|
-
|
189
192
|
end
|
190
193
|
end
|
191
194
|
end
|
data/lib/eco/version.rb
CHANGED