forest_admin_agent 1.23.3 → 1.24.0

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: f3ad3ae17fca69b00f59412bfaed1badbb92a6b759687d8d06b0ae6d5748f1dd
4
- data.tar.gz: 30787bb99d88d2ef2aaa9640b8499881336ae53ec46b8bc585de48402e5a0639
3
+ metadata.gz: 135550abc6aca99db50298be6e08e1c323d19ac7dcf6df0989a2880188d2ffbf
4
+ data.tar.gz: 3470c3b166b4adb784b957f324e4ad7464d5d7e1c9a847af911a8ac6653589d6
5
5
  SHA512:
6
- metadata.gz: 9a29219249daba534a3994b435fc946c9c5c71d2cafdb46fb733f9b7f8717f86683922b62d93fc8430c36a0f1a1f3067de1b456fc8dd4545df0fec83703dd76b
7
- data.tar.gz: d3a895d0174197c58cec193d98eb88f1533de8d40db7682753a761292c0275a3846894850afc02967a90d962041df703ade7cf8f3bed2721158659eaa2ec5fb3
6
+ metadata.gz: c2c70d626d7dfee543a32b16514f254ccf87d811fb4ccf240d2cd14f72c5a183688a955b55dbb955fbd6de35cb7bf20228b9d39c63184a100882d18f881b5b0c
7
+ data.tar.gz: 9463af8407e8a6cac77401a1e47ac45c27a560e36b6a9c933de6adbf748857b710246d00c62498aaf08ac35eb8146e6021bef712e96810bb19818a1bf26f7895
@@ -11,6 +11,7 @@ module ForestAdminAgent
11
11
  include ForestAdminDatasourceCustomizer::DSL::DatasourceHelpers
12
12
 
13
13
  attr_reader :customizer, :container, :has_env_secret
14
+ attr_accessor :schema_only_mode
14
15
 
15
16
  def setup(options)
16
17
  @options = options
@@ -55,7 +56,22 @@ module ForestAdminAgent
55
56
  # Reset route cache to ensure routes are computed with all customizations
56
57
  ForestAdminAgent::Http::Router.reset_cached_routes!
57
58
 
58
- send_schema
59
+ if @schema_only_mode
60
+ generate_schema_only
61
+ else
62
+ send_schema
63
+ end
64
+ end
65
+
66
+ def generate_schema_only
67
+ datasource = @container.resolve(:datasource)
68
+ schema = build_schema(datasource)
69
+ schema_path = Facades::Container.cache(:schema_path)
70
+
71
+ write_schema_file(schema_path, schema)
72
+ @logger.log('Info', "[ForestAdmin] Schema generated successfully at #{schema_path}")
73
+
74
+ schema
59
75
  end
60
76
 
61
77
  def reload!
@@ -6,7 +6,7 @@ module ForestAdminAgent
6
6
  module Schema
7
7
  class SchemaEmitter
8
8
  LIANA_NAME = "agent-ruby"
9
- LIANA_VERSION = "1.23.3"
9
+ LIANA_VERSION = "1.24.0"
10
10
 
11
11
  def self.generate(datasource)
12
12
  datasource.collections
@@ -1,3 +1,3 @@
1
1
  module ForestAdminAgent
2
- VERSION = "1.23.3"
2
+ VERSION = "1.24.0"
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.23.3
4
+ version: 1.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthieu