wolf_core 1.0.90 → 1.0.91

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: 2c418670e6c67ff34988b86d67169af4b9516daf79872be6831c8812267dc1c4
4
- data.tar.gz: 0d6b4fa0a8377fdfd89ec9b24c834e342b59487d9401d8d3d8d563f2c4efe697
3
+ metadata.gz: 2bab062a9943b7fd68412687906ced6151fc56bafc8986396e3083334932c03a
4
+ data.tar.gz: 9558a9eaa0a3060481407507d70604a09b4f9735fc85513680850d095f362de6
5
5
  SHA512:
6
- metadata.gz: dc53fb7c1efb44810944647f8cce199b0d6c966eb4c3a9092c86ecaf2d695665ee1989bd9e43f34d8a7047b3afd2a15816fe15ecae5d3159b6e9685c334c3968
7
- data.tar.gz: d3c4e50ff16403f4f49e9e3ddd67651789aefceb2837f7cc0e51e0b0b2ffa14421337331f42a4c1dd3510651f6a03db6e4ae71abeda265f8ca505b840d5f3afa
6
+ metadata.gz: 8e483d68cf6746051fdde02b76c9567068b40bf75c1a63322cb8cc801320d7b66a5dea69f66feb4e3e16fe19766e3a27306c312fddd5c301f0889e82e02f46ea
7
+ data.tar.gz: 42e9137fe1598b6c02056f49b0d7caa82dbd215c1b1290408cc5e8aa185b40f8e9903ea87bcf9a861939be94aba8f0f90060a785c4437ca8cf176c729231d651
@@ -5,21 +5,12 @@ module WolfCore
5
5
  include WolfCore::LambdaFunctionOperations
6
6
  include WolfCore::ExceptionOperations
7
7
 
8
- PATH_TO_FUNCTION_NAME_MAPPING = {
9
- 'burnett/jobseekers/export' => 'BurnettExportJobseeker',
10
- 'burnett/jobseekers/import' => 'BurnettImportJobseeker',
11
- 'burnett/orders/export' => 'BurnettExportOrder',
12
- 'burnett/order_applications/export' => 'BurnettExportOrderApplication',
13
- 'burnett/clients/import' => 'BurnettImportClient',
14
- 'burnett/clients/export' => 'BurnettExportClient',
15
- }
16
-
17
- def route_event_request(path:, body:, environment:, domain_url: nil)
8
+ def route_event_request(path:, body:, environment:, domain_url: nil, path_to_function_name_mapping:)
18
9
  environment ||= 'development'
19
10
  environment = environment.downcase
20
11
  deployable_envs = ['production', 'staging', 'testing']
21
12
  if deployable_envs.include?(environment)
22
- function_name = "#{PATH_TO_FUNCTION_NAME_MAPPING[path]}#{environment.titleize}"
13
+ function_name = "#{path_to_function_name_mapping[path]}#{environment.titleize}"
23
14
  raise_service_error("Function name not found for path: #{path}") if function_name.blank?
24
15
 
25
16
  invoke_lambda(
@@ -24,7 +24,7 @@ module WolfCore
24
24
  }).item
25
25
  end
26
26
 
27
- def query(table_name:, key_condition_expression:, expression_attribute_values: nil)
27
+ def query(table_name:, key_condition_expression:, expression_attribute_values:)
28
28
  instance.query({
29
29
  table_name: table_name,
30
30
  key_condition_expression: key_condition_expression,
@@ -2,7 +2,7 @@ module WolfCore
2
2
  module NoSqlDbOperations
3
3
  module_function
4
4
 
5
- def query_no_sql_items(table_name:, key_condition_expression:, expression_attribute_values: nil)
5
+ def query_no_sql_items(table_name:, key_condition_expression:, expression_attribute_values:)
6
6
  NoSqlDbDataSource.query(
7
7
  table_name: table_name,
8
8
  key_condition_expression: key_condition_expression,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.90"
4
+ VERSION = "1.0.91"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.90
4
+ version: 1.0.91
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-28 00:00:00.000000000 Z
11
+ date: 2025-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty