forest_admin_agent 1.0.0.pre.beta.89 → 1.0.0.pre.beta.90

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c3a73a3d208b063c855a7c50485975d493306f1ae7e0d555911911abe2a4e998
4
- data.tar.gz: ceb5d65a7cd575b94b68148bc43bfd8f77e8e97ee44469ecd3f2fff1e1b3801d
3
+ metadata.gz: ae621695f9deebb0ba410f6791f9549bc0cec956a54d636c2801ed688fbf83a1
4
+ data.tar.gz: 034c2154d956922e1c1c4bb35055e986bb0632290bac0e868e830b8710d1ace4
5
5
  SHA512:
6
- metadata.gz: 129490f5cc3070dcc7ed8e4519ecb4c73dd64f07828724621ba35cada83d12197455ac7056130efdbc321339adaaf06450fea3cc9c72db35513928b8a8380dcc
7
- data.tar.gz: 71f0ff4729bd1c54178ae28aa7edae6c8c34a9e8b8b91d3c8e383e7fd5f2fea07e9ab7d2267d81837940fc6597d6d7a0a4db6d02a887fb47604e5ecfcd02dac2
6
+ metadata.gz: 209de7100f34731b01703bd09034b194f3a39f65244894e4fcf19bc2be329da0f6ede35ecab2ac49be648020d354cf34860090ecec79c7bab5788603c1b78820
7
+ data.tar.gz: d11e6d45f101036ebcaadf3e04889ac8135177a9891c6516c31aa37832075e2efa9302a1cd5e1e9d066922c33210965d150604d7013fe21d0483b33246be6323
@@ -39,7 +39,7 @@ module ForestAdminAgent
39
39
  condition_tree_ids = condition_tree_ids.inverse if selection_ids[:are_excluded]
40
40
 
41
41
  @collection.schema[:fields].each_value do |field_schema|
42
- next unless field_schema.type == 'PolymorphicOneToOne' || field_schema.type == 'PolymorphicOneToMany'
42
+ next unless ['PolymorphicOneToOne', 'PolymorphicOneToMany'].include?(field_schema.type)
43
43
 
44
44
  condition_tree = Nodes::ConditionTreeBranch.new(
45
45
  'And',
@@ -34,7 +34,7 @@ module ForestAdminAgent
34
34
  filter = get_base_foreign_filter(args)
35
35
  relation = Schema.get_to_many_relation(@collection, args[:params]['relation_name'])
36
36
 
37
- if relation.type == 'OneToMany' || relation.type == 'PolymorphicOneToMany'
37
+ if ['OneToMany', 'PolymorphicOneToMany'].include?(relation.type)
38
38
  dissociate_or_delete_one_to_many(relation, args[:params]['relation_name'], parent_id, is_delete_mode,
39
39
  filter)
40
40
  else
@@ -40,7 +40,7 @@ module ForestAdminAgent
40
40
  def link_one_to_one_relations(args, record)
41
41
  args[:params][:data][:relationships]&.map do |field, value|
42
42
  schema = @collection.schema[:fields][field]
43
- next unless schema.type == 'OneToOne' || schema.type == 'PolymorphicOneToOne'
43
+ next unless ['OneToOne', 'PolymorphicOneToOne'].include?(schema.type)
44
44
 
45
45
  id = Utils::Id.unpack_id(@collection, value['data']['id'], with_key: true)
46
46
  foreign_collection = @datasource.get_collection(schema.foreign_collection)
@@ -7,7 +7,7 @@ module ForestAdminAgent
7
7
  class SchemaEmitter
8
8
  LIANA_NAME = "agent-ruby"
9
9
 
10
- LIANA_VERSION = "1.0.0-beta.89"
10
+ LIANA_VERSION = "1.0.0-beta.90"
11
11
 
12
12
  def self.get_serialized_schema(datasource)
13
13
  schema_path = Facades::Container.cache(:schema_path)
@@ -1,3 +1,3 @@
1
1
  module ForestAdminAgent
2
- VERSION = "1.0.0-beta.89"
2
+ VERSION = "1.0.0-beta.90"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forest_admin_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre.beta.89
4
+ version: 1.0.0.pre.beta.90
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2025-01-08 00:00:00.000000000 Z
12
+ date: 2025-01-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport