forest_admin_agent 1.0.0.pre.beta.56 → 1.0.0.pre.beta.58
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5a0b77447656edaafce539b7b920d4f0d1745733492810732cce08e1c1ddf134
|
|
4
|
+
data.tar.gz: 56978cbac39cf03beebb9581bd7a270daba8efa9a95606d59e3b02900570fc2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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::
|
|
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
|
|
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 = "
|
|
8
|
+
LIANA_NAME = "agent-ruby"
|
|
9
9
|
|
|
10
|
-
LIANA_VERSION = "1.0.0-beta.
|
|
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)
|
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.
|
|
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-
|
|
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/
|
|
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
|