forest_admin_agent 1.0.0.pre.beta.56 → 1.0.0.pre.beta.58

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7eefeb4356d232d8728a677ba731bb1b15745dafdf9c6990fc0af7b0d327dd9a
4
- data.tar.gz: 3572b61f020547702b8f4f7da47c69d514fcb5f810c011122d046f5b1b0f6197
3
+ metadata.gz: 5a0b77447656edaafce539b7b920d4f0d1745733492810732cce08e1c1ddf134
4
+ data.tar.gz: 56978cbac39cf03beebb9581bd7a270daba8efa9a95606d59e3b02900570fc2d
5
5
  SHA512:
6
- metadata.gz: 4aaac44b79f9debd6ee1210d89ffc475272af2974127169e14cdb4c6a2a019274604b89e08bb065d686783e42c843b8521b7bf5f763787da42e8d0e09d155039
7
- data.tar.gz: 769f30bacb7e12484e3c179e226bd3eb7173f00ab8da50bde950a79bb05a3d6e2213d9eb458e6391d7199d8e93cc1612d94744e0631cbe094ef3051f1eb46f11
6
+ metadata.gz: 7eaa5a2ebaf0bd86877a4e4b5feddb04e91fa5cdc799d9a1138ec4a141e5a42d6706ba69353e18f0073b7de2a1ffd0fed91d8a14812998bcc36007980000c45b
7
+ data.tar.gz: baf4bbe36fce89338e52843ff2923105dd92478d00a6d8db580b514c51664145aad240c8e6407c03ca3b952a549827bd62ac4c2d6ef8ce3ebc17d8dd8c4da42e
@@ -30,7 +30,7 @@ module ForestAdminAgent
30
30
  routes = {}
31
31
  Facades::Container.datasource.collections.each_value do |collection|
32
32
  collection.schema[:actions].each_key do |action_name|
33
- routes.merge!(Action::Action.new(collection, action_name).routes)
33
+ routes.merge!(Action::Actions.new(collection, action_name).routes)
34
34
  end
35
35
  end
36
36
 
@@ -5,7 +5,7 @@ require 'jwt'
5
5
  module ForestAdminAgent
6
6
  module Routes
7
7
  module Action
8
- class Action < AbstractAuthenticatedRoute
8
+ class Actions < AbstractAuthenticatedRoute
9
9
  include ForestAdminAgent::Builder
10
10
  include ForestAdminAgent::Utils
11
11
  include ForestAdminDatasourceToolkit::Components::Query
@@ -5,9 +5,9 @@ module ForestAdminAgent
5
5
  module Utils
6
6
  module Schema
7
7
  class SchemaEmitter
8
- LIANA_NAME = "forest-rails"
8
+ LIANA_NAME = "agent-ruby"
9
9
 
10
- LIANA_VERSION = "1.0.0-beta.56"
10
+ LIANA_VERSION = "1.0.0-beta.58"
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.56"
2
+ VERSION = "1.0.0-beta.58"
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.56
4
+ version: 1.0.0.pre.beta.58
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: 2024-06-20 00:00:00.000000000 Z
12
+ date: 2024-06-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -244,7 +244,7 @@ files:
244
244
  - lib/forest_admin_agent/routes/abstract_authenticated_route.rb
245
245
  - lib/forest_admin_agent/routes/abstract_related_route.rb
246
246
  - lib/forest_admin_agent/routes/abstract_route.rb
247
- - lib/forest_admin_agent/routes/action/action.rb
247
+ - lib/forest_admin_agent/routes/action/actions.rb
248
248
  - lib/forest_admin_agent/routes/charts/api_chart_collection.rb
249
249
  - lib/forest_admin_agent/routes/charts/api_chart_datasource.rb
250
250
  - lib/forest_admin_agent/routes/charts/charts.rb