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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bab062a9943b7fd68412687906ced6151fc56bafc8986396e3083334932c03a
|
4
|
+
data.tar.gz: 9558a9eaa0a3060481407507d70604a09b4f9735fc85513680850d095f362de6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
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 = "#{
|
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:
|
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:
|
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,
|
data/lib/wolf_core/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2025-03-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|