eco-helpers 2.7.13 → 2.7.14
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/.markdownlint.jsonc +4 -0
- data/CHANGELOG.md +1448 -1158
- data/lib/eco/api/usecases/graphql/samples/location/command/track_changed_ids.rb +3 -1
- data/lib/eco/version.rb +1 -1
- metadata +2 -1
@@ -50,7 +50,9 @@ class Eco::API::UseCases::GraphQL::Samples::Location
|
|
50
50
|
msg = "Expecting CommandResults object. Given: #{results.class}"
|
51
51
|
raise msg unless results.is_a?(request_results_class)
|
52
52
|
|
53
|
-
results.
|
53
|
+
target = simulate?? results.results : results.applied
|
54
|
+
|
55
|
+
target.each do |result|
|
54
56
|
prev_id, new_id = result.command_input_data.values_at(:nodeId, :newId)
|
55
57
|
next if new_id.nil? # not an id change
|
56
58
|
next if prev_id == new_id
|
data/lib/eco/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eco-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oscar Segura
|
@@ -534,6 +534,7 @@ extensions: []
|
|
534
534
|
extra_rdoc_files: []
|
535
535
|
files:
|
536
536
|
- ".gitignore"
|
537
|
+
- ".markdownlint.jsonc"
|
537
538
|
- ".rspec"
|
538
539
|
- ".rubocop.yml"
|
539
540
|
- ".yardopts"
|